| 1 # |
1 # |
| 2 # gcc toolchain config |
2 # gcc toolchain config |
| 3 # |
3 # |
| 4 |
4 |
| |
5 # How to use: |
| |
6 # - remove empty assignments and variables that you do not need |
| |
7 # - optionally: add toolchain specific variables and/or options |
| |
8 # - or: remove this file entirely (cc.mk or defaults will apply) |
| |
9 # - remove this comment |
| 5 CFLAGS = |
10 CFLAGS = |
| 6 CXXFLAGS = |
11 CXXFLAGS = |
| 7 DEBUG_CFLAGS = -g |
12 DEBUG_CFLAGS = -g |
| 8 DEBUG_CXXFLAGS = -g |
13 DEBUG_CXXFLAGS = -g |
| 9 RELEASE_CFLAGS = -O3 -DNDEBUG |
14 RELEASE_CFLAGS = -O3 -DNDEBUG |