Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ jobs:
if: matrix.os == 'windows-latest'

- name: Install llvm-nm (Windows)
shell: bash
run: |
rustup update stable
rustup default stable
rustup component add llvm-tools-preview
if: matrix.os == 'windows-latest'

- name: Register llvm-nm in environment (Windows)
shell: bash
run: |
echo "WASM_NM=$(rustc --print sysroot|sed 's|C:|/c|'|sed 's|\\|/|g')/lib/rustlib/x86_64-pc-windows-msvc/bin/llvm-nm.exe" >> $GITHUB_ENV
if: matrix.os == 'windows-latest'

Expand Down