升级到Mojave后,Pybind11无法正常工作或C ++无法编译:-lstdc ++未找到

时间:2018-11-13 19:11:18

标签: c++ macos-mojave pybind11

在升级MacOS之前,我能够安装pybind11示例here。但是,将MacOS升级到Mojave之后,在该链接上编译相同的示例时,看到以下错误:

clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1

我是否缺少链接器命令?我已经在网上搜索过,但找不到解决方案。

1 个答案:

答案 0 :(得分:0)

我实际上找到了答案。我只需要做

export MACOSX_DEPLOYMENT_TARGET=10.9

安装顺利。