我可以使用build2构建没有 c++ 模块的 c++ 项目,但是当我尝试使用 c++ 模块配置和使用 build2 时,出现“编译器不支持模块”错误。
我确信我的编译器能够构建模块,因为我可以使用这些命令手动构建:
clang++ --std=c++17 -fmodules-ts --precompile foo.cppm -o foo.pcm
clang++ --std=c++17 -fmodules-ts --precompile foo2.cppm -o foo2.pcm
clang++ --std=c++17 -fmodules-ts -c foo.pcm -o foo.o
clang++ --std=c++17 -fmodules-ts -c foo2.pcm -o foo2.o
clang++ --std=c++17 -fmodules-ts -fprebuilt-module-path=. foo.o foo2.o bar.cpp
我的 clang 版本是 7.0.0:
$ clang++ --version
clang version 7.0.0- (trunk)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
为了在 build2 中启用模块支持,我在 root 中添加了以下几行buildfile
:
cxx.std = experimental
using cxx
assert $cxx.features.modules 'compiler does not support modules'
mxx{*}: extension = mxx
cxx{*}: extension = cxx
有什么问题?这是我第一次使用 build2,所以我可能会遗漏一些非常简单的东西。