From ee0c5b8cd84bc1c82f87c151a1f701c5682b72e1 Mon Sep 17 00:00:00 2001 From: Boyan Karatotev Date: Mon, 9 Dec 2024 08:24:12 +0000 Subject: [PATCH] chore: drop -fno-builtin It is implied by -ffreestanding Change-Id: Ia7b0f78fd4020aceea246d10ac3d869e743e7a9f Signed-off-by: Boyan Karatotev --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6e0e584ce..6f080b441 100644 --- a/Makefile +++ b/Makefile @@ -283,7 +283,7 @@ ASFLAGS += $(CPPFLAGS) \ -ffreestanding -Wa,--fatal-warnings TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ -ffunction-sections -fdata-sections \ - -ffreestanding -fno-builtin -fno-common \ + -ffreestanding -fno-common \ -Os -std=gnu99 ifeq (${SANITIZE_UB},on)