[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 04/04: volk: fixing up output message to pr
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 04/04: volk: fixing up output message to print c flags and asm flags used by Volk next to each other. |
Date: |
Wed, 1 Oct 2014 17:21:49 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit 029079cf5cee92c64755318b4fe5d46d45b61b7a
Author: Tom Rondeau <address@hidden>
Date: Wed Oct 1 13:20:24 2014 -0400
volk: fixing up output message to print c flags and asm flags used by Volk
next to each other.
---
volk/lib/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/volk/lib/CMakeLists.txt b/volk/lib/CMakeLists.txt
index 99aea9b..37915e5 100644
--- a/volk/lib/CMakeLists.txt
+++ b/volk/lib/CMakeLists.txt
@@ -406,7 +406,6 @@ if(${CMAKE_VERSION} VERSION_GREATER "2.8.9")
# if we find one that matches our current system architecture
# set up the assembler flags and include the source files
foreach(ARCH ${ASM_ARCHS_AVAILABLE})
- message(STATUS "--==>> -CFLAGS1: ${FULL_C_FLAGS}")
string(REGEX MATCH "${ARCH}" ASM_ARCH "${FULL_C_FLAGS}")
if( ASM_ARCH STREQUAL "armv7" )
message(STATUS "---- Adding ASM files") # we always use ATT syntax
@@ -423,6 +422,7 @@ if(${CMAKE_VERSION} VERSION_GREATER "2.8.9")
endif()
enable_language(ASM)
set(CMAKE_ASM_FLAGS ${ARCH_ASM_FLAGS})
+ message(STATUS "c flags: ${FULL_C_FLAGS}")
message(STATUS "asm flags: ${CMAKE_ASM_FLAGS}")
endforeach(ARCH)