We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cdb62f commit 5a6b276Copy full SHA for 5a6b276
travis/nasm-t.py
@@ -337,9 +337,11 @@ def prepare_run_opts(desc):
337
for t in desc['target']:
338
if 'output' in t:
339
if 'option' in t:
340
- opts += t['option'].split(" ") + [desc['_base-dir'] + os.sep + t['output']]
+ opts += t['option'].split(" ")
341
else:
342
- opts += ['-o', desc['_base-dir'] + os.sep + t['output']]
+ opts += ['-o']
343
+ outfile = desc['_base-dir'] + os.sep + t['output']
344
+ opts += [outfile, '-L+', '-l', outfile + '.lst']
345
if 'stdout' in t or 'stderr' in t:
346
347
opts += t['option'].split(" ")
0 commit comments