diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-19 20:51:06 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-19 20:51:06 +0200 |
commit | 6ee2796879c49a1a338e7dbf4ddab59c140ccf14 (patch) | |
tree | 28ec75eb955e844fa791c45973ea545009607a03 | |
parent | 19eb0e762a81fa4cd411d9bee1ed0809f52f4716 (diff) | |
download | meson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.zip meson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.tar.gz meson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.tar.bz2 |
THANK YOU STEVE JOBS FOR YOUR GREAT MODERN TOOLCHAIN!
-rwxr-xr-x | test cases/common/216 link custom/custom_stlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/216 link custom/custom_stlib.py b/test cases/common/216 link custom/custom_stlib.py index 37cf298..7311c4c 100755 --- a/test cases/common/216 link custom/custom_stlib.py +++ b/test cases/common/216 link custom/custom_stlib.py @@ -23,7 +23,7 @@ def generate_lib_gnulike(outfile, c_file, private_dir, compiler_array): out_file = pathlib.Path(outfile) if out_file.exists(): out_file.unlink() - link_cmd = [static_linker, 'csrD', outfile, str(o_file)] + link_cmd = [static_linker, 'csr', outfile, str(o_file)] subprocess.check_call(link_cmd) return 0 |