在升级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
我是否缺少链接器命令?我已经在网上搜索过,但找不到解决方案。
答案 0 :(得分:0)
我实际上找到了答案。我只需要做
export MACOSX_DEPLOYMENT_TARGET=10.9
安装顺利。