Skip to content

Instantly share code, notes, and snippets.

@pbrilius
Forked from nasser/atom-shell-arm-build.sh
Created March 29, 2016 17:51
Show Gist options
  • Save pbrilius/d887223dbfecf354b936b08abd053862 to your computer and use it in GitHub Desktop.
Save pbrilius/d887223dbfecf354b936b08abd053862 to your computer and use it in GitHub Desktop.
Cross compile atom-shell to ARM from Ubuntu 14.04
# from https://github.com/atom/atom-shell/blob/master/docs/development/build-instructions-linux.md
# run as root on ubuntu 14.04
# basic deps
apt-get install build-essential clang libgtk2.0-dev libnotify-dev gcc-multilib g++-multilib libgnome-keyring-dev
# node
apt-get install python-software-properties software-properties-common
add-apt-repository ppa:chris-lea/node.js
apt-get update
apt-get install nodejs
npm install npm -g
# get cross compilers
apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
# get code
git clone https://github.com/atom/atom-shell.git
./script/bootstrap.py -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment