Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- cd /opt/crosstool/src/build-gmp
- ../gmp-5.0.1/configure --disable-shared --enable-static
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to configure libgmp ==="
- exit 1
- fi
- make
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to make libgmp ==="
- exit 1
- fi
- make check
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to check libgmp ==="
- exit 1
- fi
- make install
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to install libgmp ==="
- exit 1
- fi
- cd /opt/crosstool/src/build-mpfr
- ../mpfr-3.0.1/configure --with-gmp=/usr/local
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to configure libmpfr ==="
- exit 1
- fi
- make
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to make libmpfr ==="
- exit 1
- fi
- make check
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to check libmpfr ==="
- exit 1
- fi
- make install
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to install libmpfr ==="
- exit 1
- fi
- cd /opt/crosstool/src/build-mpc
- ../mpc-0.9/configure --with-gmp=/usr/local
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to configure libmpc ==="
- exit 1
- fi
- make
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to make libmpc ==="
- exit 1
- fi
- make check
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to check libmpc ==="
- exit 1
- fi
- make install
- if [ "$?" -ne "0" ]; then
- echo "=== build script: failed to install libmpc ==="
- exit 1
- fi
- echo "=== build script: OK ==="
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement