From fe5b8fd3f50bda19e9a286bf2f8f619d8b5f2768 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 23 Aug 2015 14:00:57 -0500 Subject: [PATCH] Add -mmacosx-version-min=10.7 to OSX build options (suggested by Gregor Thalhammer) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d2148f67..306d15f3 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def get_config_schema(): default_libs = [] default_cxxflags = default_cxxflags + [ - '-stdlib=libc++', + '-stdlib=libc++', '-mmacosx-version-min=10.7', '-arch', 'i386', '-arch', 'x86_64' ] -- GitLab