diff options
-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 |