gcc在Mac上找不到标准库(从要求安装python软件包时)

时间:2019-02-25 10:51:47

标签: python-3.x macos gcc

由于我的gcc缺少标准库,我遇到了一个问题。

for /f "delims=" %%i in (id.txt) do set "requestid=%%i" & goto :endfor
:endfor

最初我有一个不同的问题。关于找不到类型 copying blpapi/schema.py -> build/lib.macosx-10.7-x86_64-3.7/blpapi running build_ext building 'blpapi._internals' extension creating build/temp.macosx-10.7-x86_64-3.7 creating build/temp.macosx-10.7-x86_64-3.7/blpapi gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/anaconda3/envs/invtools/include -arch x86_64 -I/anaconda3/envs/invtools/include -arch x86_64 -I/usr/local/lib/blpapi_cpp_3.8.1.1/include -I/anaconda3/envs/invtools/include/python3.7m -c blpapi/internals_wrap.cxx -o build/temp.macosx-10.7-x86_64-3.7/blpapi/internals_wrap.o warning: include path for stdlibc++ headers not found; pass '-std=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found] blpapi/internals_wrap.cxx:3101:10: fatal error: 'stdexcept' file not found #include <stdexcept> ^~~~~~~~~~~ 1 warning and 1 error generated. error: command 'gcc' failed with exit status 1 的事情。并且Sample screenshot from modal window建议删除uint8_t中的文件。这就是现在的原因。这是因为现在没有标准库。我安装了此/usr/local/include/,现在/Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg中有标准库。我将其复制到/usr/include无济于事。 /usr/local/indclude/告诉我:

brew link gcc

如何解决此问题?

0 个答案:

没有答案