-
Notifications
You must be signed in to change notification settings - Fork 211
Ubuntu x64 build instructions
Victor Ng edited this page Mar 24, 2015
·
3 revisions
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install lib32stdc++6 lib32z1 make oracle-java7-installer
Set your JAVA_HOME and add JAVA_HOME to your executable path:
export JAVA_HOME=/usr/lib/jvm/java-7-oracle/
export PATH=$PATH:$JAVA_HOME/bin
Now you're ready to clone and build the system.
git clone git@github.com:mozilla/MozStumbler.git
cd MozStumbler
make clean; make test
It's important that you run either make clean
or make debug
. We use an Android deployer to setup your Android SDK for you, but you need make to run twice in order to get the Android SDK to install to completion.
Think of it as our tribute to LaTeX.