Last active
February 16, 2019 17:55
-
-
Save gojimmypi/b570c4c0dab4a5d65d03c89071e9d037 to your computer and use it in GitHub Desktop.
manual install of sdcc precompiled binaries
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
#!/bin/bash | |
# see https://github.com/svn2github/sdcc/blob/master/sdcc/doc/INSTALL.txt | |
cd ~ | |
mkdir -p temp | |
cd temp | |
# see http://sdcc.sourceforge.net/snap.php for fresh links: | |
wget http://sourceforge.net/projects/sdcc/files/snapshot_builds/amd64-unknown-linux2.5/sdcc-snapshot-amd64-unknown-linux2.5-20190216-10960.tar.bz2 | |
tar xjf sdcc-snapshot-amd64-unknown-linux2.5-20190216-10960.tar.bz2 | |
cd sdcc | |
sudo apt-get remove sdcc | |
sudo cp -r * /usr/local | |
lsb_release -a | |
sdcc --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment