Stosuję te wszystkie opcje, niestety nie działa
g++ -std=c++26 -fmodules -freflection -fsearch-include-path -fmodule-only -c bits/std.cc
clang++: warning: argument unused during compilation: '-freflection' [-Wunused-command-line-argument]
<source>:1:8: fatal error: module 'std' not found
1 | import std;
| ^~~~
1 error generated.
import std;
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}