Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Try disabling multilib for gcc 4.9 on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jul 22, 2014
1 parent 2143775 commit 7af3c2d
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions gcc-4.9/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
./configure \
--prefix=$PREFIX \
--with-gmp=$PREFIX \
--with-mpfr=$PREFIX \
--with-mpc=$PREFIX \
--with-isl=$PREFIX \
--with-cloog=$PREFIX
if [ `uname` == Darwin ]; then
./configure \
--prefix=$PREFIX \
--with-gmp=$PREFIX \
--with-mpfr=$PREFIX \
--with-mpc=$PREFIX \
--with-isl=$PREFIX \
--with-cloog=$PREFIX \
--disable-multilib
else
./configure \
--prefix=$PREFIX \
--with-gmp=$PREFIX \
--with-mpfr=$PREFIX \
--with-mpc=$PREFIX \
--with-isl=$PREFIX \
--with-cloog=$PREFIX
fi

make
make install

0 comments on commit 7af3c2d

Please sign in to comment.