如何在gcc中使用模块std

xhv8bpkk  于 2023-05-07  发布在  其他
关注(0)|答案(1)|浏览(288)

以下测试程序

import std;
int main() {}

使用gcc-14编译

/usr/local/bin/g++  -g -std=c++23 -fconcepts -fmodules-ts -O3 -Wall -Wextra test400.cc --output test400

给出以下错误:

std: error: failed to read compiled module: No such file or directory
std: note: compiled module file is 'gcm.cache/std.gcm'
std: note: imports must be built before being imported
std: fatal error: returning to the gate for a mechanical issue

标准库模块std应该是可用的,但显然不是。
除标题单元外:这是一个方法来创建std模块由我自己?

相关问题