Skip to content

Instantly share code, notes, and snippets.

@gojimmypi
Last active February 16, 2019 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gojimmypi/b570c4c0dab4a5d65d03c89071e9d037 to your computer and use it in GitHub Desktop.
Save gojimmypi/b570c4c0dab4a5d65d03c89071e9d037 to your computer and use it in GitHub Desktop.
manual install of sdcc precompiled binaries
#!/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