Forked from joegoggins/install and add gcc arm to PATH.sh
Created
April 17, 2021 13:10
-
-
Save kittipat1413/67bbe25d378af06bfacd5a7eaa33d1eb to your computer and use it in GitHub Desktop.
How I installed GCC ARM on my Mac 10.9 Mac Book Pro
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
# Download the file manually from here https://launchpad.net/gcc-arm-embedded | |
# Note: `curl` command doesn't work | |
# I downloaded this one: "gcc-arm-none-eabi-4_7-2013q3-20130916-mac.tar.bz2" | |
# double click it to unzip it | |
# Make a place to install it to | |
mkdir /usr/local/gcc_arm | |
# Move the unzipped stuff there. | |
mv ~/Downloads/gcc-arm-none-eabi-4_7-2013q3 /usr/local/gcc_arm/ | |
# Check out all the purdy binaries, you'll need to build firmware. | |
ls /usr/local/gcc_arm/gcc-arm-none-eabi-4_7-2013q3/bin/ | |
# arm-none-eabi-addr2line arm-none-eabi-gcc-4.7.4 arm-none-eabi-ld.bfd | |
# ... | |
# arm-none-eabi-gcc ... | |
# Peep your current PATH | |
echo $PATH | |
# /usr/local/heroku/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:<BLA BLA BLA> | |
# Change your PATH by appending the "bin" folder of the folder | |
# NOTE: You should also add this line to ~/.bashrc or ~/.bash_profile (in your home directory) | |
# so you don't have to remember to do this every time you want to compile firmware. | |
export PATH="$PATH:/usr/local/gcc_arm/gcc-arm-none-eabi-4_7-2013q3/bin/" | |
# Check to ensure the gcc-arm firmware compiler is available (so `make clean dependents all` will work.) | |
arm-none-eabi-gcc --version | |
# arm-none-eabi-gcc (GNU Tools for ARM Embedded Processors) 4.7.4 20130913 (release) [ARM/embedded-4_7-branch revision 202601] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment