From 13be9cb5668fca78825485e1d65cb7c5c614a476 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Thu, 29 Sep 2016 22:45:58 +0000 Subject: [PATCH] Enable OpenMP for everything except on Macs Also increase Windows stack size from 1Mbyte to 8Mbyte due to the impact of Fortran arrays not being automatically moved to static storage above a certain size. This needs attention by setting the SAVE attribute on large arrays that do not need to be on the stack i.e. do no need to be duplicated across OpenMP thread teams. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- CMakeLists.txt | 85 +++++++++++++++++++++++++++++--------------------- 1 file changed, 49 insertions(+), 36 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 859ea7766..9729d29b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -709,6 +709,41 @@ endif (APPLE) find_program(CTAGS ctags) find_program(ETAGS etags) +# +# OpenMP +# +find_package (OpenMP) + +# +# fftw3 single precision library +# +find_package (FFTW3 COMPONENTS double single threads REQUIRED) + +# +# libhamlib setup +# +set (hamlib_STATIC 1) +find_package (hamlib 3 REQUIRED) +find_program (RIGCTL_EXE rigctl) +find_program (RIGCTLD_EXE rigctld) + +message (STATUS "hamlib_INCLUDE_DIRS: ${hamlib_INCLUDE_DIRS}") +message (STATUS "hamlib_LIBRARIES: ${hamlib_LIBRARIES}") +message (STATUS "hamlib_LIBRARY_DIRS: ${hamlib_LIBRARY_DIRS}") + +# +# Qt5 setup +# + +# Widgets finds its own dependencies. +find_package (Qt5Widgets 5 REQUIRED) +find_package (Qt5Multimedia 5 REQUIRED) + +if (WIN32) + add_definitions (-DQT_NEEDS_QTMAIN) + find_package (Qt5AxContainer REQUIRED) +endif (WIN32) + # # sub-directories # @@ -738,6 +773,10 @@ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -std=c++11 -fexceptions - if (NOT APPLE) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-pragmas") + if (${OPENMP_FOUND}) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp") + endif () set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -fdata-sections -ffunction-sections") set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -fdata-sections -ffunction-sections") set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fdata-sections -ffunction-sections") @@ -851,41 +890,6 @@ if (NOT "${QT_LIBRARY_DIR}" STREQUAL "/lib" AND NOT "${QT_LIBRARY_DIR}" STREQUAL set (QT_NEED_RPATH TRUE) endif () -# -# OpenMP -# -find_package (OpenMP) - -# -# fftw3 single precision library -# -find_package (FFTW3 COMPONENTS double single threads REQUIRED) - -# -# libhamlib setup -# -set (hamlib_STATIC 1) -find_package (hamlib 3 REQUIRED) -find_program (RIGCTL_EXE rigctl) -find_program (RIGCTLD_EXE rigctld) - -message (STATUS "hamlib_INCLUDE_DIRS: ${hamlib_INCLUDE_DIRS}") -message (STATUS "hamlib_LIBRARIES: ${hamlib_LIBRARIES}") -message (STATUS "hamlib_LIBRARY_DIRS: ${hamlib_LIBRARY_DIRS}") - -# -# Qt5 setup -# - -# Widgets finds its own dependencies. -find_package (Qt5Widgets 5 REQUIRED) -find_package (Qt5Multimedia 5 REQUIRED) - -if (WIN32) - add_definitions (-DQT_NEEDS_QTMAIN) - find_package (Qt5AxContainer REQUIRED) -endif (WIN32) - # # stuff only qmake can tell us # @@ -1112,7 +1116,16 @@ set_target_properties (wsjtx PROPERTIES ) target_include_directories (wsjtx PRIVATE ${FFTW3_INCLUDE_DIRS}) -target_link_libraries (wsjtx wsjt_fort wsjt_cxx wsjt_qt wsjt_qtmm ${hamlib_LIBRARIES} ${FFTW3_LIBRARIES}) +if (APPLE) + target_link_libraries (wsjtx wsjt_fort wsjt_cxx wsjt_qt wsjt_qtmm ${hamlib_LIBRARIES} ${FFTW3_LIBRARIES}) +else () + target_link_libraries (wsjtx wsjt_fort_omp wsjt_cxx wsjt_qt wsjt_qtmm ${hamlib_LIBRARIES} ${FFTW3_LIBRARIES}) + set_target_properties (wsjtx PROPERTIES + COMPILE_FLAGS "${OpenMP_C_FLAGS}" + LINK_FLAGS "${OpenMP_C_FLAGS} -Wl,--stack,8388608" + Fortran_MODULE_DIRECTORY ${CMAKE_BINARY_DIR}/fortran_modules_omp + ) +endif () qt5_use_modules (wsjtx SerialPort) # not sure why the interface link library syntax above doesn't work # make a library for WSJT-X UDP servers