I'm currently messing around with llvm 17 on windows and since this is the bleeding edge, there aren't any resources online for this.
Has anyone already done this?
main.cpp
import std;
int main()
{
std::cout << "Hello, World!"
}
PS C:\Users\samsk\mtest> clang++ -std=c++23 -fmodules main.cpp
main.cpp:1:8: fatal error: module 'std' not found
1 | import std;
| ~~~~~~~^~~
1 error generated.
PS C:\Users\samsk\mtest>
just as a note, creating my own custom modules with cmake works just fine (3.28-rc1 is available now!) it's just that import std doesn't work.
