Skip to content

Commit

Permalink
fix: runtime is .a and not .so
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-pino committed Nov 4, 2024
1 parent 369eae8 commit 29453b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[env]
CAIRO_NATIVE_RUNTIME_LIBRARY = "./libcairo_native_runtime.so"
CAIRO_NATIVE_RUNTIME_LIBRARY = "./libcairo_native_runtime.a"
LLVM_SYS_191_PREFIX = "/usr/lib/llvm-19/"
MLIR_SYS_190_PREFIX = "/usr/lib/llvm-19/"
TABLEGEN_190_PREFIX = "/usr/lib/llvm-19/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function compile_cairo_native_runtime() {
cargo build -p cairo-native-runtime --release --all-features --quiet
popd || exit 1

mv ./cairo_native/target/release/libcairo_native_runtime.a ./libcairo_native_runtime.so
mv ./cairo_native/target/release/libcairo_native_runtime.a ./libcairo_native_runtime.a
rm -rf ./cairo_native
}

Expand Down

0 comments on commit 29453b0

Please sign in to comment.