升级到 Mojave 后,Pybind11 不起作用或 C++ 无法编译:-lstdc++ 未找到

Pybind11 doesn't work or C++ doesn't compile after upgrading to Mojave: -lstdc++ not found

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

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

我是不是漏掉了 linker 命令?我在网上搜索过,但找不到解决方案。

我真的找到了答案。我只需要做

export MACOSX_DEPLOYMENT_TARGET=10.9

安装顺利。