Added libstdc++ to the libraries to be linked with.

git-svn-id: http://llvm-py.googlecode.com/svn/trunk@56 8d1e9007-1d4e-0410-b67e-1979fd6579aa
This commit is contained in:
mdevan.foobar 2008-12-13 10:15:07 +00:00
commit d110608a09

View file

@ -85,7 +85,7 @@ def call_setup(llvm_config):
'instrumentation', 'ipa', 'ipo', 'transformutils',
'asmparser' ])
std_libs = [ 'pthread', 'm' ]
std_libs = [ 'pthread', 'm', 'stdc++' ]
if not ("openbsd" in sys.platform or "freebsd" in sys.platform):
std_libs.append("dl")