Skip to content

Commit

Permalink
fix(macos): set rustflags to fix linker error (?)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Nov 23, 2023
1 parent bcd3cc8 commit 899e2b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ jobs:
compiler: clang-latest
- name: Install MSVC Compiler Toolchain
uses: ilammy/msvc-dev-cmd@v1
- name: Install Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
if: runner.os != 'macOS'
- name: Install Rust Toolchain (macos)
uses: actions-rust-lang/setup-rust-toolchain@v1
if: runner.os == 'macOS'
with:
rustflags: "-C link-arg=-undefined -C link-arg=dynamic_lookup"
- name: Install Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install Lua
Expand Down

0 comments on commit 899e2b1

Please sign in to comment.