forked from OSchip/llvm-project
Make CMake generate isl/stdint.h
ISL's ./configure examines the system for the stdint.h to include and creates a header file that points to it. On C99-compatible system #include <stdint.h> is always valid such there no need for system introspection. This should unbreak the build bots. llvm-svn: 240315
This commit is contained in:
parent
4c4628c48c
commit
9a4e22eea1
|
@ -77,6 +77,7 @@ check_c_source_compiles("
|
|||
# Write configure result
|
||||
configure_file("External/gitversion.h.cmake" "${ISL_BINARY_DIR}/gitversion.h")
|
||||
configure_file("External/isl_config.h.cmake" "${ISL_BINARY_DIR}/isl_config.h")
|
||||
file(WRITE "${ISL_BINARY_DIR}/isl/stdint.h" "#include <stdint.h>")
|
||||
|
||||
# ISL files to compile
|
||||
set (ISL_FILES
|
||||
|
|
Loading…
Reference in New Issue