Last active
January 6, 2017 16:57
-
-
Save larsch/4a60e3628e3d2c82b4f4 to your computer and use it in GitHub Desktop.
Bootstrap script for ESP8266 SDK on Arch Linux
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
#!/bin/sh -exu | |
sudo pacman -S --needed --noconfirm base-devel python2 expat ncurses gperf git wget unzip | |
sudo ln -sf /usr/bin/python2 /usr/bin/python | |
git clone --recursive https://github.com/pfalcon/esp-open-sdk.git | |
cd esp-open-sdk | |
make STANDALONE=y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aslo linking python2 to /usr/bin/python doesn't seem like a good idea at all.