diff options
Diffstat (limited to 'meson/test cases/common/121 object only target/obj_generator.py')
-rwxr-xr-x | meson/test cases/common/121 object only target/obj_generator.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meson/test cases/common/121 object only target/obj_generator.py b/meson/test cases/common/121 object only target/obj_generator.py new file mode 100755 index 000000000..afdbc09ad --- /dev/null +++ b/meson/test cases/common/121 object only target/obj_generator.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 + +# Mimic a binary that generates an object file (e.g. windres). + +import sys, subprocess + +if __name__ == '__main__': + if len(sys.argv) != 4: + print(sys.argv[0], 'compiler input_file output_file') + sys.exit(1) + compiler = sys.argv[1] + ifile = sys.argv[2] + ofile = sys.argv[3] + if compiler.endswith('cl'): + cmd = [compiler, '/nologo', '/MDd', '/Fo' + ofile, '/c', ifile] + elif sys.platform == 'sunos5': + cmd = [compiler, '-fpic', '-c', ifile, '-o', ofile] + else: + cmd = [compiler, '-c', ifile, '-o', ofile] + sys.exit(subprocess.call(cmd)) |