8000 nrf/Makefile: Fix GCC_VERION regex. · micropython/micropython@4d2b368 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4d2b368

Browse files
committed
nrf/Makefile: Fix GCC_VERION regex.
Signed-off-by: Andrew Leech <andrew@alelec.net>
1 parent 6007f3e commit 4d2b368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/nrf/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ CFLAGS_MCU_m4 = $(CFLAGS_CORTEX_M) -mtune=cortex-m4 -mcpu=cortex-m4 -mfpu=fpv4-s
130130
CFLAGS_MCU_m0 = $(CFLAGS_CORTEX_M) -fshort-enums -mtune=cortex-m0 -mcpu=cortex-m0 -mfloat-abi=soft
131131

132132
# linker wrap does not work with lto on older gcc/binutils: https://sourceware.org/bugzilla/show_bug.cgi?id=24406
133-
GCC_VERSION = $(shell arm-none-eabi-gcc --version | sed -n -E 's:^arm.*([0-9]+\.[0-9]+\.[0-9]+).*$$:\1:p')
133+
GCC_VERSION = $(shell arm-none-eabi-gcc --version | sed -n -E 's:^arm.* ([0-9]+\.[0-9]+\.[0-9]+).*$$:\1:p')
134134
GCC_MAJOR_VERS = $(word 1,$(subst ., ,$(GCC_VERSION)))
135135
ifeq ($(shell test $(GCC_MAJOR_VERS) -ge 10; echo $$?),0)
136136
LTO ?= 1

0 commit comments

Comments
 (0)
0