1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #17898 from keith-packard/enable-gcc-builtin

cpu/arm7, arch/cortexm: Remove -fno-builtin flag
This commit is contained in:
Marian Buschsieweke 2022-04-06 08:14:11 +02:00 committed by GitHub
commit a097baee80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ INCLUDES += -I$(RIOTBASE)/cpu/arm7_common/include/
MCPU ?= arm7tdmi-s
CFLAGS_CPU = -mcpu=$(MCPU)
CFLAGS_LINK = -ffunction-sections -fdata-sections -fno-builtin -fshort-enums
CFLAGS_LINK = -ffunction-sections -fdata-sections -fshort-enums
CFLAGS_DBG ?= -ggdb -g3
CFLAGS_OPT ?= -Os

View File

@ -20,7 +20,7 @@ ifneq (llvm,$(TOOLCHAIN))
endif
endif
CFLAGS_LINK = -ffunction-sections -fdata-sections -fno-builtin -fshort-enums
CFLAGS_LINK = -ffunction-sections -fdata-sections -fshort-enums
CFLAGS_DBG ?= -ggdb -g3
CFLAGS_OPT ?= -Os