diff --git a/Makefile b/Makefile index e2ca7b4..57d75fc 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Makefile -- stm32bringup -# Copyright © 2020-2023 Renaud Fivet +# Copyright © 2020-2024 Renaud Fivet ### Build environment selection @@ -14,7 +14,8 @@ ifeq (linux, $(findstring linux, $(MAKE_HOST))) #REVDIR = arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi #REVDIR = arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi #REVDIR = arm-gnu-toolchain-12.2.mpacbti-rel1-x86_64-arm-none-eabi - REVDIR = arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi +#REVDIR = arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi + REVDIR = arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi else DRIVE = d ifeq (cygwin, $(findstring cygwin, $(MAKE_HOST))) @@ -38,7 +39,8 @@ endif #REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-11.3.rel1-mingw-w64-i686-arm-none-eabi #REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-12.2.rel1-mingw-w64-i686-arm-none-eabi #REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-12.2.mpacbti-rel1-mingw-w64-i686-arm-none-eabi - REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-eabi +#REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-eabi + REVDIR = GNU Arm Embedded Toolchain/arm-gnu-toolchain-13.3.rel1-mingw-w64-i686-arm-none-eabi endif GCCDIR = $(INSTALLDIR)/$(REVDIR) diff --git a/docs/11_toolchain.html b/docs/11_toolchain.html index a23e676..d12de28 100644 --- a/docs/11_toolchain.html +++ b/docs/11_toolchain.html @@ -11,7 +11,8 @@ Arm maintains a GCC cross-compiler available as binaries that run on Linux and Windows.
It is available on their arm developer site. - +

+I want to develop for AArch32 bare-metal target (arm-none-eabi).

Installation on Windows

So far there are only win32 versions available for download either as .exe installers or .zip archives. File naming convention helps to @@ -37,6 +38,7 @@ CC = $(BINPFX)gcc version: $(CC) --version +