Last active
December 29, 2024 12:06
-
-
Save nasser/9ac724a480ef6a5a6ffa to your computer and use it in GitHub Desktop.
Cross compile atom-shell to ARM from Ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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