disable visibility for powerpc-apple-darwin8 build, otherwise we get errors when linking the test

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-05-31 23:41:27 +00:00
parent c226adeedb
commit d4df635acb

View File

@@ -89,7 +89,12 @@
<steps> <steps>
<checkout/> <checkout/>
<setup cppunit-options="--host=powerpc-apple-darwin8"/> <setup cppunit-options="--host=powerpc-apple-darwin8"/>
<configure options="--host=powerpc-apple-darwin8"/> <!--
The compiler used suffers from a bug in its visibility support
and doesn't find some virtual inline functions during linking if it
is used, so disable it.
-->
<configure options="--host=powerpc-apple-darwin8 --disable-visibility"/>
<compile-all/> <compile-all/>
</steps> </steps>
</build> </build>