Skip to content
Snippets Groups Projects
Commit af02e2ac authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

Makefile.vars: Document TARGET_TRIPLE

parent 91904a46
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,8 @@ export BINDIRBASE # This is the folder where the application should b ...@@ -22,7 +22,8 @@ export BINDIRBASE # This is the folder where the application should b
export BINDIR # This is the folder where the application should be built in. export BINDIR # This is the folder where the application should be built in.
export APPDIR # The base folder containing the application export APPDIR # The base folder containing the application
export PREFIX # The prefix of the toolchain commands, e.g. "arm-non-eabi-" or "msp430-". export TARGET_TRIPLE # The target platform name, in GCC triple notation, e.g. "arm-none-eabi", "i686-elf", "avr"
export PREFIX # The prefix of the toolchain commands, usually "$(TARGET_TRIPLE)-", e.g. "arm-none-eabi-" or "msp430-".
export CC # The C compiler to use. export CC # The C compiler to use.
export CXX # The CXX compiler to use. export CXX # The CXX compiler to use.
export CFLAGS # The compiler flags. Must only ever be used with `+=`. export CFLAGS # The compiler flags. Must only ever be used with `+=`.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment