xbps-src: set default compiler/preprocessor/linker flags via etc/conf.

Rather than setting them in the build profile, just set them in
etc/defaults.conf (overridable via etc/conf) to simplify the code.

- Also enable _FORTIFY_SOURCE=2 in CPPFLAGS.
- Also enable -z,relro in LDFLAGS.

As suggested by @chneukirchen.
This commit is contained in:
Juan RP 2015-03-04 15:17:05 +01:00
parent 6cf2ac3983
commit 50a116d27a
21 changed files with 27 additions and 45 deletions

View file

@ -1,3 +1,3 @@
XBPS_CFLAGS="-O2 -pipe -fstack-protector-strong -march=armv7-a -mfpu=vfpv3 -mfloat-abi=hard"
XBPS_CXXFLAGS="$XBPS_CFLAGS"
XBPS_TARGET_CFLAGS="-march=armv7-a -mfpu=vfpv3 -mfloat-abi=hard"
XBPS_TARGET_CXXFLAGS="$XBPS_CXXFLAGS"
XBPS_TRIPLET="armv7l-unknown-linux-musleabi"