diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-28 12:02:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-28 17:38:31 +0200 |
commit | 6d4a992e2b817cc14276c68e0321edaf66450cf3 (patch) | |
tree | 3f792b98d112ca4a58cfd0d653d6d65fd395b8bd /toolchain/gcc/Makefile.in | |
parent | 13a10a095949e4304f19ea3d5a78b2f3ce2bd6b6 (diff) | |
download | buildroot-novena-6d4a992e2b817cc14276c68e0321edaf66450cf3.tar.gz buildroot-novena-6d4a992e2b817cc14276c68e0321edaf66450cf3.zip |
gcc: remove option on SJLJ exceptions
This is a very advanced option, and it seems, according to
http://choices.cs.uiuc.edu/exceptions.pdf that SJLJ exceptions aren't
really interesting.
Users really interested by this can always use the
BR2_EXTRA_GCC_CONFIG_OPTIONS is they want.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'toolchain/gcc/Makefile.in')
-rw-r--r-- | toolchain/gcc/Makefile.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/toolchain/gcc/Makefile.in b/toolchain/gcc/Makefile.in index 9537e9dc7..b6ebca902 100644 --- a/toolchain/gcc/Makefile.in +++ b/toolchain/gcc/Makefile.in @@ -13,10 +13,6 @@ else GCC_SNAP_DATE:= endif -ifeq ($(BR2_GCC_USE_SJLJ_EXCEPTIONS),y) -GCC_USE_SJLJ_EXCEPTIONS:=--enable-sjlj-exceptions -endif - ifeq ($(BR2_SOFT_FLOAT),y) SOFT_FLOAT_CONFIG_OPTION:=--with-float=soft ifeq ($(BR2_arm)$(BR2_armeb),y) # only set float-abi for arm |