Idwer Vollering (vidwer@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2342
-gerrit
commit bb767d7b222a1aafa79b7068d0ec6d650126055e Author: Idwer Vollering vidwer@gmail.com Date: Sat Feb 9 23:58:06 2013 +0100
crossgcc: don't use libdl while building GDB on FreeBSD
crossgcc: fix building GDB on FreeBSD (and possibly NetBSD/OpenBSD).
Since FreeBSD doesn't have libdl, these errors are shown: - config.log: /usr/bin/ld: cannot find -ldl - crossgcc-build.log: configure: error: C compiler cannot create executables
Conditionally remove -ldl from LDFLAGS.
Change-Id: I79c48da7e6700a4606c9e0c1314241db8997d3f3 Signed-off-by: Idwer Vollering vidwer@gmail.com --- util/crossgcc/buildgcc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index ad2bb65..ff35542 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -562,8 +562,13 @@ printf "Building GDB ${GDB_VERSION} ... " cd build-gdb export PYTHONHOME=$DESTDIR$TARGETDIR rm -f .failed + if [ $(uname) = "FreeBSD" -o $(uname) = "NetBSD" ] ; then LDFLAGS="-Wl,-rpath,$$ORIGIN/../lib/ -L$DESTDIR$TARGETDIR/lib \ - -lpthread -ldl -lutil" \ + -lpthread -lutil" + else + LDFLAGS="-Wl,-rpath,$$ORIGIN/../lib/ -L$DESTDIR$TARGETDIR/lib \ + -lpthread -ldl -lutil" + fi CC="$CC" CFLAGS="$HOSTCFLAGS -I$DESTDIR$TARGETDIR/include" \ ../gdb-${GDB_VERSION}/configure --prefix=$TARGETDIR \ --target=${TARGETARCH} --disable-werror --disable-nls