diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-05-21 02:46:14 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-05-21 02:46:14 +0000 |
commit | 56f9c191e1c41ab4fe61a9b9ad6bf4fc1c987837 (patch) | |
tree | 31e41f9ef5bbd9ca52d25a546d6f591a31a98cf8 /llvm/include/llvm-c | |
parent | 773649296da935b62f9c62e42b08f51f09c196c2 (diff) | |
download | bcm5719-llvm-56f9c191e1c41ab4fe61a9b9ad6bf4fc1c987837.tar.gz bcm5719-llvm-56f9c191e1c41ab4fe61a9b9ad6bf4fc1c987837.zip |
[modules] Add module maps for LLVM. These are not quite ready for prime-time
yet, but only a few more Clang patches need to land. (I have 'ninja check'
passing locally.)
llvm-svn: 209269
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/module.modulemap | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/module.modulemap b/llvm/include/llvm-c/module.modulemap new file mode 100644 index 00000000000..2bcdbc17a5c --- /dev/null +++ b/llvm/include/llvm-c/module.modulemap @@ -0,0 +1,5 @@ +module LLVM_C { + requires cplusplus + umbrella "." + module * { export * } +} |