Skip to content

Commit

Permalink
Remove -c option
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Jan 15, 2024
1 parent 511b8a8 commit 1a64dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rhodium/test/ffi_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def setUpClass(cls):
elif platform.system() == "Windows":
libname = "test.dll"

result = subprocess.run(["gcc", "-shared", "-fPIC", "-o", libname, "-c", src], capture_output=True)
result = subprocess.run(["gcc", "-shared", "-fPIC", "-o", libname, src], capture_output=True)
print(result.stdout)
print(result.stderr)
result.check_returncode()
Expand Down

0 comments on commit 1a64dc4

Please sign in to comment.