diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-08-28 16:51:50 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-08-28 16:51:50 -0700 |
commit | cda4e66b1a51c37118e0e1eb77504eca564df131 (patch) | |
tree | 8f1e0f11175c5d7db2134dbef4f0ffedf49b6e56 | |
parent | 1aa55242d929fd85ceaa462348e3ecb2636487bc (diff) | |
download | tmwa-cda4e66b1a51c37118e0e1eb77504eca564df131.tar.gz tmwa-cda4e66b1a51c37118e0e1eb77504eca564df131.tar.bz2 tmwa-cda4e66b1a51c37118e0e1eb77504eca564df131.tar.xz tmwa-cda4e66b1a51c37118e0e1eb77504eca564df131.zip |
This shouldn't be necessaryv14.8.28
-rw-r--r-- | .gitignore | 3 | ||||
-rwxr-xr-x | tools/nightly | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -12,3 +12,6 @@ /Makefile /config.status /lib +# nightlies +/build-x86_64-linux-gnu/ +/build-i586-linux-gnu/ diff --git a/tools/nightly b/tools/nightly index 7e72605..e20cdd5 100755 --- a/tools/nightly +++ b/tools/nightly @@ -48,12 +48,14 @@ config64() { first=true +set -x for config in ${ALL_CONFIGS[@]} do $config mkdir -p build-$HOST cd build-$HOST ../configure --host=$HOST CXX="$CXX -Wno-deprecated-declarations" --prefix=/. --enable-rpath=relative + rm -rf bin lib make -j3 all make -j3 test if $first |