Skip to content

Commit

Permalink
fix: macos rpath issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Chronostasys committed Feb 4, 2025
1 parent b49eee9 commit 5b26fd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
mdbook build
working-directory: book
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: book
path: book/book
Expand All @@ -53,7 +53,7 @@ jobs:
needs: book
if: github.event_name == 'push'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: book
- uses: peaceiris/actions-gh-pages@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
dir: osx64
arch: darwin-arm64
artifacts: "plc"
RUSTFLAGS: ""
RUSTFLAGS: "-C link-args=-Wl,-ld_classic"
libvm: "libvm.a"
libvm_dylib: "libvm.dylib"
libuv_dylib: "libuv.dylib"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ lto = "thin"
#panic = 'unwind' # This setting is always ignored.
incremental = true
codegen-units = 1
# rpath = true
rpath = false


[dev-dependencies]
Expand Down

0 comments on commit 5b26fd0

Please sign in to comment.