mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D46682 --HG-- extra : moz-landing-system : lando
13 lines
378 B
Bash
Executable file
13 lines
378 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
export CFLAGS="$CFLAGS -Wno-attributes -Wno-ignored-attributes"
|
|
export CXXFLAGS="$CXXFLAGS -Wno-attributes -Wno-ignored-attributes"
|
|
|
|
cd $SOURCE
|
|
TOP=$(cd ..; pwd)
|
|
export MOZBUILD_STATE_PATH=$TOP/mozbuild-state
|
|
[ -d $MOZBUILD_STATE_PATH ] || mkdir $MOZBUILD_STATE_PATH
|
|
|
|
export MOZCONFIG=$SOURCE/js/src/devtools/rootAnalysis/mozconfig.haz
|
|
|
|
exec ./mach build -v -j8
|