build_gcc.sh: change default gcc version to 5.1.0

This commit is contained in:
Thomas Pöchtrager 2015-04-27 19:41:32 +02:00
parent 3f26fde3e7
commit 5127b44d52
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ That's it. See usage examples below.
##### Building GCC: ##### ##### Building GCC: #####
If you want to build GCC as well, then you can do this by running: If you want to build GCC as well, then you can do this by running:
`[GCC_VERSION=4.9.1] [ENABLE_FORTRAN=1] ./build_gcc.sh`. `[GCC_VERSION=5.1.0] [ENABLE_FORTRAN=1] ./build_gcc.sh`.
\[A gfortran usage example can be found [here](https://github.com/tpoechtrager/osxcross/issues/28#issuecomment-67047134)] \[A gfortran usage example can be found [here](https://github.com/tpoechtrager/osxcross/issues/28#issuecomment-67047134)]

View File

@ -13,7 +13,7 @@ source tools/tools.sh
# GCC version to build # GCC version to build
# (<4.7 will not work properly with libc++) # (<4.7 will not work properly with libc++)
if [ -z "$GCC_VERSION" ]; then if [ -z "$GCC_VERSION" ]; then
GCC_VERSION=4.9.2 GCC_VERSION=5.1.0
#GCC_VERSION=5-20140928 # snapshot #GCC_VERSION=5-20140928 # snapshot
fi fi