We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c8240 commit cc18379Copy full SHA for cc18379
setup.py
@@ -158,6 +158,8 @@ def build_extension(self, ext):
158
if "std=" not in os.environ.get("CXXFLAGS", ""):
159
ext.extra_compile_args.append("-std=c++17")
160
ext.extra_compile_args.append("-D_GLIBCXX_USE_CXX11_ABI=0")
161
+ if sys.platform == "darwin":
162
+ ext.extra_compile_args.append("-mmacosx-version-min=10.13")
163
164
ext.library_dirs.append(
165
os.path.join(current_dir, self.build_lib, "snowflake", "connector")
0 commit comments