Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. # If ccache was installed via Homebrew:
  2. export PATH="`brew --prefix ccache`/libexec:$PATH"
  3.  
  4. # Import the stock config for building the browser (Firefox)
  5. . $topsrcdir/browser/config/mozconfig
  6.  
  7. . $topsrcdir/build/macosx/mozconfig.common
  8.  
  9. # Define where build files should go. This places them in the directory
  10. # "obj-ff-dbg" under the current source directory
  11. mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-ff-dbg
  12.  
  13. # -s makes builds quieter by default
  14. # -j4 allows 4 tasks to run in parallel. Set the number to be the amount of
  15. # cores in your machine. 4 is a good number.
  16. mk_add_options MOZ_MAKE_FLAGS="-s -j4"
  17.  
  18. mk_add_options AUTOCONF=/usr/local/Cellar/autoconf213/2.13/bin/autoconf213
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement