From 930d21a855a28134996b42999add637ae15720cd Mon Sep 17 00:00:00 2001 From: Eric Gillingham Date: Thu, 19 Mar 2015 10:21:52 -0700 Subject: [PATCH] Fix __gxx_personality_v0: referenced symbol not found error on Solaris Tested on a Solaris 10 machine, original patch and bug report from http://sourceforge.net/p/mysql-python/bugs/334/ Closes #35 --- setup_posix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup_posix.py b/setup_posix.py index 3cb44f49..8d1a13eb 100644 --- a/setup_posix.py +++ b/setup_posix.py @@ -90,6 +90,7 @@ def get_config(): ] create_release_file(metadata) del metadata['version_info'] + libraries.append('stdc++') ext_options = dict( name = "_mysql", library_dirs = library_dirs,