From: dmalcolm Date: Wed, 7 Aug 2013 01:25:22 +0000 (+0000) Subject: 2013-08-07 David Malcolm X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c32a664f1e0a97965fbaceca249b068c53be773f;p=thirdparty%2Fgcc.git 2013-08-07 David Malcolm * lib/plugin-support.exp (plugin-test-execute): Add -fno-rtti to optstr when building plugins on darwin. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201552 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0b1c1e8082f3..2f8197f19dcf 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-08-07 David Malcolm + + * lib/plugin-support.exp (plugin-test-execute): Add -fno-rtti + to optstr when building plugins on darwin. + 2013-08-06 Martin Jambor PR tree-optimization/57539 diff --git a/gcc/testsuite/lib/plugin-support.exp b/gcc/testsuite/lib/plugin-support.exp index 017f3fd24fa0..54c51fe686ef 100644 --- a/gcc/testsuite/lib/plugin-support.exp +++ b/gcc/testsuite/lib/plugin-support.exp @@ -101,7 +101,7 @@ proc plugin-test-execute { plugin_src plugin_tests } { set optstr [concat $optstr " $op"] } } - set optstr [concat $optstr "-DIN_GCC -fPIC -shared -undefined dynamic_lookup"] + set optstr [concat $optstr "-DIN_GCC -fPIC -shared -fno-rtti -undefined dynamic_lookup"] } else { set plug_cflags $PLUGINCFLAGS set optstr "$includes $extra_flags -DIN_GCC -fPIC -shared -fno-rtti"