Revert "Fix linking on Linux."

This reverts commit acf8782786.
This commit is contained in:
David Anderson 2020-05-26 20:04:55 -07:00
parent acf8782786
commit 49669f6585

View File

@ -390,7 +390,7 @@ class SMConfig(object):
cxx.linkflags += ['-static-libgcc']
elif cxx.family == 'clang':
cxx.linkflags += ['-lgcc_eh']
cxx.linkflags += ['-lstdc++', '-static-libstdc++']
cxx.linkflags += ['-static-libstdc++']
def configure_mac(self, cxx):
cxx.defines += ['OSX', '_OSX', 'POSIX', 'KE_ABSOLUTELY_NO_STL']