我需要在PC / Mac中构建boost程序选项静态库。
它只有11个cpp源代码,因此我希望按g++ SOURCE_CODE
进行编译,但我收到类似utf8_codecvt_facet.cpp:15:47: error: ../../detail/utf8_codecvt_facet.cpp: No such file or directory
的错误。
如何在不使用bjam的情况下构建boost库(程序选项)?有没有办法看到bjam用于两台Mac / PC的编译器选项/命令?
答案 0 :(得分:3)
bjam -n
将打印命令而不是执行它们。 bjam -d 2
将在执行命令时打印它们。
http://www.boost.org/boost-build2/doc/html/jam/usage.html
http://www.boost.org/boost-build2/doc/html/bbv2/overview/invocation.html