Switch to libc++ on mac.

This commit is contained in:
David Anderson 2021-07-11 20:51:19 -07:00
parent af32a9790b
commit 1a1b16614a

View File

@ -322,10 +322,10 @@ class AMXXConfig(object):
'-mmacosx-version-min=10.5',
'-arch', 'i386',
'-lstdc++',
'-stdlib=libstdc++',
'-stdlib=libc++',
'-framework', 'CoreServices',
]
cxx.cxxflags += ['-stdlib=libstdc++']
cxx.cxxflags += ['-stdlib=libc++']
def configure_windows(self, cxx):
cxx.defines += ['WIN32', '_WINDOWS']