[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 05/06: cmake: fixed ICE 3.4 version check f
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 05/06: cmake: fixed ICE 3.4 version check for GCC < 4.7. |
Date: |
Wed, 29 Jan 2014 00:04:26 +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 3c44ba0687b08278a05f75cc576047c298c73281
Author: Tom Rondeau <address@hidden>
Date: Tue Jan 28 17:59:11 2014 -0500
cmake: fixed ICE 3.4 version check for GCC < 4.7.
---
cmake/Modules/FindICE.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/Modules/FindICE.cmake b/cmake/Modules/FindICE.cmake
index 087ee9b..1c84a90 100644
--- a/cmake/Modules/FindICE.cmake
+++ b/cmake/Modules/FindICE.cmake
@@ -116,12 +116,12 @@ if(ICE_ICE AND ICE_ICEUTIL)
execute_process(COMMAND ${CMAKE_CXX_COMPILER} --version
OUTPUT_VARIABLE gcc_version)
string(REGEX MATCH "[0-9].[0-9].[0-9]" gcc_version_num ${gcc_version})
- if(NOT ${gcc_version_num} VERSION_LESS "4.7")
+ if(${gcc_version_num} VERSION_LESS "4.7")
message(STATUS "-- Found GCC version: ${gcc_version_num}")
message(STATUS "-- GCC incompatible with Ice 3.4, disabling
ControlPort")
set(ICE_FOUND FALSE)
return() # exit now
- endif(NOT ${gcc_version_num} VERSION_LESS "4.7")
+ endif(${gcc_version_num} VERSION_LESS "4.7")
endif(CMAKE_COMPILER_IS_GNUCXX)
set(ICE_LIBRARIES ${ICE_LIBRARY})
- [Commit-gnuradio] [gnuradio] branch master updated (300f5fb -> 19d111e), git, 2014/01/28
- [Commit-gnuradio] [gnuradio] 01/06: gr-uhd: add option to uhd_rx_cfile to write metadata file., git, 2014/01/28
- [Commit-gnuradio] [gnuradio] 02/06: Merge branch 'maint', git, 2014/01/28
- [Commit-gnuradio] [gnuradio] 06/06: volk: remove unused spu_lib directory from VOLK., git, 2014/01/28
- [Commit-gnuradio] [gnuradio] 05/06: cmake: fixed ICE 3.4 version check for GCC < 4.7.,
git <=
- [Commit-gnuradio] [gnuradio] 03/06: volk: follow-up to commit cb4142d45 for added volk_get_machine function on master., git, 2014/01/28
- [Commit-gnuradio] [gnuradio] 04/06: Merge remote-tracking branch 'stiabhan/uhd_rx_cfile', git, 2014/01/28