Displaying 2 results from an estimated 2 matches for "72849b1".
2013 May 29
0
[LLVMdev] compiler-rt tests in cmake?
...the just-built-clang and that the new build directory be in a
sibling directory. But as you mentioned, we can build compiler-rt with a
any recent version of gcc or clang. Here's the change I'm looking for:
diff --git a/cmake/platforms/Android.cmake b/cmake/platforms/Android.cmake
index 72849b1..5f732ce 100644
--- a/cmake/platforms/Android.cmake
+++ b/cmake/platforms/Android.cmake
@@ -11,8 +11,15 @@
# make <target>
SET(CMAKE_SYSTEM_NAME Linux)
+
+IF(NOT CMAKE_C_COMPILER)
SET(CMAKE_C_COMPILER ${CMAKE_BINARY_DIR}/../bin/clang)
+ENDIF()
+
+IF(NOT CMAKE_CXX_COMPILER)
SET(CMAKE_CXX_...
2013 May 28
4
[LLVMdev] compiler-rt tests in cmake?
Okay, dropping gcc 4.4.3 makes sense. How do you feel about using clang
3.2 (and the upcoming 3.3) instead of tip-of-the-trunk clang? It looks
like everything works great, but that you just need to make those UB tests
'unsupported' since they fail with "libclang_rt.ubsan was built without
__int128 support".
Thanks,
Greg
On Mon, May 27, 2013 at 12:36 AM, Alexey Samsonov