From ecdf182ccec8bc4528e6f39b022c7974986d44f5 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 29 Jun 2002 19:24:11 +0000 Subject: [PATCH] list implementation [SVN r14261] --- gcc-tools.jam | 5 +++++ v1/gcc-tools.jam | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/gcc-tools.jam b/gcc-tools.jam index 02bbf1c32..945b5cfae 100644 --- a/gcc-tools.jam +++ b/gcc-tools.jam @@ -311,6 +311,11 @@ rule Link-action } else { + # Workaround GCC's lack of command-files and NT's line-length limitation. + if $(NT) { + JAMSHELL on $(<) = % ; + } + gcc-Link-action $(<) : $(>) ; } } diff --git a/v1/gcc-tools.jam b/v1/gcc-tools.jam index 02bbf1c32..945b5cfae 100644 --- a/v1/gcc-tools.jam +++ b/v1/gcc-tools.jam @@ -311,6 +311,11 @@ rule Link-action } else { + # Workaround GCC's lack of command-files and NT's line-length limitation. + if $(NT) { + JAMSHELL on $(<) = % ; + } + gcc-Link-action $(<) : $(>) ; } }