From 64e66ebdc8449aa92f1a0aa66d649aedab0af92d Mon Sep 17 00:00:00 2001 From: Alex Neundorf Date: Tue, 8 Feb 2011 22:23:13 +0100 Subject: [PATCH] Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER Alex --- Modules/Compiler/GNU-ASM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Compiler/GNU-ASM.cmake b/Modules/Compiler/GNU-ASM.cmake index bec212ff6..aa2158429 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 " -o -c ") +set(CMAKE_ASM_COMPILE_OBJECT " -o -c ") __compiler_gnu(ASM)