1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/include/llvm/module.modulemap.build
Bruno Cardoso Lopes 6bb62ee96b [Modules] Add module for Config/llvm-config.h
Besides all the goodness from modularizing a header, this is necessary
to compile ToT with modules with the clang host compiler from Xcode 9 in
macOS 10.13, which our bots don't use yet.

rdar://problem/35038151

llvm-svn: 316414
2017-10-24 06:18:52 +00:00

14 lines
301 B
Plaintext

// This is copied into the build area for a $src != $build compilation.
module LLVM_Support_DataTypes {
header "Support/DataTypes.h"
export *
}
module LLVM_Config_ABI_Breaking {
header "Config/abi-breaking.h"
export *
}
module LLVM_Config_Config {
header "Config/llvm-config.h"
export *
}