summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2014-10-17 18:32:36 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2014-10-17 18:32:36 +0000
commit560e2700e257d34a3d79ef7e49dd1c572523ab36 (patch)
treed241edc88a4709120c4f2f6bc755458052763c75 /cmake
parentb6591042cd1f267b3b12adc584b744cd4c784e49 (diff)
Disable ccache for go tests.
Should fix llvm-clang-lld-x86_64-debian-fast bot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/AddLLVM.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 8a65693fea2..284912c19c1 100644
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -651,8 +651,8 @@ function(configure_lit_site_cfg input output)
set(HOST_OS ${CMAKE_SYSTEM_NAME})
set(HOST_ARCH ${CMAKE_SYSTEM_PROCESSOR})
- set(HOST_CC "${CMAKE_C_COMPILER}")
- set(HOST_CXX "${CMAKE_CXX_COMPILER}")
+ set(HOST_CC "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}")
+ set(HOST_CXX "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}")
configure_file(${input} ${output} @ONLY)
endfunction()