how to use standard library with C++ modules? (eg:

2019-04-29 12:16发布

The basic example given in How do I use C++ modules in Clang? works for me but doesn't import the standard library (eg via import std.stdio;); after going over http://clang.llvm.org/docs/Modules.html it wasn't clear how to use the standard library in a C++ module, eg:

// foo.cppm:
export module foo;
// works: #include <stdio.h>
// none of these work:
import std.stdio;
import std.io;
import std;

export void test_foo(){
  printf("hello world\n");
}

this gives an error: clang++ -std=c++17 -fmodules-ts --precompile foo.cppm -o foo.pcm foo.cppm:4:8: fatal error: module 'std.stdio' not found

NOTE: clang++ --version Apple LLVM version 9.1.0 (clang-902.0.39.1) Target: x86_64-apple-darwin17.4.0 I'm on OSX. I also tried clang from brew install llvm and also didn't work.

What's the simplest way to make something like this work?

1条回答
仙女界的扛把子
2楼-- · 2019-04-29 12:47

Clang does not currently support import std.io syntax in C or C++.

From clang's module documentation:

At present, there is no C or C++ syntax for import declarations. Clang will track the modules proposal in the C++ committee. See the section 'Includes as imports' to see how modules get imported today.

When you pass the -fmodules flag, #include statements are automatically translated to import.

From the Includes as imports section:

modules automatically translate #include directives into the corresponding module import. For example, the include directive

#include <stdio.h>

will be automatically mapped to an import of the module std.io.

查看更多
登录 后发表回答