diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-04-21 19:13:26 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-04-21 19:13:26 -0700 |
commit | 23d10d830ca70dfbbfeea1a56a118607c303c353 (patch) | |
tree | 89c2dbb5f616d2cd0175c6a6546d77a7f0f0459a | |
parent | Remove workarounds for bugs fixed in gcc 8.3.0 (diff) | |
download | firefox-23d10d830ca70dfbbfeea1a56a118607c303c353.tar.xz |
Remove -fno-data-sections -fno-function-sections as firefox reeanbles them at the end
-rw-r--r-- | makepkg.conf.firefox | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makepkg.conf.firefox b/makepkg.conf.firefox index 705dea0..0305a28 100644 --- a/makepkg.conf.firefox +++ b/makepkg.conf.firefox @@ -37,8 +37,8 @@ CHOST="x86_64-pc-linux-gnu" #-- Compiler and Linker Flags CPPFLAGS="-D_FORTIFY_SOURCE" -CFLAGS="-march=x86-64 -mtune=generic -O3 -pipe -fno-plt -fstack-protector-strong -fstack-clash-protection -fno-data-sections -fno-function-sections -Wno-error=odr -Walloc-size-larger-than=$(getconf ULONG_MAX) -Wno-error=stringop-overflow" -CXXFLAGS="-march=x86-64 -mtune=generic -O3 -pipe -fno-plt -fstack-protector-strong -fstack-clash-protection -fno-data-sections -fno-function-sections -Wno-error=odr -Walloc-size-larger-than=$(getconf ULONG_MAX) -Wno-error=stringop-overflow" +CFLAGS="-march=x86-64 -mtune=generic -O3 -pipe -fno-plt -fstack-protector-strong -fstack-clash-protection -Wno-error=odr -Walloc-size-larger-than=$(getconf ULONG_MAX) -Wno-error=stringop-overflow" +CXXFLAGS="-march=x86-64 -mtune=generic -O3 -pipe -fno-plt -fstack-protector-strong -fstack-clash-protection -Wno-error=odr -Walloc-size-larger-than=$(getconf ULONG_MAX) -Wno-error=stringop-overflow" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j4" |