The generated header files live in the build directory's include path.
When targeting a hermetic build we want to make sure we only use headers
generated by the project itself if availible.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
You need this include for all of them if we're building full standalone on the GPU. I'm not sure what a good way to express this is.
libc/test/UnitTest/CMakeLists.txt | ||
---|---|---|
30 | Can we do: if(LLVM_LIBC_FULL_BUILD) # If we are in full build mode, then we should use our own public headers. target_include_directories(${lib} PRIVATE ${LIBC_BUILD_DIR}/include) endif() We don't need the one on line 43? |
Can we do:
We don't need the one on line 43?