Thomas Pöchtrager
Thomas Pöchtrager
Need the whole output to see what's going on. ``` ./Configure darwin-ppc-cc --prefix=$HOME/tmp/ppc-test/powerpcc-gcc make clean make install CC="powerpc-apple-darwin9-gcc" AR="powerpc-apple-darwin9-ar r" RANLIB="powerpc-apple-darwin9-ranlib" &>build.log ``` --- **Edit:** Never mind... I am getting...
Yes. My wrapper passes some flags "under the hood" to the compiler. You can see them by setting `OCDEBUG` to 1. ``` $ OCDEBUG=1 oppc32-gcc ~/tmp/test.c ``` There's something wrong...
You can now build an Apple GCC via: **Edit:** It's `APPLE_GCC=1` not `APPLEGCC=1` `POWERPC=1 APPLE_GCC=1 ./build_gcc.sh` I successfully built LLVM/Clang 3.4, OpenSSL, wget and curl with it. Please do the...
@snigel: No, that's enough. Thanks! I left curl, wget and OpenSSL out because they are easy enough to build. I will finish PowerPC support at a later time point, most...
@BSzili: Is https://github.com/gcc-mirror/gcc/blob/gcc-4_2-branch/gcc/config/i386/host-cygwin.c of any help? Copy the file(s) into `build/gcc/[...]` then `cd` into `build/gcc/build_*` and re-run `make`.
rm -rf target and re-run build.sh. I think you built the linker from the wrong branch. On Thu, Jan 28, 2016 at 12:25 PM, Szilárd Biró [email protected] wrote: > Thanks...
Did you set `MACOSX_DEPLOYMENT_TARGET`? If so, unset that variable.
Please post `config.log`.
What's the exact linker error you are getting?
I think this is caused by the different C++ standard library (libstdc++ vs. libc++). Building with Clang is not an option?