1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-26 03:28:34 +00:00
morpheus/prepare-env

16 lines
499 B
Plaintext
Raw Normal View History

2013-09-17 14:26:52 +00:00
top=$(pwd)
root=$top/root
libcroot=$root/opt/cross/x86_64-linux-musl/x86_64-linux-musl
2013-09-17 14:26:52 +00:00
nprocs=4
2013-09-20 10:20:41 +00:00
arch=x86_64
version=0.0
mirror=http://dl.2f30.org/morpheus-pkgs/$arch/$version
2013-09-25 13:12:49 +00:00
export top root libcroot nprocs mirror
2013-09-17 14:26:52 +00:00
2013-09-27 11:16:40 +00:00
optldflags="-s -Wl,--gc-sections -Wl,-z,relro,-z,now"
optcflags="-fdata-sections -ffunction-sections -Os -g0 -fno-unwind-tables -fno-asynchronous-unwind-tables -Wa,--noexecstack"
export optldflags optcflags
2013-09-27 10:21:42 +00:00
PATH=$root/opt/cross/x86_64-linux-musl/bin:$top/stuff/bin:$PATH
2013-09-17 14:26:52 +00:00
export PATH