diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-25 22:51:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-25 22:51:50 +0000 |
commit | 202a23b7ac7ccdc760fe6e4cddbbabd9ec8cc81a (patch) | |
tree | 7fb18254fc6c3ac7729b0b76b6fc354cd67efc3d /openwrt/toolchain/gcc/Config.in | |
parent | e964c7072ccb80cd956c47cff2d42ff13e82f301 (diff) | |
download | mtk-20170518-202a23b7ac7ccdc760fe6e4cddbbabd9ec8cc81a.zip mtk-20170518-202a23b7ac7ccdc760fe6e4cddbbabd9ec8cc81a.tar.gz mtk-20170518-202a23b7ac7ccdc760fe6e4cddbbabd9ec8cc81a.tar.bz2 |
enable c++ support in toolchain by default (without sjlj exceptions)
SVN-Revision: 716
Diffstat (limited to 'openwrt/toolchain/gcc/Config.in')
-rw-r--r-- | openwrt/toolchain/gcc/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/toolchain/gcc/Config.in b/openwrt/toolchain/gcc/Config.in index 7d70d06..c6ea128 100644 --- a/openwrt/toolchain/gcc/Config.in +++ b/openwrt/toolchain/gcc/Config.in @@ -48,7 +48,8 @@ config BR2_GCC_VERSION config BR2_GCC_USE_SJLJ_EXCEPTIONS string - default "--enable-sjlj-exceptions" +# default "--enable-sjlj-exceptions" + default "" help Currently the unwind stuff seems to work for staticly linked apps but not dynamic. So use setjmp/longjmp exceptions by default. @@ -63,7 +64,7 @@ config BR2_EXTRA_GCC_CONFIG_OPTIONS config BR2_INSTALL_LIBSTDCPP bool prompt "Build/install c++ compiler and libstdc++?" if CONFIG_DEVEL - default n + default y help Build/install c++ compiler and libstdc++? |