diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-05-19 10:01:37 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-05-19 10:01:37 +0000 |
commit | ace2dc3ac117ea1a353fc1fb9922c88cb91b0d0c (patch) | |
tree | 901ae9588aa7b66bea00b86f078fbdc432066f86 /util | |
parent | 5b0280fb142d524a0762066e8b83f255410fc0d4 (diff) |
The AMD Fam10 code breaks with coreboot 4.5.0.
Potentially caused by reordering. Going back to 4.4.4 which is known working on
Fam10 until gcc or the Fam10 code is fixed.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5571 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/crossgcc/buildgcc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index e8efb5c525..512b049771 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -18,8 +18,8 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -CROSSGCC_DATE="March 29th, 2010" -CROSSGCC_VERSION="1.0" +CROSSGCC_DATE="May 18th, 2010" +CROSSGCC_VERSION="1.01" # default settings TARGETDIR=`pwd`/xgcc @@ -31,7 +31,9 @@ GMP_VERSION=5.0.1 MPFR_VERSION=2.4.2 MPC_VERSION=0.8.2 LIBELF_VERSION=0.8.13 -GCC_VERSION=4.5.0 # enable for Link Time Optimization & Co +# GCC 4.5.0 is broken on some AMD boards: +# GCC_VERSION=4.5.0 # enable for Link Time Optimization & Co +GCC_VERSION=4.4.4 BINUTILS_VERSION=2.20.1 GDB_VERSION=7.1 W32API_VERSION=3.14 |