我在OsX 10.8.4上安装ITK 4.2.2。我使用Unix Makefiles生成器使用CMake 2.8.11.1构建它。我需要python包装,所以我选择了ITK_WRAP_PYTHON
。在我构建它之后,我转到终端中包含构建文件的目录并输入make
。这一切顺利,直到我收到以下消息:
[ 41%] Generating vcl_complex.xml
In file included from /usr/include/c++/4.2.1/climits:50,
from /usr/include/c++/4.2.1/bits/stl_algobase.h:67,
from /usr/include/c++/4.2.1/bits/char_traits.h:46,
from /usr/include/c++/4.2.1/string:47,
from /Applications/ITK/src/Modules/Core/Common/include/itkMacro.h:46,
from /Applications/ITK/src/Modules/Core/Common/include/itkLightObject.h:21,
from /Applications/ITK/src/Modules/Core/Common/include/itkObject.h:31,
from /Applications/ITK/src/Modules/Core/Common/include/itkCommand.h:21,
from /Applications/ITK/build/Wrapping/Modules/ITKCommon/vcl_complex.cxx:1:
/usr/bin/../lib/clang/4.2/include/limits.h:37:54: error: missing binary operator before token "("
In file included from /usr/include/c++/4.2.1/bits/postypes.h:49,
from /usr/include/c++/4.2.1/iosfwd:49,
from /usr/include/c++/4.2.1/bits/stl_algobase.h:70,
from /usr/include/c++/4.2.1/bits/char_traits.h:46,
from /usr/include/c++/4.2.1/string:47,
from /Applications/ITK/src/Modules/Core/Common/include/itkMacro.h:46,
from /Applications/ITK/src/Modules/Core/Common/include/itkLightObject.h:21,
from /Applications/ITK/src/Modules/Core/Common/include/itkObject.h:31,
from /Applications/ITK/src/Modules/Core/Common/include/itkCommand.h:21,
from /Applications/ITK/build/Wrapping/Modules/ITKCommon/vcl_complex.cxx:1:
/usr/bin/../lib/clang/4.2/include/stdint.h:32:54: error: missing binary operator before token "("
make[2]: *** [Wrapping/Modules/ITKCommon/vcl_complex.xml] Error 1
make[1]: *** [Wrapping/Modules/ITKCommon/CMakeFiles/ITKCommonGccXML.dir/all] Error 2
make: *** [all] Error 2
此时我不确定它是否“有效”,因为它在许多不同的过程中已经从1%多次变为100%,所以我输入了sudo make install
。过了一会儿,我得到了同样的错误。
问题
答案 0 :(得分:0)
GCC-XML(ITK的Python包装中使用的工具)不支持使用OSX 10.8(clang)的编译器。这将需要支持基于Clang的GCC-XML替换,CastXML。