diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-19 09:48:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-19 09:48:53 +0000 |
commit | 52534d4d5167eed428df39db7c336488aadaa1e2 (patch) | |
tree | 904400dc40f2322559d6878120e813149b831ee2 | |
parent | c5b9e2c6dc4ca41aabc96970599c52f8a3a13997 (diff) | |
download | abuild-52534d4d5167eed428df39db7c336488aadaa1e2.tar.gz abuild-52534d4d5167eed428df39db7c336488aadaa1e2.tar.bz2 abuild-52534d4d5167eed428df39db7c336488aadaa1e2.tar.xz abuild-52534d4d5167eed428df39db7c336488aadaa1e2.zip |
abuild.conf: add ARCH and minor cleanup
-rw-r--r-- | abuild.conf | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/abuild.conf b/abuild.conf index 315f3b5..eea4767 100644 --- a/abuild.conf +++ b/abuild.conf @@ -1,19 +1,20 @@ -export CHOST=i486-alpine-linux-uclibc -export CFLAGS="-march=i486 -Os -fomit-frame-pointer" +ARCH=x86 + +CHOST=i486-alpine-linux-uclibc +CTARGET=$CHOST + +export CFLAGS="-Os -fomit-frame-pointer" export CXXFLAGS="$CFLAGS" export CPPFLAGS="$CFLAGS" export LDFLAGS="-Wl,--as-needed" -export PATH=:/usr/i386-gentoo-linux-uclibc/binutils-bin/2.18:$PATH - export JOBS=2 export MAKEFLAGS=-j$JOBS # remove line below to disable colors USE_COLORS=1 -# uncomment line below to fetch sources to other location location -#SRCDEST=/var/cache/distfiles +SRCDEST=/var/cache/distfiles # uncomment line below to store built packages in other location # The package will be stored as $REPODEST/$repo/$pkgname-$pkgver-r$pkgrel.apk |