[compiler-rt] r267941 - [CMake] Adding another missing include. NFC.
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 28 14:16:46 PDT 2016
Author: cbieneman
Date: Thu Apr 28 16:16:45 2016
New Revision: 267941
URL: http://llvm.org/viewvc/llvm-project?rev=267941&view=rev
Log:
[CMake] Adding another missing include. NFC.
This also works fine today, but will break with my upcoming refactoring.
Modified:
compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake
Modified: compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake?rev=267941&r1=267940&r2=267941&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/CompilerRTDarwinUtils.cmake Thu Apr 28 16:16:45 2016
@@ -1,3 +1,5 @@
+include(CMakeParseArguments)
+
# On OS X SDKs can be installed anywhere on the base system and xcode-select can
# set the default Xcode to use. This function finds the SDKs that are present in
# the current Xcode.
More information about the llvm-commits
mailing list