commit | d462679e4f7fc0313fff23b40eb765f4ea2d8ed1 | [log] [tgz] |
---|---|---|
author | Chris Bieneman <beanz@apple.com> | Wed Sep 16 18:29:52 2015 +0000 |
committer | Chris Bieneman <beanz@apple.com> | Wed Sep 16 18:29:52 2015 +0000 |
tree | 8369e19ca5bc8fb876af033d4dc65b8a5a21ba79 | |
parent | d0966a39a94f91835ab3a311d5499c47a647a2b9 [diff] [blame] |
[CMake] Make the sample program in darwin_test_archs have a symbol it needs to link. This resolves an issue building compiler-rt using Xcode 7 that was reported on llvm-dev: http://lists.llvm.org/pipermail/llvm-dev/2015-September/090245.html git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@247833 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/cmake/Modules/CompilerRTDarwinUtils.cmake b/cmake/Modules/CompilerRTDarwinUtils.cmake index 635e4b7..9b7a028 100644 --- a/cmake/Modules/CompilerRTDarwinUtils.cmake +++ b/cmake/Modules/CompilerRTDarwinUtils.cmake
@@ -49,7 +49,7 @@ set(archs ${ARGN}) message(STATUS "Finding valid architectures for ${os}...") set(SIMPLE_CPP ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/src.cpp) - file(WRITE ${SIMPLE_CPP} "#include <iostream>\nint main() { return 0; }\n") + file(WRITE ${SIMPLE_CPP} "#include <iostream>\nint main() { std::cout << std::endl; return 0; }\n") set(os_linker_flags) foreach(flag ${DARWIN_${os}_LINKFLAGS})