- 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,
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
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)