llvm-6502/cmake/modules/CrossCompileLLVM.cmake

7 lines
292 B
CMake
Raw Normal View History

# TODO: Build a native tblgen when cross-compiling, if the user
# didn't set LLVM_TABLEGEN. Then, remove this check:
if( CMAKE_CROSSCOMPILING AND ${LLVM_TABLEGEN} STREQUAL "tblgen" )
message(FATAL_ERROR
"Set LLVM_TABLEGEN to the full route to a native tblgen executable")
endif()