Skip to content

Commit

Permalink
Fix ARM compiler path on Windows
Browse files Browse the repository at this point in the history
Looks like the compiler path changed in recent versions. I'm using
Version `12.3.Rel1`, released July 28, 2023.

https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads

Possible fix for pd-rs#44?
  • Loading branch information
parasyte committed Aug 27, 2023
1 parent 6d046ce commit 83a0a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const GCC_PATH_STR: &'static str = "/usr/local/bin/arm-none-eabi-gcc";
const GCC_PATH_STR: &'static str = "arm-none-eabi-gcc";
#[cfg(windows)]
const GCC_PATH_STR: &'static str =
r"C:\Program Files (x86)\GNU Tools Arm Embedded\9 2019-q4-major\bin\arm-none-eabi-gcc.exe";
r"C:\Program Files (x86)\Arm GNU Toolchain arm-none-eabi\12.3 rel1\bin\arm-none-eabi-gcc.exe";

#[cfg(unix)]
#[allow(unused)]
Expand Down

0 comments on commit 83a0a72

Please sign in to comment.