mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
ac_add_options --enable-application=browser
|
|
ac_add_options --enable-optimize
|
|
|
|
ac_add_options --enable-update-packaging
|
|
ac_add_options --disable-debug
|
|
ac_add_options --enable-tests
|
|
ac_add_options --enable-codesighs
|
|
|
|
# Options for rpm versions of mozconfigs
|
|
PREFIX=/usr
|
|
LIBDIR=${PREFIX}/lib
|
|
ac_add_options --with-app-name=mozilla-nightly
|
|
ac_add_options --disable-updater
|
|
ac_add_options --prefix=$PREFIX
|
|
ac_add_options --libdir=$LIBDIR
|
|
|
|
CC=/tools/gcc-4.5/bin/gcc
|
|
CXX=/tools/gcc-4.5/bin/g++
|
|
# Avoid dependency on libstdc++ 4.5
|
|
ac_add_options --enable-stdcxx-compat
|
|
|
|
export CFLAGS="-gdwarf-2"
|
|
export CXXFLAGS="-gdwarf-2"
|
|
|
|
# For NSS symbols
|
|
export MOZ_DEBUG_SYMBOLS=1
|
|
ac_add_options --enable-debug-symbols="-gdwarf-2"
|
|
|
|
# Needed to enable breakpad in application.ini
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
export MOZ_TELEMETRY_REPORTING=1
|
|
|
|
mk_add_options PROFILE_GEN_SCRIPT='$(PYTHON) @MOZ_OBJDIR@/_profile/pgo/profileserver.py'
|
|
|
|
# Enable parallel compiling
|
|
mk_add_options MOZ_MAKE_FLAGS="-j4"
|
|
|
|
#Use ccache
|
|
ac_add_options --with-ccache=/usr/bin/ccache
|