mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
bb9b87482f
Now that we have cross-compilation tooltool packages for OS X, we can use the common mozconfig to enable Rust on all OS X builds, regardless of host OS.
18 lines
528 B
Plaintext
18 lines
528 B
Plaintext
. "$topsrcdir/browser/config/mozconfigs/macosx-universal/common-opt"
|
|
|
|
ac_add_options --disable-install-strip
|
|
ac_add_options --enable-verify-mar
|
|
ac_add_options --enable-profiling
|
|
ac_add_options --enable-instruments
|
|
ac_add_options --enable-dtrace
|
|
|
|
if test "${MOZ_UPDATE_CHANNEL}" = "nightly"; then
|
|
ac_add_options --with-macbundlename-prefix=Firefox
|
|
fi
|
|
|
|
ac_add_options --with-branding=browser/branding/nightly
|
|
|
|
. "$topsrcdir/build/mozconfig.rust"
|
|
. "$topsrcdir/build/mozconfig.common.override"
|
|
. "$topsrcdir/build/mozconfig.cache"
|