[compiler-rt] r331009 - Revert "[CMake] Make simple source used for CMake checks a C file"

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 26 18:25:32 PDT 2018


Author: phosek
Date: Thu Apr 26 18:25:32 2018
New Revision: 331009

URL: http://llvm.org/viewvc/llvm-project?rev=331009&view=rev
Log:
Revert "[CMake] Make simple source used for CMake checks a C file"

This reverts commit r331003 which breaks sanitizer bots because of
missing 32-bit libstdc++ library.

Modified:
    compiler-rt/trunk/cmake/config-ix.cmake

Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=331009&r1=331008&r2=331009&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Thu Apr 26 18:25:32 2018
@@ -125,7 +125,7 @@ set(COMPILER_RT_SUPPORTED_ARCH)
 # platform. We use the results of these tests to build only the various target
 # runtime libraries supported by our current compilers cross-compiling
 # abilities.
-set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.c)
+set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.cc)
 file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\n#include <stdio.h>\nint main() { printf(\"hello, world\"); }\n")
 
 # Detect whether the current target platform is 32-bit or 64-bit, and setup




More information about the llvm-commits mailing list