Skip to content

Commit

Permalink
fix: use gcc as linker
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 15, 2024
1 parent 74c172f commit 8573c1d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabihf
- name: Run tests
run: cargo test --verbose
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
[dependencies]

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-ld"
linker = "aarch64-linux-gnu-gcc"

0 comments on commit 8573c1d

Please sign in to comment.