forked from szaghi/VecFor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fobos
286 lines (254 loc) · 6.94 KB
/
fobos
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
[modes]
modes = static-gnu-debug static-gnu shared-gnu-debug shared-gnu
static-intel-debug shared-intel shared-intel-debug static-intel
tests-gnu-debug tests-gnu
tests-intel-debug tests-intel
tests-nvf tests-nvf-debug
[common-variables]
$CSHARED_GNU = -c -fPIC -frealloc-lhs
$CSHARED_INT = -c -fpic -assume realloc_lhs
$LSHARED = -shared
$CSTATIC_GNU = -c -frealloc-lhs
$CSTATIC_INT = -c -assume realloc_lhs -fpp
$CSTATIC_NVF = -cpp -c
$DEBUG_GNU = -Og -g3 -Warray-bounds -Wcharacter-truncation -Wline-truncation -Wimplicit-interface -Wimplicit-procedure -Wunderflow -Wuninitialized -fcheck=all -fmodule-private -ffree-line-length-132 -fimplicit-none -fbacktrace -fdump-core -finit-real=nan -std=f2008 -fall-intrinsics
$DEBUG_INT = -O0 -debug all -check all -warn all -extend-source 132 -traceback -gen-interfaces -fp-stack-check -fstack-protector-all -ftrapuv -no-ftz -std08
$DEBUG_NVF = -O0 -g -C
$OPTIMIZE = -O2
$EXDIRS = PENF/src/tests/ PENF/src/third_party/
# main modes
# GNU
[shared-gnu]
template = template-shared-gnu
target = vecfor.F90
build_dir = ./shared/
output = libvecfor.so
mklib = shared
[static-gnu]
template = template-static-gnu
target = vecfor.F90
build_dir = ./static/
output = libvecfor.a
mklib = static
[shared-gnu-debug]
template = template-shared-gnu-debug
target = vecfor.F90
build_dir = ./shared/
output = libvecfor.so
mklib = shared
[static-gnu-debug]
template = template-static-gnu-debug
target = vecfor.F90
build_dir = ./static/
output = libvecfor.a
mklib = static
[tests-gnu]
template = template-static-gnu
build_dir = ./exe/
[tests-gnu-debug]
template = template-static-gnu-debug
build_dir = ./exe/
# Intel
[shared-intel]
template = template-shared-intel
target = vecfor.F90
build_dir = ./shared/
output = libvecfor.so
mklib = shared
[static-intel]
template = template-static-intel
target = vecfor.F90
build_dir = ./static/
output = libvecfor.a
mklib = static
[shared-intel-debug]
template = template-shared-intel-debug
target = vecfor.F90
build_dir = ./shared/
output = libvecfor.so
mklib = shared
[static-intel-debug]
template = template-static-intel-debug
target = vecfor.F90
build_dir = ./static/
output = libvecfor.a
mklib = static
[tests-intel]
template = template-static-intel
build_dir = ./exe/
[tests-intel-debug]
template = template-static-intel-debug
build_dir = ./exe/
# NVFortran
[tests-nvf]
template = template-static-nvf
build_dir = ./exe/
[tests-nvf-debug]
template = template-static-nvf-debug
build_dir = ./exe/
#templates
# GNU
[template-shared-gnu]
compiler = gnu
cflags = $CSHARED_GNU $OPTIMIZE
lflags = $LSHARED $OPTIMIZE
preproc = -D_R16P_SUPPORTED
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-static-gnu]
compiler = gnu
cflags = $CSTATIC_GNU $OPTIMIZE
lflags = $OPTIMIZE
preproc = -D_R16P_SUPPORTED
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-shared-gnu-debug]
compiler = gnu
cflags = $CSHARED_GNU $DEBUG_GNU
lflags = $LSHARED $DEBUG_GNU
preproc = -D_R16P_SUPPORTED -DDEBUG
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-static-gnu-debug]
compiler = gnu
cflags = $CSTATIC_GNU $DEBUG_GNU
lflags = $DEBUG_GNU
preproc = -D_R16P_SUPPORTED -DDEBUG
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
# Intel
[template-shared-intel]
compiler = intel
cflags = $CSHARED_INT $OPTIMIZE
lflags = $LSHARED $OPTIMIZE
preproc = -D_R16P_SUPPORTED
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-static-intel]
compiler = intel
cflags = $CSTATIC_INT $OPTIMIZE
lflags = $OPTIMIZE
preproc = -D_R16P_SUPPORTED
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-shared-intel-debug]
compiler = intel
cflags = $CSHARED_INT $DEBUG_INT
lflags = $LSHARED $DEBUG_INT
preproc = -D_R16P_SUPPORTED -DDEBUG
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-static-intel-debug]
compiler = intel
cflags = $CSTATIC_INT $DEBUG_INT
lflags = $DEBUG_INT
preproc = -D_R16P_SUPPORTED -DDEBUG
exclude_dirs = $EXDIRS
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
# NVFortran
[template-static-nvf]
compiler = nvfortran
cflags = $CSTATIC_NVF $OPTIMIZE
exclude_dirs = $EXDIRS
preproc = -D_NVF
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
[template-static-nvf-debug]
compiler = nvfortran
cflags = $CSTATIC_NVF $DEBUG_NVF
lflags = $DEBUG_NVF
exclude_dirs = $EXDIRS
preproc = -D_NVF
mod_dir = ./mod/
obj_dir = ./obj/
src = ./src/
colors = True
quiet = False
log = True
jobs = 2
# rules
[rule-makedoc]
help = Build documentation from source files
rule_1 = rm -rf doc/html/*
rule_2 = ford doc/main_page.md --debug
rule_3 = cp -r doc/html/publish/* doc/html/
rule_4 = rm -rf doc/html/publish
[rule-deldoc]
help = Delete documentation
rule = rm -rf doc/html/*
[rule-delexe]
help = Delete exes
rule = rm -rf exe/
[rule-clean]
help = Clean the project tree
rule_1 = FoBiS.py rule -ex deldoc
rule_2 = FoBiS.py rule -ex delexe
rule_3 = rm -f *.gcov
[rule-maketar]
help = Make tar archive of the project
rule = tar --xform="s%^%VecFor/%" -czf VecFor.tar.gz *
[rule-makecoverage]
help = Perform coverage analysis
rule_1 = FoBiS.py doctests -mode tests-gnu-debug -coverage --exclude_from_doctests penf_b_size.F90 penf.F90 penf_global_parameters_variables.F90 penf_stringify.F90 -keep_volatile_doctests
rule_2 = rm -f exe/obj/penf*
rule_3 = gcov -o exe/obj/ src/lib/vecfor*
[rule-makecoverage-analysis]
help = Perform coverage analysis and saving reports in markdown
rule_1 = FoBiS.py doctests -mode tests-gnu-debug -coverage --exclude_from_doctests penf_b_size.F90 penf.F90 penf_global_parameters_variables.F90 penf_stringify.F90
rule_2 = rm -f exe/obj/penf*
rule_3 = gcov -o exe/obj/ src/lib/vecfor*
rule_4 = FoBiS.py rule -gcov_analyzer wiki/ Coverage-Analysis
rule_5 = rm -f *.gcov