Skip to content

Commit

Permalink
rename dynlib to dylib
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinMeimar committed Oct 10, 2024
1 parent 3649333 commit bddd7f5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/configs/runtimeConfigDarwin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"gcc": "/usr/bin/gcc"
},
"runtimes": {
"gcc": "../lib/libfib.dynlib"
"gcc": "../lib/libfib.dylib"
},
"toolchains": {
"clang-runtime": [
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_gcc_toolchain_success(config_factory, cli_factory):
assert os.path.exists(COMPILE_LIB_SCRIPT), "missing library compiler script"

if sys.platform == "darwin":
lib = "libfib.dynlib"
lib = "libfib.dylib"
config = config_factory("runtimeConfigDarwin.json")
else:
lib = "libfib.so"
Expand Down

0 comments on commit bddd7f5

Please sign in to comment.