https://bugs.winehq.org/show_bug.cgi?id=37979
Ken Thomases ken@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |INVALID
--- Comment #3 from Ken Thomases ken@codeweavers.com --- (In reply to rhez from comment #2)
configure:3911: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc/x86_64-apple-darwin10.7.0/4.6.0/ lto-wrapper Target: x86_64-apple-darwin10.7.0 Configured with: ../gcc-4.6.0/configure --enable-languages=fortran,c++ Thread model: posix gcc version 4.6.0 (GCC)
You appear to be using a non-standard (self-built) compiler and tool chain.
configure:3942: checking whether the C compiler works configure:3964: gcc conftest.c >&5 gcc: error trying to exec 'as': execvp: No such file or directory
Your tool chain is missing an assembler. It basically can't compile anything. As shown:
configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "Wine" | #define PACKAGE_TARNAME "wine" | #define PACKAGE_VERSION "1.7.35" | #define PACKAGE_STRING "Wine 1.7.35" | #define PACKAGE_BUGREPORT "wine-devel@winehq.org" | #define PACKAGE_URL "http://www.winehq.org" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | }
This is very nearly the simplest possible program and your gcc can't build it. This has nothing to do with Wine and everything to do with your system configuration.
Fix your compiler and tool chain or switch to using the compiler and tool chain that Apple supplies (Xcode or the Command Line Tools package).