From d110608a09fc659cffcaf2e5c6076d8fa2cd8987 Mon Sep 17 00:00:00 2001 From: "mdevan.foobar" Date: Sat, 13 Dec 2008 10:15:07 +0000 Subject: [PATCH] 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ace7ab..100524a 100644 --- a/setup.py +++ b/setup.py @@ -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")