summaryrefslogtreecommitdiffstats
path: root/build-data/platforms/arm32.mk
diff options
context:
space:
mode:
authorMohammed Hawari <mohammed@hawari.fr>2021-01-22 14:30:56 +0100
committerNeale Ranns <neale@graphiant.com>2021-01-28 08:38:21 +0000
commitb78607b1db72173bffabc950253a3894c032cb5c (patch)
tree39458f32b0fa2fceeb75fc7053733b4daf067503 /build-data/platforms/arm32.mk
parent27df7979782aafca80ea4c7309284bd48fe021c0 (diff)
build: do not _FORTIFY_SOURCE in debug mode
When compiling in -O0, the glibc feature.h ignores _FORTIFY_SOURCE and, in some distributions, throws a #warning, which fails the build. This patch removes -D_FORTIFY_SOURCE in all debug configurations. Change-Id: Ic30229c038353e49ff9419779e082a7083c1ea5f Type: fix Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
Diffstat (limited to 'build-data/platforms/arm32.mk')
-rw-r--r--build-data/platforms/arm32.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-data/platforms/arm32.mk b/build-data/platforms/arm32.mk
index 815cf9de71f..5d8749e2ff6 100644
--- a/build-data/platforms/arm32.mk
+++ b/build-data/platforms/arm32.mk
@@ -34,9 +34,9 @@ arm32_dpdk_make_extra_args = "CPU_CFLAGS='-mfloat-abi=hard' \
CONFIG_RTE_MAX_NUMA_NODES=1"
-arm32_debug_TAG_CFLAGS = -g -O0 -DCLIB_DEBUG -D_FORTIFY_SOURCE=2 -DVLIB_MAX_CPUS=4 -march=armv7-a \
+arm32_debug_TAG_CFLAGS = -g -O0 -DCLIB_DEBUG -DVLIB_MAX_CPUS=4 -march=armv7-a \
-fstack-protector-all -fPIC -Werror
-arm32_debug_TAG_LDFLAGS = -g -O0 -DCLIB_DEBUG -D_FORTIFY_SOURCE=2 -DVLIB_MAX_CPUS=4 -march=armv7-a \
+arm32_debug_TAG_LDFLAGS = -g -O0 -DCLIB_DEBUG -DVLIB_MAX_CPUS=4 -march=armv7-a \
-fstack-protector-all -fPIC -Werror
arm32_TAG_CFLAGS = -g -O2 -D_FORTIFY_SOURCE=2 -DVLIB_MAX_CPUS=4 -march=armv7-a \