Skip to content

Commit

Permalink
We don't test different configurations nearly enoguh
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge committed Nov 12, 2024
1 parent b016b67 commit c362142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyop2/compilation.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def make_so(compiler, jitmodule, extension, comm, filename=None):
_run(cc, logfile, errfile)
else:
# Compile
cc = (exe,) + compiler_flags + ('-c', '-o', oname, cname)
cc = (exe,) + compiler_flags + ('-c', '-o', str(oname), str(cname))
_run(cc, logfile, errfile)
# Extract linker specific "cflags" from ldflags and link
ld = tuple(shlex.split(compiler.ld)) + ('-o', str(soname), str(oname)) + tuple(expandWl(compiler.ldflags))
Expand Down

0 comments on commit c362142

Please sign in to comment.