From 30fa5253773e05e01e2830d039658b9635e9617a Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 22:27:46 +0100 Subject: added xib_profile --- xib_profile.conf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 xib_profile.conf (limited to 'xib_profile.conf') diff --git a/xib_profile.conf b/xib_profile.conf new file mode 100755 index 0000000..6a33a9f --- /dev/null +++ b/xib_profile.conf @@ -0,0 +1,24 @@ + +# configurations for xib +# keep these generic and able to be reused for multiple different hosts + +export JOBS=$(grep "processor" /proc/cpuinfo | wc -l) +export MAKEFLAGS=-j$JOBS +export SAMUFLAGS=-j$JOBS +export CARGO_BUILD_JOBS=$JOBS + +export CFLAGS="-pipe -Os -fomit-frame-pointer" +export CXXFLAGS="$CFLAGS" +export CPPFLAGS="$CFLAGS" +export LDFLAGS="-Wl,--as-needed,-O1,--sort-common" +export GOFLAGS="-buildmode=pie" +export DFLAGS="-Os" +export HOME=/root + +export XORG_PREFIX="/usr" +export XORG_CONFIG="--prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static" + +export RUST_TARGET="x86_64-unknown-linux-musl" + +export PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin:/tools/sbin +export LIBRARY_PATH=/lib:/usr/lib/:/tools/lib:/tools/lib64 -- cgit v1.2.1