Skip to content

Commit

Permalink
Merge pull request #22 from selfbus/update-toolchain
Browse files Browse the repository at this point in the history
Update ARM toolchain to version 13.3.rel1
  • Loading branch information
devanlai authored Sep 21, 2024
2 parents bfd8701 + 4adba6a commit ee9aae4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ endif
# Used libraries

LDLIBS += -l$(LIBNAME)
LDLIBS += -Wl,--start-group -lc -lgcc -lnosys -Wl,--end-group
LDLIBS += -Wl,--start-group -lc -lgcc -Wl,--end-group

####################################################################
####################################################################
Expand Down
4 changes: 2 additions & 2 deletions util/install-toolchain.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -eo pipefail
URL=https://developer.arm.com/-/media/Files/downloads/gnu/12.2.rel1/binrel/arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi.tar.xz
TOOLCHAIN=arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi
URL=https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz
TOOLCHAIN=arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi
TOOLCHAINS=$HOME/toolchains
TOOLCHAIN_MISSING=0
GCC=${TOOLCHAINS}/gcc-arm-embedded/bin/arm-none-eabi-gcc
Expand Down

0 comments on commit ee9aae4

Please sign in to comment.