void-packages/common/cross-profiles
2015-05-02 05:56:12 +02:00
..
aarch64-musl.sh common/*-profiles/aarch64-musl.sh: add AArch64/ARMv8 musl profiles. 2015-03-30 18:33:43 +02:00
aarch64.sh common/*-profiles/aarch64.sh: add AArch64/ARMv8 glibc cross profile. 2015-03-30 18:33:43 +02:00
armv5te.sh common/cross-profiles/armv5te.sh: sync with current cross pkg. 2015-05-01 11:37:22 +02: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.guess hooks/pre-configure/01-aarch64-override-config.sh: new hook. 2015-03-30 18:33:43 +02:00
config.sub common/cross-profiles/config.sub: update to automake 1.15 version. 2015-03-30 18:33:43 +02:00
i686-musl.sh cross-profiles/i686-musl: also disable _FORTIFY_SOURCE. 2015-03-06 10:33:53 +01:00
i686.sh cross-i686-pc-linux-gnu: update toolchain components and unbreak. 2015-04-11 10:29:52 +02:00
mips-musl.sh xbps-src: added support to cross compile for MIPS32 (r2, be, sf) with musl. 2015-05-02 05:56:12 +02: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
README common/cross-profiles: add a simple README. 2014-01-28 12:07:13 +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

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.