Get rid of a workaround; building with Clang works now.

This commit is contained in:
Jonathan Schleifer 2013-12-19 12:28:47 +01:00 committed by Stephan Aßmus
parent 1665250fa7
commit bd50e8aedb
1 changed files with 0 additions and 7 deletions

View File

@ -262,13 +262,6 @@ if $(HOST_PLATFORM) = linux || $(HOST_PLATFORM) = freebsd
}
}
# On recent versions of OS X cc and c++ point to clang, which fails to
# compile some of the host tools. As a workaround, force use of GCC.
if $(HOST_PLATFORM) = darwin {
HOST_CC = gcc ;
HOST_C++ = g++ ;
}
if $(HOST_PLATFORM) = cygwin {
HOST_LINKFLAGS += -Xlinker --allow-multiple-definition -Xlinker
--enable-auto-import ;