73
edits
| Line 25: | Line 25: | ||
== mozconfig == | == mozconfig == | ||
Here is a sample mozconfig | Here is a sample mozconfig | ||
mk_add_options MOZ_CO_PROJECT=browser,xulrunner | mk_add_options MOZ_CO_PROJECT=browser,xulrunner | ||
| Line 44: | Line 43: | ||
mk_add_options MOZ_MAKE_FLAGS=-j4 | mk_add_options MOZ_MAKE_FLAGS=-j4 | ||
If your are using your own build of Qt you will need to add a line like this: | For arm you may need to disable jemalloc as the compiler doesn't seem to like it | ||
ac_add_options --disable-jemalloc | |||
== Custom Qt build == | |||
If your are using your own build of Qt you will need to add a line like this to our mozconfig: | |||
<pre> | <pre> | ||
ac_add_options --with-qtdir="/usr/local/Trollteh/Qt-4.4.0-rc1" | ac_add_options --with-qtdir="/usr/local/Trollteh/Qt-4.4.0-rc1" | ||
edits