Created
January 23, 2021 15:58
-
-
Save ghawkgu/213c726fc087ec9f2306c9b023a3658a to your computer and use it in GitHub Desktop.
crosstool-ng on Ubuntu 20.04
This file contains hidden or 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
sudo apt install build-essential autoconf bison flex texinfo \ | |
help2man gawk libtool libtool-bin libtool-doc libncurses5-dev python3-dev \ | |
python3-distutils git unzip | |
git clone http://github.com/crosstool-ng/crosstool-ng | |
cd crosstool-ng | |
./bootstrap | |
./configure --enable-local | |
DEFCONFIG=samples/armv8-rpi3-linux-gnueabihf/crosstool.config ./ct-ng defconfig | |
./ct-ng build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you forgot the make step after line 9