Changeset 209383b for src/tests/pybin/settings.py
- Timestamp:
- Dec 4, 2017, 6:10:25 PM (5 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 099a40d
- Parents:
- bacc36c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/pybin/settings.py
rbacc36c r209383b 17 17 global generating 18 18 global make 19 global debug 20 global debugFlag 19 21 20 22 arch = Architecture(options.arch) … … 22 24 generating = options.regenerate_expected 23 25 make = './make_command_not_initialized' 26 debug = "debug" if options.debug else "no debug" 27 debugFlag = """DEBUG_FLAGS="%s" """ % ("-debug" if debug else "-nodebug") 24 28 25 29 def updateMakeCmd(force, jobs):
Note: See TracChangeset
for help on using the changeset viewer.