We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-I<dirname>
1 parent 005f0f4 commit 3850bd0Copy full SHA for 3850bd0
tests/runner.py
@@ -653,7 +653,7 @@ def build(self, src, dirname, filename, main_file=None,
653
except:
654
pass
655
args = [PYTHON, EMCC] + self.get_emcc_args(main_file=True) + \
656
- ['-I', dirname, '-I', os.path.join(dirname, 'include')] + \
+ ['-I' + dirname, '-I' + os.path.join(dirname, 'include')] + \
657
['-I' + include for include in includes] + \
658
['-c', f, '-o', f + '.o']
659
run_process(args, stderr=self.stderr_redirect if not DEBUG else None)
@@ -682,7 +682,7 @@ def build(self, src, dirname, filename, main_file=None,
682
shutil.move(all_files[i], all_files[i] + '.bc')
683
all_files[i] += '.bc'
684
685
686
687
all_files + ['-o', filename + suffix]
688
0 commit comments