Advertisement
Max13

GCC 4.9.1 on OSX 10.10

Sep 16th, 2014
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.16 KB | None | 0 0
  1. ➜  gcc-4.8.3  ./configure --enable-plugin
  2. [...]
  3. ➜  gcc-4.8.3  make
  4. [ -f stage_final ] || echo stage3 > stage_final
  5. mkdir host-x86_64-apple-darwin14.0.0
  6. Configuring stage 1 in host-x86_64-apple-darwin14.0.0/intl
  7. configure: creating cache ./config.cache
  8. checking whether /Applications/Xcode.app/Contents/Developer/usr/bin/make sets $(MAKE)... yes
  9. checking for a BSD-compatible install... /usr/bin/install -c
  10. checking whether NLS is requested... yes
  11. checking for msgfmt... no
  12. checking for gmsgfmt... :
  13. checking for xgettext... no
  14. [...]
  15. libtool: compile:  /Users/Max13/gcc-4.8.3/host-x86_64-apple-darwin14.0.0/gcc/xgcc -shared-libgcc -B/Users/Max13/gcc-4.8.3/host-x86_64-apple-darwin14.0.0/gcc -nostdinc++ -L/Users/Max13/gcc-4.8.3/x86_64-apple-darwin14.0.0/i386/libstdc++-v3/src -L/Users/Max13/gcc-4.8.3/x86_64-apple-darwin14.0.0/i386/libstdc++-v3/src/.libs -B/usr/local/x86_64-apple-darwin14.0.0/bin/ -B/usr/local/x86_64-apple-darwin14.0.0/lib/ -isystem /usr/local/x86_64-apple-darwin14.0.0/include -isystem /usr/local/x86_64-apple-darwin14.0.0/sys-include -m32 -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -DASAN_HAS_EXCEPTIONS=1 -DASAN_FLEXIBLE_MAPPING_AND_OFFSET=0 -DASAN_NEEDS_SEGV=1 -DMAC_INTERPOSE_FUNCTIONS -DMISSING_BLOCKS_SUPPORT -I. -I../../../.././libsanitizer/asan -I ../../../.././libsanitizer/include -I ../../../.././libsanitizer -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -Wno-long-long -fPIC -fno-builtin -fno-exceptions -fomit-frame-pointer -funwind-tables -fvisibility=hidden -Wno-variadic-macros -I../../libstdc++-v3/include -I../../libstdc++-v3/include/x86_64-apple-darwin14.0.0 -I../../../.././libsanitizer/../libstdc++-v3/libsupc++ -g -O2 -m32 -MT asan_mac.lo -MD -MP -MF .deps/asan_mac.Tpo -c ../../../.././libsanitizer/asan/asan_mac.cc  -fno-common -DPIC -o .libs/asan_mac.o
  16. xgcc: warning: couldn’t understand kern.osversion ‘14.0.0
  17. ../../../.././libsanitizer/asan/asan_mac.cc: In function ‘void __asan::GetPcSpBp(void*, __sanitizer::uptr*, __sanitizer::uptr*, __sanitizer::uptr*)’:
  18. ../../../.././libsanitizer/asan/asan_mac.cc:47:32: error: ‘struct mcontext32’ has no member named ‘__ss’
  19.    *pc = ucontext->uc_mcontext->__ss.__eip;
  20.                                 ^
  21. ../../../.././libsanitizer/asan/asan_mac.cc:48:32: error: ‘struct mcontext32’ has no member named ‘__ss’
  22.    *bp = ucontext->uc_mcontext->__ss.__ebp;
  23.                                 ^
  24. ../../../.././libsanitizer/asan/asan_mac.cc:49:32: error: ‘struct mcontext32’ has no member named ‘__ss’
  25.    *sp = ucontext->uc_mcontext->__ss.__esp;
  26.                                 ^
  27. ../../../.././libsanitizer/asan/asan_mac.cc: At global scope:
  28. ../../../.././libsanitizer/asan/asan_mac.cc:308:6: warning: always_inline function might not be inlinable [-Wattributes]
  29.  void asan_register_worker_thread(int parent_tid, StackTrace *stack) {
  30.       ^
  31. make[7]: *** [asan_mac.lo] Error 1
  32. make[6]: *** [all-recursive] Error 1
  33. make[5]: *** [multi-do] Error 1
  34. make[4]: *** [all-multi] Error 2
  35. make[3]: *** [all-recursive] Error 1
  36. make[2]: *** [all-stage1-target-libsanitizer] Error 2
  37. make[1]: *** [stage1-bubble] Error 2
  38. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement