diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-23 11:37:39 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-23 11:37:39 +0000 |
commit | a56dab661a115e6cc9f4361d5ff831d998cb9f00 (patch) | |
tree | ba5fc6be30de05c8894b7e9e89adbe6f4479b367 /toolchain/gcc/Config.in | |
parent | f6e4eb15bc7b5991a484370ae3765eb79becea4b (diff) | |
download | upstream-a56dab661a115e6cc9f4361d5ff831d998cb9f00.tar.gz upstream-a56dab661a115e6cc9f4361d5ff831d998cb9f00.tar.bz2 upstream-a56dab661a115e6cc9f4361d5ff831d998cb9f00.zip |
introduce option to enable setjump()/longjump() based C++ exceptions (#9185, patch from David Kuehling via Qi hardware)
SVN-Revision: 27261
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index c2d17cbaf8..e6434d0f7d 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -66,6 +66,15 @@ config TLS_SUPPORT help Enable Thread-local storage support +config SJLJ_EXCEPTIONS + bool + prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS + default n + help + Use old setjump()/longjump() exceptions instead of the newer + frame unwinding exceptions handling routines. Warning: increases + code size and runtime memory usage. + config INSTALL_LIBSTDCPP bool prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS |