]> granicus.if.org Git - clang/commit
Remove TypeNodes.def from the modulemap.
authorJohn McCall <rjmccall@apple.com>
Wed, 2 Oct 2019 01:02:27 +0000 (01:02 +0000)
committerJohn McCall <rjmccall@apple.com>
Wed, 2 Oct 2019 01:02:27 +0000 (01:02 +0000)
commitc09cbfd881439b7a9e198c95586b9c45d45b4f30
tree38a90c3e57560f84b6461a70299f8f5424abfc0e
parent887365831e8c8b4f668fa58bf847ce3c633081d9
Remove TypeNodes.def from the modulemap.

We currently just look for files named in the modulemap in its
associated source directory.  This means that we can't name
generated files, like TypeNodes.def now is, which means we can't
explicitly mark it as textual.  But fortunately that's okay
because (as I understand it) the most important purpose of naming
the header in the modulemap is to ensure that it's not treated as
public, and the search for public headers also only considers
files in the associated source directory.  This isn't an elegant
solution, since among other things it means that a build which
wrote the generated files directly into the source directory would
result in something that wouldn't build as a module, but that's
a problem for all our other generated files as well.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@373416 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/module.modulemap