-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mozconfig
27 lines (19 loc) · 841 Bytes
/
.mozconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Import the stock config for building the browser (Firefox)
. $topsrcdir/browser/config/mozconfig
# Define where build files should go. This places them in the directory
# "obj-ff-dbg" under the current source directory
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-fx-dbg
# -s makes builds quieter by default
# -j4 allows 4 tasks to run in parallel. Set the number to be the amount of
# cores in your machine. 4 is a good number.
mk_add_options MOZ_MAKE_FLAGS="-s -j8"
# Enable debug builds
ac_add_options --enable-debug
# Enable gstreamer
ac_add_options --enable-gstreamer
# Enable ccnx
ac_add_options --enable-ccnx
# Turn off compiler optimization. This will make applications run slower,
# will allow you to debug the applications under a debugger, like GDB.
ac_add_options --disable-optimize
ac_add_options --disable-crashreporter