2014-05-12 10:17:41 +04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-16 09:56:44 +03:00
|
|
|
if [ ! -a "toolchain/local/bin/i686-pc-toaru-gcc" ]; then
|
2015-12-16 09:53:26 +03:00
|
|
|
echo "=== Begin Toolchain Build ==="
|
|
|
|
pushd toolchain
|
|
|
|
unset PKG_CONFIG_LIBDIR
|
|
|
|
./prepare.sh
|
|
|
|
./install.sh
|
|
|
|
. activate.sh
|
|
|
|
popd
|
|
|
|
echo "=== End Toolchain Build ==="
|
|
|
|
else
|
|
|
|
echo "=== Toolchain was cached. ==="
|
2015-07-26 03:09:16 +03:00
|
|
|
fi
|
|
|
|
|
2014-05-12 10:17:41 +04:00
|
|
|
. toolchain/activate.sh
|
|
|
|
|
|
|
|
make
|
|
|
|
|
2014-05-13 07:30:49 +04:00
|
|
|
expect util/test-travis.exp
|