Skip to content

Commit

Permalink
fix: there's no armv7-linux-gnueabihf-gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 24, 2024
1 parent ff7cbf4 commit 378ce0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ linker = "arm-linux-gnueabihf-gcc"
linker = "arm-linux-gnueabi-gcc"

[target.arm7-unknown-linux-gnueabihf]
linker = "armv7-linux-gnueabihf-gcc"
linker = "arm-linux-gnueabihf-gcc"

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
Expand Down
4 changes: 2 additions & 2 deletions TC-armv7-unknown-linux-gnueabihf.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR armv7)
set(ZENOHC_CUSTOM_TARGET armv7-unknown-linux-gnueabihf)
set(CMAKE_C_COMPILER armv7-linux-gnueabihf-gcc)
set(CMAKE_CXX_COMPILER armv7-linux-gnueabihf-g++)
set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)

0 comments on commit 378ce0c

Please sign in to comment.