These options will allow the SCUDO standalone to be built with custom
headers. Specifically, this patch will enable building with the
LLVM-libc headers.
Details
Details
- Reviewers
abrachet - Commits
- rGb9663ebbf825: [SCUDO] add cmake options for custom sysroot
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
compiler-rt/lib/scudo/standalone/CMakeLists.txt | ||
---|---|---|
145 | I think you can do include_directories(SYSTEM ${COMPILER_RT_BINARY_DIR}/../libc/include/) and then you won't need "-I ${COMPILER_RT_BINARY_DIR}/../libc/include/". But not sure |
Comment Actions
remove redundant cflag
compiler-rt/lib/scudo/standalone/CMakeLists.txt | ||
---|---|---|
145 | ah, you're right. Fixed |
I think you can do include_directories(SYSTEM ${COMPILER_RT_BINARY_DIR}/../libc/include/) and then you won't need "-I ${COMPILER_RT_BINARY_DIR}/../libc/include/". But not sure