diff options
| author | Steven Knight <knight@baldmt.com> | 2002-09-07 22:53:29 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2002-09-07 22:53:29 (GMT) |
| commit | 2224745a3d883897640f5b9079054ec765ec2285 (patch) | |
| tree | b734ef258a15f4a5cd5f65a02b9596a9604a76a2 /src | |
| parent | 8b2cb4f6b3efbb50b06e7f368ad63267227f08e5 (diff) | |
| download | SCons-2224745a3d883897640f5b9079054ec765ec2285.zip SCons-2224745a3d883897640f5b9079054ec765ec2285.tar.gz SCons-2224745a3d883897640f5b9079054ec765ec2285.tar.bz2 | |
Fix ASPPCOM value for gas.
Diffstat (limited to 'src')
| -rw-r--r-- | src/CHANGES.txt | 5 | ||||
| -rw-r--r-- | src/engine/SCons/Tool/gas.py | 2 |
2 files changed, 6 insertions, 1 deletions
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) |
