1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/build/unix/mozconfig.linux Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +if [ "x$IS_NIGHTLY" = "xyes" ]; then 1.5 + MOZ_AUTOMATION_UPLOAD_SYMBOLS=1 1.6 + MOZ_AUTOMATION_UPDATE_PACKAGING=1 1.7 +fi 1.8 + 1.9 +. "$topsrcdir/build/mozconfig.common" 1.10 + 1.11 +# some b2g desktop builds still happen on i686 machines, and the tooltool 1.12 +# toolchain is x86_64 only. 1.13 +# We also deal with valgrind builds here, they don't use tooltool manifests at 1.14 +# all yet. 1.15 +if [ -z "$no_tooltool" ] 1.16 +then 1.17 + CC="$topsrcdir/gcc/bin/gcc" 1.18 + CXX="$topsrcdir/gcc/bin/g++" 1.19 + 1.20 + # We want to make sure we use binutils and other binaries in the tooltool 1.21 + # package. 1.22 + mk_add_options PATH="$topsrcdir/gcc/bin:$PATH" 1.23 +else 1.24 + CC="/tools/gcc-4.7.3-0moz1/bin/gcc" 1.25 + CXX="/tools/gcc-4.7.3-0moz1/bin/g++" 1.26 +fi 1.27 + 1.28 +ac_add_options --enable-elf-hack 1.29 + 1.30 +# Avoid dependency on libstdc++ 4.7 1.31 +ac_add_options --enable-stdcxx-compat