[compiler-rt] r267912 - [CMake] Adding some missing CMake includes. NFC.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 28 11:22:02 PDT 2016


Author: cbieneman
Date: Thu Apr 28 13:22:01 2016
New Revision: 267912

URL: http://llvm.org/viewvc/llvm-project?rev=267912&view=rev
Log:
[CMake] Adding some missing CMake includes. NFC.

This happens to be working now because the includes exist in another CMake file that is included before this one. That will change with upcoming refactoring.

Modified:
    compiler-rt/trunk/cmake/Modules/CompilerRTUtils.cmake

Modified: compiler-rt/trunk/cmake/Modules/CompilerRTUtils.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/CompilerRTUtils.cmake?rev=267912&r1=267911&r2=267912&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/CompilerRTUtils.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/CompilerRTUtils.cmake Thu Apr 28 13:22:01 2016
@@ -1,3 +1,6 @@
+include(CMakePushCheckState)
+include(CheckSymbolExists)
+
 # Because compiler-rt spends a lot of time setting up custom compile flags,
 # define a handy helper function for it. The compile flags setting in CMake
 # has serious issues that make its syntax challenging at best.




More information about the llvm-commits mailing list