summarylogtreecommitdiffstats
path: root/toolchain-mingw.cmake
diff options
context:
space:
mode:
authorMichel Zou2018-04-30 20:42:44 +0200
committerMichel Zou2018-04-30 20:42:44 +0200
commit458db83cf1d58680c9af360ff55b5b1978dbad2c (patch)
treee0e076f35bce17fdc9f9e90a80c8b814d26aa84b /toolchain-mingw.cmake
parentc12ee8158fd2e474b3702a8194c99bb9dc7f455d (diff)
downloadaur-458db83cf1d58680c9af360ff55b5b1978dbad2c.tar.gz
Revert "use cc/c++"
This reverts commit c12ee8158fd2e474b3702a8194c99bb9dc7f455d.
Diffstat (limited to 'toolchain-mingw.cmake')
-rw-r--r--toolchain-mingw.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain-mingw.cmake b/toolchain-mingw.cmake
index 3d29759fcf8d..6e0136a9013a 100644
--- a/toolchain-mingw.cmake
+++ b/toolchain-mingw.cmake
@@ -2,8 +2,8 @@ set (CMAKE_SYSTEM_NAME Windows)
set (CMAKE_SYSTEM_PROCESSOR @PROCESSOR@)
# specify the cross compiler
-set (CMAKE_C_COMPILER @TRIPLE@-cc)
-set (CMAKE_CXX_COMPILER @TRIPLE@-c++)
+set (CMAKE_C_COMPILER @TRIPLE@-gcc)
+set (CMAKE_CXX_COMPILER @TRIPLE@-g++)
# where is the target environment
set (CMAKE_FIND_ROOT_PATH /usr/@TRIPLE@)