From 2224745a3d883897640f5b9079054ec765ec2285 Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Sat, 7 Sep 2002 22:53:29 +0000 Subject: Fix ASPPCOM value for gas. --- src/CHANGES.txt | 5 +++++ src/engine/SCons/Tool/gas.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 257cac3..1a00b43 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -29,6 +29,9 @@ RELEASE 0.09 - - Supply an error message if there are no command-line or Default() targets specified. + - Fix the ASPPCOM values for the GNU assembler. + (Bug reported by Brett Polivka.) + From Anthony Roach: - Fixed use of command lines with spaces in their arguments, @@ -51,6 +54,8 @@ RELEASE 0.09 - utility is available, which is much faster than fork()/exec(), and fixes the -j option on several platforms. + - Fix use of -j with multiple targets. + From sam th: - Dynamically check for the existence of utilities with which to diff --git a/src/engine/SCons/Tool/gas.py b/src/engine/SCons/Tool/gas.py index 8d24348..226e3bd 100644 --- a/src/engine/SCons/Tool/gas.py +++ b/src/engine/SCons/Tool/gas.py @@ -61,7 +61,7 @@ def generate(env, platform): env['AS'] = env.Detect(assemblers) or 'as' env['ASFLAGS'] = '' env['ASCOM'] = '$AS $ASFLAGS -o $TARGET $SOURCES' - env['ASPPCOM'] = '$CC $ASFLAGS $CPPFLAGS -o $TARGET $SOURCES' + env['ASPPCOM'] = '$CC $ASFLAGS $CPPFLAGS $_CPPINCFLAGS -c -o $TARGET $SOURCES' def exists(env): return env.Detect(assemblers) -- cgit v0.12