Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/desktop-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,13 @@ jobs:
targets: ${{ matrix.target }}

- name: Build rustledger CLI binaries
run: cargo build --release --target ${{ matrix.target }}
shell: bash
run: |
# macOS: Use classic linker to avoid Xcode 15 crashes on long symbol names
if [ "${{ runner.os }}" = "macOS" ]; then
export RUSTFLAGS="-C link-arg=-Wl,-ld_classic"
fi
cargo build --release --target ${{ matrix.target }}

- name: Prepare binaries (Unix)
if: runner.os != 'Windows'
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,13 @@ jobs:
targets: ${{ matrix.target }}

- name: Build rustledger CLI binaries
run: cargo build --release --target ${{ matrix.target }}
shell: bash
run: |
# macOS: Use classic linker to avoid Xcode 15 crashes on long symbol names
if [ "${{ runner.os }}" = "macOS" ]; then
export RUSTFLAGS="-C link-arg=-Wl,-ld_classic"
fi
cargo build --release --target ${{ matrix.target }}

- name: Prepare binaries (Unix)
if: runner.os != 'Windows'
Expand Down
Loading