Advertisement
Guest User

Untitled

a guest
Apr 30th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. . $topsrcdir/browser/config/mozconfig
  2.  
  3. CC="clang -arch x86_64"
  4. CXX="clang -arch x86_64"
  5. HOST_CC="gcc"
  6. HOST_CXX="g++"
  7. RANLIB=ranlib
  8. AR=ar
  9. AS=$CC
  10. LD=ld
  11. STRIP="strip -x -S"
  12. CROSS_COMPILE=1
  13.  
  14. mk_add_options MOZ_MAKE_FLAGS="-s --no-print-directory -j8"
  15. mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
  16. mk_add_options MOZ_APP_DISPLAYNAME=TorBrowser
  17. mk_add_options PROFILE_GEN_SCRIPT='$(PYTHON) $(MOZ_OBJDIR)/_profile/pgo/profileserver.py'
  18. mk_add_options MOZILLA_OFFICIAL=1
  19. mk_add_options BUILD_OFFICIAL=1
  20.  
  21. ac_add_options --with-macos-sdk=/Developer/SDKs/MacOSX10.6.sdk
  22. ac_add_options --target=x86_64-apple-darwin10.6.0
  23. ac_add_options --enable-macos-target=10.6
  24. # bug 491774. crashreporter won't build in cross compile
  25. ac_add_options --disable-crashreporter
  26. ac_add_options --enable-application=browser
  27. ac_add_options --enable-official-branding
  28. ac_add_options --enable-libzul
  29. ac_add_options --enable-optimize
  30. ac_add_options --enable-strip
  31. ac_add_options --disable-tests
  32. ac_add_options --disable-debug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement