vp-build/common/cross-profiles
Juan RP 50a116d27a 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.
2015-03-04 15:18:46 +01:00
..
README common/cross-profiles: add a simple README. 2014-01-28 12:07:13 +01:00
armv5te.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
armv6hf-musl.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
armv6hf.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
armv7hf-musl.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
armv7hf.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
config.sub
i686-musl.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
i686.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
mips.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
mipsel.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00
musl-gnulibfix common/cross-profiles: add a script from sabotage to workaround gnulib issues with musl. 2014-01-08 09:52:14 +01:00
x86_64-musl.sh xbps-src: set default compiler/preprocessor/linker flags via etc/conf. 2015-03-04 15:18:46 +01:00

README

CROSS PROFILES
==============

This directory contains cross profiles to allow cross compilation for the specified target.
A cross profile file must provide the following variables:

	- XBPS_TARGET_ARCH	(as returned by uname -m)
	- XBPS_CROSS_TRIPLET	(the cross compiler triplet)
	- XBPS_CFLAGS		(C compiler flags for host compiler)
	- XBPS_CXXFLAGS		(C++ compiler flags for the host compiler)
	- XBPS_CROSS_CFLAGS	(C compiler flags for the cross compiler)
	- XBPS_CROSS_CXXFLAGS	(C++ compiler flags for the cross compiler)

A source package matching `cross-${XBPS_CROSS_TRIPLET}' must also exist.