]> git.ipfire.org Git - people/ms/pakfire.git/blob - macros/cflags.macro
CFLAGS: Remove --param=ssp-buffer-size=4 which has no effect with -fstack-protector...
[people/ms/pakfire.git] / macros / cflags.macro
1
2 # Export CFLAGS + CXXFLAGS
3 GLOBAL_CFLAGS = -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Werror=format-security
4 GLOBAL_CFLAGS += -fexceptions -fPIC -fstack-protector-strong -grecord-gcc-switches
5
6 CFLAGS_i686 = -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables
7 CFLAGS_x86_64 = -m64 -mtune=generic
8 CFLAGS_armv5tel = -march=armv5te -mfloat-abi=soft
9 CFLAGS_armv7hl = -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard -mthumb
10
11 export CFLAGS = %{GLOBAL_CFLAGS} %{CFLAGS_%{DISTRO_ARCH}}
12 export CXXFLAGS = %{CFLAGS}
13
14 export LDFLAGS = -Wl,-z,relro -Wl,-z,now