summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-02-08 21:23:13 (GMT)
committerAlex Neundorf <neundorf@kde.org>2011-02-23 20:15:41 (GMT)
commit64e66ebdc8449aa92f1a0aa66d649aedab0af92d (patch)
treee20c27fe6edad88fe38bae3906af0d46a59434e3 /Modules/Compiler
parent38f92bfbe19afa18f92d336b69576bcba5d1cc35 (diff)
downloadCMake-64e66ebdc8449aa92f1a0aa66d649aedab0af92d.zip
CMake-64e66ebdc8449aa92f1a0aa66d649aedab0af92d.tar.gz
CMake-64e66ebdc8449aa92f1a0aa66d649aedab0af92d.tar.bz2
Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER
Alex
Diffstat (limited to 'Modules/Compiler')
-rw-r--r--Modules/Compiler/GNU-ASM.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/GNU-ASM.cmake b/Modules/Compiler/GNU-ASM.cmake
index bec212f..aa21584 100644
--- a/Modules/Compiler/GNU-ASM.cmake
+++ b/Modules/Compiler/GNU-ASM.cmake
@@ -3,6 +3,6 @@ include(Compiler/GNU)
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S;asm)
-set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>")
+set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>")
__compiler_gnu(ASM)