diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-07 16:59:51 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-07 16:59:51 +0100 |
commit | d3b021b5410aeb3f62a7225dccb3f6f2617d4c38 (patch) | |
tree | e4313904bd4622b4b9c6ec8dc2fa24a970c9bd60 /toolchain/uClibc | |
parent | a34589bab665fdf945eaa22d756b45418763deea (diff) |
add toolchain settings menu point
- gdb compilation can be disabled
- gcc languages (c++/java) can be enabled/disabled
- gcc stack smashing protection can be enabled/disabled
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r-- | toolchain/uClibc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index 194bce39a..e04985dac 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -19,6 +19,9 @@ $(WRKBUILD)/.headers: ifneq ($(ADK_DEBUG),) $(SED) 's,DOSTRIP,DODEBUG,' ${WRKBUILD}/.config endif +ifneq ($(ADK_TOOLCHAIN_GCC_SSP),) + $(SED) 's,.*UCLIBC_HAS_SSP,UCLIBC_HAS_SSP=y,' ${WRKBUILD}/.config +endif $(MAKE) ${UCLIBC_MAKEOPTS} -C $(WRKBUILD) \ PREFIX=$(TOOLCHAIN_SYSROOT) \ DEVEL_PREFIX=/usr/ \ |