From d81f11c3dc2e90ce5e3cc064ceeed3fef962cf8d Mon Sep 17 00:00:00 2001 From: dxl <64101226@qq.com> Date: Tue, 14 Mar 2023 10:56:17 +0800 Subject: [PATCH] The toolchain is in the developer's environment. Development under Windows should not need to modify the makefile of SDK to define the toolchain path. --- .../nrf52_sdk/components/toolchain/gcc/Makefile.windows | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resource/nrf52_sdk/components/toolchain/gcc/Makefile.windows b/resource/nrf52_sdk/components/toolchain/gcc/Makefile.windows index aa1642c..54dbc80 100644 --- a/resource/nrf52_sdk/components/toolchain/gcc/Makefile.windows +++ b/resource/nrf52_sdk/components/toolchain/gcc/Makefile.windows @@ -1,3 +1,3 @@ -GNU_INSTALL_ROOT := C:/UserProgram/arm_gcc/none/bin/ -GNU_VERSION := 10.3.1 -GNU_PREFIX := arm-none-eabi \ No newline at end of file +GNU_INSTALL_ROOT ?= C:/Program Files (x86)/GNU Arm Embedded Toolchain/9 2020-q2-update/bin/ +GNU_VERSION ?= 9.3.1 +GNU_PREFIX ?= arm-none-eabi \ No newline at end of file