我正在尝试从以下位置的NIST安装SCTK:https://www.nist.gov/itl/iad/mig/tools
我运行了一个make all
命令,并遇到了有关不是整数名称空间成员的整数类型的错误。 ({uint16_t
,uint32_t
,uint64_t
等)
/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint:159:8: error: no
member named 'uint16_t' in the global namespace
using::uint16_t;
~~^
我不确定为什么会出现这些错误,我们将不胜感激任何建议。我正在使用:
---安装XCODE之后---
在查看了Error: "no member named 'uint8_t' in the global namespace" on MacOS之后,我安装了XCode,但是现在我得到的错误与上面几乎相同,只是路径不同:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/cstdint:159:8: error:
no member named 'uint16_t' in the global namespace
using::uint16_t;
~~^