Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install libtool-bin as dependency #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions toolchain.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/usr/bin/env bash

sudo apt-get update
sudo apt-get install -y git autoconf build-essential gperf bison flex texinfo libtool libncurses5-dev wget gawk libc6-dev python-serial libexpat-dev unzip
sudo apt-get install -y git autoconf build-essential gperf bison flex texinfo libtool-bin libncurses5-dev wget gawk libc6-dev python-serial libexpat-dev unzip

sudo mkdir -p /opt/Espressif
sudo chown -R $USER /opt/Espressif

cd /opt/Espressif

#Install crosstool-NG (toolchain)
git clone --depth 1 -b lx106 git://github.com/jcmvbkbc/crosstool-NG.git
git clone --depth 1 -b lx106 git://github.com/jcmvbkbc/crosstool-NG.git
cd crosstool-NG
./bootstrap && ./configure --prefix=`pwd` && make && make install
./ct-ng xtensa-lx106-elf
Expand Down