-
Notifications
You must be signed in to change notification settings - Fork 7
/
CMakeLists.txt
412 lines (374 loc) · 16.3 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# Cloud-J/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(CLOUDJ VERSION 8.0.1 LANGUAGES Fortran)
#-----------------------------------------------------------------------------
# Add CMakeScripts/ to the module path
#-----------------------------------------------------------------------------
list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_CURRENT_SOURCE_DIR}/CMakeScripts)
include(CLDJ-Helpers)
#-----------------------------------------------------------------------------
# Print header
#-----------------------------------------------------------------------------
get_repo_version(CLDJ_REPO_VERSION ${CMAKE_CURRENT_SOURCE_DIR})
message("=================================================================")
message("Cloud-J ${PROJECT_VERSION}")
message("Current status: ${CLDJ_REPO_VERSION}")
message("=================================================================")
#-----------------------------------------------------------------------------
# Set policies
#-----------------------------------------------------------------------------
cmake_policy(SET CMP0054 NEW)
cmake_policy(SET CMP0057 NEW)
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
if(POLICY CMP0079)
cmake_policy(SET CMP0079 NEW)
endif()
#-----------------------------------------------------------------------------
# Declare the CloudJBuildProperties library
#-----------------------------------------------------------------------------
add_library(CloudJBuildProperties INTERFACE)
#---------------------------------------------------------------------
# Default compiler options
#
# CloudJ_Fortran_FLAGS_<COMPILER_ID> : common flags (all build types)
# CloudJ_Fortran_FLAGS_<CONFIG>_<COMPILER_ID> : types-specific flags
#
# Valid COMPILER_ID: Intel and GNU
# Valid CONFIG: RELEASE, DEBUG, RELWITHDEBINFO
#---------------------------------------------------------------------
set(CloudJ_Fortran_FLAGS_Intel
-cpp -w -auto -noalign "SHELL:-convert big_endian" "SHELL:-fp-model source" -mcmodel=medium
-shared-intel -traceback -DLINUX_IFORT
CACHE STRING "Cloud-J compiler flags for all build types with Intel compilers"
)
set(CloudJ_Fortran_FLAGS_RELEASE_Intel
-O2
CACHE STRING "Cloud-J compiler flags for build type release with Intel compilers"
)
set(CloudJ_Fortran_FLAGS_RELWITHDEBINFO_Intel
-O2
CACHE STRING "Cloud-J compiler flags for build type relwithdebinfo with Intel compilers"
)
set(CloudJ_Fortran_FLAGS_DEBUG_Intel
-g -O0 "SHELL:-check arg_temp_created" "SHELL:-debug all" -fpe0 -ftrapuv -check,bounds -DDEBUG
CACHE STRING "Cloud-J compiler flags for build type debug with Intel compilers"
)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm64")
# arm based processors only support mcmodels of large small tiny
set(CloudJ_Fortran_FLAGS_GNU
-cpp -w -std=legacy -fautomatic -fno-align-commons -fconvert=big-endian
-fno-range-check -mcmodel=small -fbacktrace -g -DLINUX_GFORTRAN
-ffree-line-length-none
CACHE STRING "Cloud-J compiler flags for all build types with GNU compilers"
)
else()
set(CloudJ_Fortran_FLAGS_GNU
-cpp -w -std=legacy -fautomatic -fno-align-commons -fconvert=big-endian
-fno-range-check -mcmodel=medium -fbacktrace -g -DLINUX_GFORTRAN
-ffree-line-length-none
CACHE STRING "Cloud-J compiler flags for all build types with GNU compilers"
)
endif()
set(CloudJ_Fortran_FLAGS_RELEASE_GNU
-O3 -funroll-loops
CACHE STRING "Cloud-J compiler flags for build type release with GNU compilers"
)
set(CloudJ_Fortran_FLAGS_RELWITHDEBINFO_GNU
-O3 -funroll-loops
CACHE STRING "Cloud-J compiler flags for build type relwithdebinfo with GNU compilers"
)
set(CloudJ_Fortran_FLAGS_DEBUG_GNU
-g -gdwarf-2 -gstrict-dwarf -O0 -Wall -Wextra -Wconversion -Warray-temporaries
-fcheck=array-temps -ffpe-trap=invalid,zero,overflow -finit-real=snan -fcheck=bounds -fcheck=pointer
CACHE STRING "Cloud-J compiler flags for build type debug with GNU compilers"
)
set(CLOUDJ_SUPPORTED_COMPILER_IDS "Intel" "GNU")
if(NOT CMAKE_Fortran_COMPILER_ID IN_LIST CLOUDJ_SUPPORTED_COMPILER_IDS)
message(FATAL_ERROR "Cloud-J does not support ${CMAKE_Fortran_COMPILER_ID} compilers")
endif()
#---------------------------------------------------------------------
# Assign comiler options to build properties
#---------------------------------------------------------------------
target_compile_options(CloudJBuildProperties
INTERFACE
$<$<STREQUAL:${CMAKE_Fortran_COMPILER_ID},Intel>:
${CloudJ_Fortran_FLAGS_Intel}
$<$<CONFIG:Debug>:${CloudJ_Fortran_FLAGS_DEBUG_Intel}>
$<$<CONFIG:RelWithDebInfo>:${CloudJ_Fortran_FLAGS_RELWITHDEBINFO_Intel}>
$<$<CONFIG:Release>:${CloudJ_Fortran_FLAGS_RELEASE_Intel}>
>
$<$<STREQUAL:${CMAKE_Fortran_COMPILER_ID},GNU>:
${CloudJ_Fortran_FLAGS_GNU}
$<$<CONFIG:Debug>:${CloudJ_Fortran_FLAGS_DEBUG_GNU}>
$<$<CONFIG:RelWithDebInfo>:${CloudJ_Fortran_FLAGS_RELWITHDEBINFO_GNU}>
$<$<CONFIG:Release>:${CloudJ_Fortran_FLAGS_RELEASE_GNU}>
>
)
#-----------------------------------------------------------------------------
# Set USE_REAL8 as cache variable to not override the existing definition
# See https://github.com/geoschem/geos-chem/issues/43.
#-----------------------------------------------------------------------------
set(USE_REAL8 ON CACHE BOOL
"Switch to set Cloud-J precision (hp) to 8-byte floating point real"
)
target_compile_definitions(CloudJBuildProperties INTERFACE
$<$<BOOL:${USE_REAL8}>:USE_REAL8>
)
#-----------------------------------------------------------------------------
# Add OpenMP compile command to the compilation settings
# Define OMP as a cached variable to prevent overriding existing definition
#-----------------------------------------------------------------------------
set(OMP "TRUE" CACHE STRING "Enables/disables Cloud-J built with OpenMP")
if(${OMP})
find_package(OpenMP REQUIRED)
###########################################################################
# NOTE: Newer versions of CMake (maybe > 3.8) prefer OpenMP::OpenMP
# rather than ${OpenMP_Fortran_FLAGS} to specify compilation options
# for OpenMP. However, this is not supported in older versions.
# For backwards compatibility, especially with Azure DevOps, we will
# leave the new syntax commented out. It can be restored later.
# -- Bob Yantosca (28 Jul 2020)
#
# target_compile_options(CloudJBuildProperties
# INTERFACE OpenMP::OpenMP_Fortran
# )
# target_link_libraries(CloudJBuildProperties
# INTERFACE OpenMP::OpenMP_Fortran
# )
###########################################################################
target_compile_options(CloudJBuildProperties
INTERFACE ${OpenMP_Fortran_FLAGS}
)
target_link_libraries(CloudJBuildProperties
INTERFACE ${OpenMP_Fortran_FLAGS}
)
else()
target_compile_definitions(CloudJBuildProperties
INTERFACE "NO_OMP"
)
endif()
#-----------------------------------------------------------------------------
# Put all of Cloud-J's mod files in build subdir called mod
#-----------------------------------------------------------------------------
set(CMAKE_Fortran_MODULE_DIRECTORY ${CLOUDJ_BINARY_DIR}/mod)
target_include_directories(CloudJBuildProperties
INTERFACE ${CLOUDJ_BINARY_DIR}/mod
)
#-----------------------------------------------------------------------------
# Append Cloud-J's environment variables to CMAKE_PREFIX_PATH
#-----------------------------------------------------------------------------
list(APPEND CMAKE_PREFIX_PATH
# Possible NetCDF environment variables
$ENV{NetCDF_F_ROOT} $ENV{NetCDF_C_ROOT} $ENV{NetCDF_ROOT}
$ENV{NETCDF_F_ROOT} $ENV{NETCDF_C_ROOT} $ENV{NETCDF_ROOT}
$ENV{NetCDF_Fortran_ROOT}
$ENV{NETCDF_FORTRAN_ROOT}
# Possible Cloud-J environmnet variables (still needed? -ewl)
$ENV{GC_F_BIN} $ENV{GC_BIN}
$ENV{GC_F_INCLUDE} $ENV{GC_INCLUDE}
$ENV{GC_F_LIB} $ENV{GC_LIB}
)
#-----------------------------------------------------------------------------
# Link NetCDF-F to CloudJBuildProperties
#-----------------------------------------------------------------------------
find_package(NetCDF REQUIRED)
target_include_directories(CloudJBuildProperties
INTERFACE ${NETCDF_INCLUDE_DIRS}
)
target_link_libraries(CloudJBuildProperties
INTERFACE ${NETCDF_LIBRARIES}
)
#-----------------------------------------------------------------------------
# Use the NC_HAS_COMPRESSION def if nf_def_var_deflate is in netcdf.inc
#-----------------------------------------------------------------------------
if(EXISTS ${NETCDF_F77_INCLUDE_DIR}/netcdf.inc)
file(READ ${NETCDF_F77_INCLUDE_DIR}/netcdf.inc NCINC)
if("${NCINC}" MATCHES ".*nf_def_var_deflate.*")
target_compile_definitions(CloudJBuildProperties
INTERFACE "NC_HAS_COMPRESSION"
)
endif()
endif()
#-----------------------------------------------------------------------------
# Print a description of the source code repo's version
# (Needs more work to enable)
#-----------------------------------------------------------------------------
#get_repo_version(CLOUDJ_REPO_VERSION ${CMAKE_CURRENT_SOURCE_DIR})
#message(STATUS "Cloud-J @ ${CLOUDJ_REPO_VERSION})
#-----------------------------------------------------------------------------
# For Cloud-J Standalone
#
# This conditional block configures the Cloud-J build for Cloud-J standalone.
# It sets CloudJ_EXE_TARGETS and it configures the CloudJBuildProperties.
#-----------------------------------------------------------------------------
if(NOT CLOUDJ_EXTERNAL_CONFIG)
# Set Cloud-J compile flag to standalone
target_compile_definitions(CloudJBuildProperties
INTERFACE MODEL_STANDALONE
)
# Set CMAKE_BUILD_TYPE to Release by default
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release"
CACHE STRING
"Set the build type"
FORCE
)
endif()
# Set the run directory to one directory up
set(RUNDIR ".." CACHE PATH "Path to your run directory")
message(STATUS "Bootstrapping ${RUNDIR}")
# Make RUNDIR an absolute path
get_filename_component(RUNDIR "${RUNDIR}"
ABSOLUTE BASE_DIR "${CMAKE_BINARY_DIR}"
)
# Configure the run directory, if any.
set(BUILD_WITHOUT_RUNDIR FALSE)
if(EXISTS ${RUNDIR}/CloudJ_sa_Spec.rc)
file(STRINGS ${RUNDIR}/CloudJ_sa_Spec.rc CloudJ_SA)
elseif(NOT EXISTS RUNDIR)
set(RUNDIR ${CMAKE_BINARY_DIR})
set(BUILD_WITHOUT_RUNDIR TRUE)
else()
message(FATAL_ERROR "Your run directory doesn't
have CloudJ_sa_Spec.rc! Set RUNDIR to a
valid run directory.")
endif()
# Determine which executables should be built
set(CLOUDJ_EXE_TARGETS "cloudj_standalone"
CACHE STRING "Executable targets that get built as a part of \"all\""
)
endif()
#-----------------------------------------------------------------------------
# For Cloud-J as submodule in GEOS-Chem "Classic" (GCClassic) superproject
#-----------------------------------------------------------------------------
if(CLOUDJ_EXTERNAL_CONFIG AND GCCLASSIC_WRAPPER)
target_compile_definitions(CloudJBuildProperties
INTERFACE MODEL_GEOSCHEM
)
endif()
#-----------------------------------------------------------------------------
# For Cloud-J as submodule in GEOS-Chem "High Performance" (GCHP) superproject
#-----------------------------------------------------------------------------
if(CLOUDJ_EXTERNAL_CONFIG AND GCHP_WRAPPER)
target_compile_definitions(CloudJBuildProperties
INTERFACE MODEL_GEOSCHEM
)
endif()
#-----------------------------------------------------------------------------
# For Cloud-J as submodule in MAPL/ESMF superproject
#-----------------------------------------------------------------------------
if(CLOUDJ_EXTERNAL_CONFIG AND MAPL_ESMF)
target_link_libraries(CloudJBuildProperties
INTERFACE $<LINK_ONLY:MAPL.base>
INTERFACE $<LINK_ONLY:MAPL.generic>
)
target_include_directories(CloudJBuildProperties
INTERFACE $<TARGET_PROPERTY:MAPL.base,INTERFACE_INCLUDE_DIRECTORIES>
INTERFACE $<TARGET_PROPERTY:MAPL.generic,INTERFACE_INCLUDE_DIRECTORIES>
)
target_compile_definitions(CloudJBuildProperties
INTERFACE MAPL_ESMF
)
endif()
#-----------------------------------------------------------------------------
# Write CloudJBuildProperties's configuration to a file
#-----------------------------------------------------------------------------
get_target_property(BT_DEFINITIONS CloudJBuildProperties
INTERFACE_COMPILE_DEFINITIONS
)
get_target_property(BT_OPTIONS CloudJBuildProperties
INTERFACE_COMPILE_OPTIONS
)
get_target_property(BT_LIBRARIES CloudJBuildProperties
INTERFACE_LINK_LIBRARIES
)
get_target_property(BT_INCLUDES CloudJBuildProperties
INTERFACE_INCLUDE_DIRECTORIES
)
file(WRITE ${CMAKE_BINARY_DIR}/CloudJBuildProperties.txt
"# This file shows the CloudJBuildProperties's configuration.\n"
"\n"
"CloudJBuildProperties::INTERFACE_COMPILE_DEFINITIONS:${BT_DEFINITIONS}\n"
"CloudJBuildProperties::INTERFACE_COMPILE_OPTIONS:${BT_OPTIONS}\n"
"CloudJBuildProperties::INTERFACE_LINK_LIBRARIES:${BT_LIBRARIES}\n"
"CloudJBuildProperties::INTERFACE_INCLUDE_DIRECTORIES:${BT_INCLUDES}\n"
)
#-----------------------------------------------------------------------------
# Try to compile a simple program that uses NetCDF-Fortran and OpenMP
#-----------------------------------------------------------------------------
if(NOT CLOUDJ_EXTERNAL_CONFIG AND NOT CLOUDJ_TRY_RUN_PASSED)
# Format definitions with -D prefix
set(TRY_RUN_LIBRARIES ${NETCDF_LIBRARIES})
set(TRY_RUN_INCLUDE_DIRS ${NETCDF_INCLUDE_DIRS})
set(TRY_RUN_COMPILER_FLAGS "")
set(TRY_RUN_DEFINITIONS "")
if(OMP)
list(APPEND TRY_RUN_LIBRARIES ${OpenMP_Fortran_LIBRARIES})
list(APPEND TRY_RUN_COMPILER_FLAGS ${OpenMP_Fortran_FLAGS})
else()
list(APPEND TRY_RUN_DEFINITIONS -DNO_OMP)
endif()
# Try to compile and run try_compile.F90
try_run(RUN_FAILED COMPILED_OK
${CMAKE_CURRENT_BINARY_DIR}/try_compile # binary dir
${CMAKE_CURRENT_SOURCE_DIR}/CMakeScripts/try_compile.F90 # test src file
LINK_LIBRARIES ${TRY_RUN_LIBRARIES}
CMAKE_FLAGS "-DINCLUDE_DIRECTORIES=${TRY_RUN_INCLUDE_DIRS}" "-DCMAKE_Fortran_FLAGS=${TRY_RUN_COMPILER_FLAGS}"
COMPILE_DEFINITIONS ${TRY_RUN_DEFINITIONS}
COMPILE_OUTPUT_VARIABLE COMPILE_OUTPUT
RUN_OUTPUT_VARIABLE RUN_OUTPUT
)
# Display a warning if its compilation failed
if(NOT COMPILED_OK)
if(OMP)
set(CONDITIONAL_AND_OMP " and OpenMP")
endif()
message(WARNING
"Failed to compile a simple program that uses "
"NetCDF-Fortran ${CONDITIONAL_AND_OMP}! Could "
"your NetCDF installation be broken?\nSee "
"\"FailedCompile.txt\" for more info."
)
file(WRITE ${CMAKE_BINARY_DIR}/FailedCompile.txt
"${COMPILE_OUTPUT}"
)
else()
file(REMOVE ${CMAKE_BINARY_DIR}/FailedCompile.txt)
endif()
# Display a warning if its execution failed
if(RUN_FAILED)
if(OMP)
set(CONDITIONAL_AND_OMP "and OpenMP ")
endif()
message(WARNING
"A simple program that uses NetCDF-Fortran "
"${CONDITIONAL_AND_OMP}compiled successfully, "
"but its execution failed!\n\nSee "
"\"FailedExecution.txt\" for more info."
)
file(WRITE ${CMAKE_BINARY_DIR}/FailedEasyRun.txt
"${COMPILE_OUTPUT}\n${RUN_OUTPUT}"
)
else()
file(REMOVE ${CMAKE_BINARY_DIR}/FailedEasyRun.txt
${CMAKE_BINARY_DIR}/simple_xy.nc
)
set(GC_TRY_RUN_PASSED TRUE CACHE INTERNAL
"try_run passed" FORCE
)
endif()
endif()
#-----------------------------------------------------------------------------
# Print output of environment variable settings
#-----------------------------------------------------------------------------
if(NOT CLOUDJ_EXTERNAL_CONFIG)
cldj_pretty_print(SECTION "Settings")
cldj_pretty_print(VARIABLE OMP IS_BOOLEAN)
cldj_pretty_print(VARIABLE USE_REAL8 IS_BOOLEAN)
endif()
#-----------------------------------------------------------------------------
# Add source code directory
#-----------------------------------------------------------------------------
add_subdirectory(src)