Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14163
-gerrit
commit d1691390f1853406da4ac30686b426baf1d27c3f Author: Patrick Georgi pgeorgi@chromium.org Date: Wed Mar 23 21:44:43 2016 +0100
crossgcc: Enable multiple targets for a platform
This is required on powerpc64 to build both little endian and big endian libgcc.
Change-Id: I295c8ee5e8131d4108e98d1bfd53abb8bd8982b2 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 245211d..49dcf24 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -450,7 +450,7 @@ build_GCC() { --disable-libssp --disable-bootstrap --disable-nls \ --disable-libquadmath --without-headers \ --disable-threads \ - --enable-interwork --enable-multilib \ + --enable-interwork --enable-multilib --enable-targets=all \ --disable-libatomic --disable-libcc1 --disable-decimal-float \ ${GCC_OPTIONS} --enable-languages="${LANGUAGES}" \ --with-system-zlib \