bonsoir,

je dois réussir à compiler différents exécutables qui sont en fait des "tools" post-processing pour un autre programme. J'ai d'abord conçu un Makefile "maître" qui permet de faire appel à tous les Makefiles des sous-répertoires. Après avoir fait un "make" (celui de ce Makefile "maître) , tout compile bien, aucune erreur. Par contre, si je m'amuse à retaper "make", il y a une erreur au niveau du Makefile d'un sous-répertoire (VISUAL_MS), j'obtiens l'erreur suivante :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
make[1]: entrant dans le répertoire « /home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/VISUAL_MS »
 
****************************************
Compiling ENSIGHT MODULES....
ensight_geometry.f:
ensight_keywords.f:
ensight_variables.f:
ensight_choices.f:
ensight_write.f:
ensight_calculate.f:
ensight_calculatemean.f:
 
Modules created... 
****************************************
 
 
****************************************
Compiling ensight_main....
ensight_main.f:
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `_start':
(.text+0x0): multiple definition of `_start'
/usr/lib32/crt1.o:(.text+0x0): first defined here
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `_fini':
/home/aurel32/glibc/glibc-2.7/build-tree/amd64-libc/csu/crti.S:37: multiple definition of `_fini'
/usr/lib32/crti.o:/home/aurel32/glibc/glibc-2.7/build-tree/amd64-libc/csu/crti.S:37: first defined here
../GENERIC/SRC_HDF5/hdf_create_double.o:(.rodata+0x0): multiple definition of `_IO_stdin_used'
/usr/lib32/crt1.o:(.rodata.cst4+0x0): first defined here
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `__data_start':
(.data+0x0): multiple definition of `__data_start'
/usr/lib32/crt1.o:(.data+0x0): first defined here
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `main':
(.text+0xf0): multiple definition of `main'
/usr/local/pgi/linux86-64/9.0-1/libso/f90main.o:f90main.c:(.text+0x0): first defined here
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `_init':
/home/aurel32/glibc/glibc-2.7/build-tree/amd64-libc/csu/crti.S:25: multiple definition of `_init'
/usr/lib32/crti.o:/home/aurel32/glibc/glibc-2.7/build-tree/amd64-libc/csu/crti.S:25: first defined here
../GENERIC/SRC_HDF5/hdf_create_integer.o: In function `hdf_create_integer_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_integer.f:26: multiple definition of `hdf_create_integer_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_integer.f:26: first defined here
../GENERIC/SRC_HDF5/hdf_write_char.o: In function `hdf_write_char_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_char.f:28: multiple definition of `hdf_write_char_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_char.f:28: first defined here
../GENERIC/SRC_HDF5/hdf_write_double.o: In function `hdf_write_double_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_double.f:26: multiple definition of `hdf_write_double_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_double.f:26: first defined here
../GENERIC/SRC_HDF5/hdf_write_double_partial.o: In function `hdf_write_double_partial_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_double_partial.f:39: multiple definition of `hdf_write_double_partial_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_double_partial.f:39: first defined here
../GENERIC/SRC_HDF5/hdf_write_integer.o: In function `hdf_write_integer_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_integer.f:26: multiple definition of `hdf_write_integer_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_integer.f:26: first defined here
../GENERIC/SRC_HDF5/hdf_write_integer_partial.o: In function `hdf_write_integer_partial_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_integer_partial.f:39: multiple definition of `hdf_write_integer_partial_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_integer_partial.f:39: first defined here
../GENERIC/SRC_HDF5/hdf_write_solut.o: In function `hdf_write_solut_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut.f:34: multiple definition of `hdf_write_solut_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut.f:34: first defined here
../GENERIC/SRC_HDF5/hdf_write_solut_header.o: In function `hdf_write_solut_header_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut_header.f:37: multiple definition of `hdf_write_solut_header_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut_header.f:37: first defined here
../GENERIC/SRC_HDF5/hdf_write_solut_spark.o: In function `hdf_write_solut_spark_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut_spark.f:34: multiple definition of `hdf_write_solut_spark_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_solut_spark.f:34: first defined here
../GENERIC/SRC_HDF5/hdf_write_av_header.o: In function `hdf_write_av_header_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_av_header.f:29: multiple definition of `hdf_write_av_header_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_write_av_header.f:29: first defined here
../GENERIC/SRC_HDF5/hdf_read_char.o: In function `hdf_read_char_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_char.f:27: multiple definition of `hdf_read_char_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_char.f:27: first defined here
../GENERIC/SRC_HDF5/hdf_read_double.o: In function `hdf_read_double_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_double.f:23: multiple definition of `hdf_read_double_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_double.f:23: first defined here
../GENERIC/SRC_HDF5/hdf_read_double_partial.o: In function `hdf_read_double_partial_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_double_partial.f:39: multiple definition of `hdf_read_double_partial_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_double_partial.f:39: first defined here
../GENERIC/SRC_HDF5/hdf_read_integer.o: In function `hdf_read_integer_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_integer.f:23: multiple definition of `hdf_read_integer_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_integer.f:23: first defined here
../GENERIC/SRC_HDF5/hdf_read_integer_partial.o: In function `hdf_read_integer_partial_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_integer_partial.f:39: multiple definition of `hdf_read_integer_partial_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_integer_partial.f:39: first defined here
../GENERIC/SRC_HDF5/hdf_read_solut.o: In function `hdf_read_solut_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut.f:66: multiple definition of `hdf_read_solut_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut.f:66: first defined here
../GENERIC/SRC_HDF5/hdf_read_solut_header.o: In function `hdf_read_solut_header_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut_header.f:31: multiple definition of `hdf_read_solut_header_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut_header.f:31: first defined here
../GENERIC/SRC_HDF5/hdf_read_solut_spark.o: In function `hdf_read_solut_spark_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut_spark.f:24: multiple definition of `hdf_read_solut_spark_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_read_solut_spark.f:24: first defined here
../GENERIC/SRC_HDF5/hdf_keywords.o: In function `hdf_keywords_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_keywords.f:30: multiple definition of `hdf_keywords_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_keywords.f:30: first defined here
../GENERIC/SRC_HDF5/hdf_initialise.o: In function `hdf_initialise_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_initialise.f:15: multiple definition of `hdf_initialise_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_initialise.f:15: first defined here
../GENERIC/SRC_HDF5/hdf_terminate.o: In function `hdf_terminate_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_terminate.f:15: multiple definition of `hdf_terminate_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_terminate.f:15: first defined here
../GENERIC/SRC_HDF5/hdf_open_file.o: In function `hdf_open_file_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_file.f:18: multiple definition of `hdf_open_file_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_file.f:18: first defined here
../GENERIC/SRC_HDF5/hdf_create_file.o: In function `hdf_create_file_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_file.f:18: multiple definition of `hdf_create_file_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_file.f:18: first defined here
../GENERIC/SRC_HDF5/hdf_close_file.o: In function `hdf_close_file_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_file.f:16: multiple definition of `hdf_close_file_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_file.f:16: first defined here
../GENERIC/SRC_HDF5/hdf_open_group.o: In function `hdf_open_group_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_group.f:20: multiple definition of `hdf_open_group_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_group.f:20: first defined here
../GENERIC/SRC_HDF5/hdf_create_group.o: In function `hdf_create_group_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_group.f:20: multiple definition of `hdf_create_group_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_create_group.f:20: first defined here
../GENERIC/SRC_HDF5/hdf_close_group.o: In function `hdf_close_group_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_group.f:16: multiple definition of `hdf_close_group_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_group.f:16: first defined here
../GENERIC/SRC_HDF5/hdf_open_dataset.o: In function `hdf_open_dataset_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_dataset.f:19: multiple definition of `hdf_open_dataset_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_open_dataset.f:19: first defined here
../GENERIC/SRC_HDF5/hdf_close_dataset.o: In function `hdf_close_dataset_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_dataset.f:16: multiple definition of `hdf_close_dataset_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_close_dataset.f:16: first defined here
../GENERIC/SRC_HDF5/hdf_get_size.o: In function `hdf_get_size_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_get_size.f:25: multiple definition of `hdf_get_size_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_get_size.f:25: first defined here
../GENERIC/SRC_HDF5/hdf_search_object.o: In function `hdf_search_object_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_search_object.f:20: multiple definition of `hdf_search_object_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_search_object.f:20: first defined here
../GENERIC/SRC_HDF5/hdf_object_info.o: In function `hdf_object_info_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_object_info.f:23: multiple definition of `hdf_object_info_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./hdf_object_info.f:23: first defined here
../GENERIC/avbp_coor.o:(.data+0x10): multiple definition of `avbp_coor_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:hdf_object_info.f:(.data+0x19b0): first defined here
../GENERIC/avbp_coor.o: In function `avbp_coor_':
avbp_coor.f:(.text+0x0): multiple definition of `avbp_coor_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x8350): first defined here
../GENERIC/avbp_coor.o:(.data+0x0): multiple definition of `avbp_coor_9_'
../GENERIC/SRC_HDF5/hdf_create_double.o:hdf_object_info.f:(.data+0x19a0): first defined here
../GENERIC/avbp_coor.o: In function `avbp_coor_destroycoormemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:47: multiple definition of `avbp_coor_destroycoormemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:47: first defined here
../GENERIC/avbp_coor.o: In function `avbp_coor_getcoorinfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:63: multiple definition of `avbp_coor_getcoorinfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:63: first defined here
../GENERIC/avbp_coor.o: In function `avbp_coor_readcoor_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:91: multiple definition of `avbp_coor_readcoor_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:91: first defined here
../GENERIC/avbp_coor.o: In function `avbp_coor_writecoor_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:134: multiple definition of `avbp_coor_writecoor_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_coor.f:134: first defined here
../GENERIC/avbp_conn.o:(.data+0x0): multiple definition of `avbp_conn_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_coor.f:(.data+0x1b40): first defined here
../GENERIC/avbp_conn.o: In function `avbp_conn_':
avbp_conn.f:(.text+0x0): multiple definition of `avbp_conn_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x95c0): first defined here
../GENERIC/avbp_conn.o: In function `avbp_conn_destroyconnmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:42: multiple definition of `avbp_conn_destroyconnmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:42: first defined here
../GENERIC/avbp_conn.o: In function `avbp_conn_getconninfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:54: multiple definition of `avbp_conn_getconninfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:54: first defined here
../GENERIC/avbp_conn.o: In function `avbp_conn_readconn_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:96: multiple definition of `avbp_conn_readconn_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_conn.f:96: first defined here
../GENERIC/avbp_inBound.o:(.data+0x0): multiple definition of `avbp_inbound_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_conn.f:(.data+0x1d40): first defined here
../GENERIC/avbp_inBound.o: In function `avbp_inbound_':
avbp_inBound.f:(.text+0x0): multiple definition of `avbp_inbound_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0xaae0): first defined here
../GENERIC/avbp_inBound.o: In function `avbp_inbound_destroyinboundmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_inBound.f:40: multiple definition of `avbp_inbound_destroyinboundmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_inBound.f:40: first defined here
../GENERIC/avbp_inBound.o: In function `avbp_inbound_readinbound_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_inBound.f:56: multiple definition of `avbp_inbound_readinbound_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_inBound.f:56: first defined here
../GENERIC/avbp_exBound.o:(.data+0x0): multiple definition of `avbp_exbound_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_inBound.f:(.data+0x1e20): first defined here
../GENERIC/avbp_exBound.o: In function `avbp_exbound_':
avbp_exBound.f:(.text+0x0): multiple definition of `avbp_exbound_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0xb7c0): first defined here
../GENERIC/avbp_exBound.o: In function `avbp_exbound_destroyexboundmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:62: multiple definition of `avbp_exbound_destroyexboundmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:62: first defined here
../GENERIC/avbp_exBound.o: In function `avbp_exbound_getexboundinfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:91: multiple definition of `avbp_exbound_getexboundinfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:91: first defined here
../GENERIC/avbp_exBound.o: In function `avbp_exbound_readexbound_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:153: multiple definition of `avbp_exbound_readexbound_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:153: first defined here
../GENERIC/avbp_exBound.o: In function `avbp_exbound_writeexboundvariables_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:456: multiple definition of `avbp_exbound_writeexboundvariables_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_exBound.f:456: first defined here
../GENERIC/avbp_solution.o:(.data+0x140): multiple definition of `avbp_solution_9_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avsp_utils.f:(.data+0x2f00): first defined here
../GENERIC/avbp_solution.o:(.data+0x40): multiple definition of `avbp_solution_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avsp_utils.f:(.data+0x2e00): first defined here
../GENERIC/avbp_solution.o:(.data+0x0): multiple definition of `avbp_solution_10_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avsp_utils.f:(.data+0x2dc0): first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_':
avbp_solution.f:(.text+0x0): multiple definition of `avbp_solution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x131a0): first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_createsolutionmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:206: multiple definition of `avbp_solution_createsolutionmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:206: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_destroysolutionmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:274: multiple definition of `avbp_solution_destroysolutionmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:274: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_writesolutioninfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:301: multiple definition of `avbp_solution_writesolutioninfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:301: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_writesolutioninfohdf_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:337: multiple definition of `avbp_solution_writesolutioninfohdf_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:337: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_getsolutionobjnames_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3314: multiple definition of `avbp_solution_getsolutionobjnames_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3314: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_getsolutioninfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:376: multiple definition of `avbp_solution_getsolutioninfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:376: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_readsolution_v5x_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:436: multiple definition of `avbp_solution_readsolution_v5x_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:436: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_readsolution_tpf11_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:610: multiple definition of `avbp_solution_readsolution_tpf11_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:610: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_readsolution_tpf_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:765: multiple definition of `avbp_solution_readsolution_tpf_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:765: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_readsolution_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:980: multiple definition of `avbp_solution_readsolution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:980: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_readsolution_noinput_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:1786: multiple definition of `avbp_solution_readsolution_noinput_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:1786: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_writesolution_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2257: multiple definition of `avbp_solution_writesolution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2257: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_writesolution_v5x_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2473: multiple definition of `avbp_solution_writesolution_v5x_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2473: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_writesolution_tpf_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2584: multiple definition of `avbp_solution_writesolution_tpf_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2584: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_createadditionalmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2701: multiple definition of `avbp_solution_createadditionalmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2701: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_destroyadditionalmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2892: multiple definition of `avbp_solution_destroyadditionalmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2892: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_extractadditional_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2949: multiple definition of `avbp_solution_extractadditional_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:2949: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_usercreatememory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3114: multiple definition of `avbp_solution_usercreatememory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3114: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_userdestroymemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3132: multiple definition of `avbp_solution_userdestroymemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3132: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_userwriteset_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3171: multiple definition of `avbp_solution_userwriteset_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3171: first defined here
../GENERIC/avbp_solution.o: In function `avbp_solution_userreadset_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3245: multiple definition of `avbp_solution_userreadset_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_solution.f:3245: first defined here
../GENERIC/avbp_premix.o:(.data+0x20): multiple definition of `avbp_premix_9_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_solution.f:(.data+0x5240): first defined here
../GENERIC/avbp_premix.o:(.data+0x0): multiple definition of `avbp_premix_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_solution.f:(.data+0x5220): first defined here
../GENERIC/avbp_premix.o: In function `avbp_premix_':
avbp_premix.f:(.text+0x0): multiple definition of `avbp_premix_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x269f0): first defined here
../GENERIC/avbp_premix.o: In function `avbp_premix_destroypremixmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:51: multiple definition of `avbp_premix_destroypremixmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:51: first defined here
../GENERIC/avbp_premix.o: In function `avbp_premix_readpremix_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:83: multiple definition of `avbp_premix_readpremix_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:83: first defined here
../GENERIC/avbp_premix.o: In function `avbp_premix_writepremixvariables_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:235: multiple definition of `avbp_premix_writepremixvariables_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_premix.f:235: first defined here
../GENERIC/avbp_ifp.o:(.data+0x20): multiple definition of `avbp_ifp_9_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_premix.f:(.data+0x5700): first defined here
../GENERIC/avbp_ifp.o:(.data+0x0): multiple definition of `avbp_ifp_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_premix.f:(.data+0x56e0): first defined here
../GENERIC/avbp_ifp.o: In function `avbp_ifp_':
avbp_ifp.f:(.text+0x0): multiple definition of `avbp_ifp_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x28d50): first defined here
../GENERIC/avbp_ifp.o: In function `avbp_ifp_destroyifpmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:54: multiple definition of `avbp_ifp_destroyifpmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:54: first defined here
../GENERIC/avbp_ifp.o: In function `avbp_ifp_readifp_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:76: multiple definition of `avbp_ifp_readifp_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:76: first defined here
../GENERIC/avbp_ifp.o: In function `avbp_ifp_writeifpvariables_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:286: multiple definition of `avbp_ifp_writeifpvariables_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_ifp.f:286: first defined here
../GENERIC/avbp_meansolution.o:(.data+0x10): multiple definition of `avbp_meansolution_8_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_exBound.f:(.data+0x2610): first defined here
../GENERIC/avbp_meansolution.o:(.data+0x0): multiple definition of `avbp_meansolution_9_'
../GENERIC/SRC_HDF5/hdf_create_double.o:avbp_exBound.f:(.data+0x2600): first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_':
avbp_meansolution.f:(.text+0x0): multiple definition of `avbp_meansolution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0xf7a0): first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_createmeansolutionmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:65: multiple definition of `avbp_meansolution_createmeansolutionmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:65: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_destroymeansolutionmemory_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:90: multiple definition of `avbp_meansolution_destroymeansolutionmemory_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:90: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_getmeansolutioninfo_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:122: multiple definition of `avbp_meansolution_getmeansolutioninfo_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:122: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_writemeanvariables_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:247: multiple definition of `avbp_meansolution_writemeanvariables_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:247: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_readmeansolution_nohdf5_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:273: multiple definition of `avbp_meansolution_readmeansolution_nohdf5_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:273: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_readmeansolution_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:334: multiple definition of `avbp_meansolution_readmeansolution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:334: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_writemeansolution_nohdf5_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:523: multiple definition of `avbp_meansolution_writemeansolution_nohdf5_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:523: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_writemeansolution_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:562: multiple definition of `avbp_meansolution_writemeansolution_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:562: first defined here
../GENERIC/avbp_meansolution.o: In function `avbp_meansolution_getmeansolutionobjnames_':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:639: multiple definition of `avbp_meansolution_getmeansolutionobjnames_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/GENERIC/./avbp_meansolution.f:639: first defined here
../GENERIC/avbp_constants.o: In function `avbp_constants_':
avbp_constants.f:(.text+0x0): multiple definition of `avbp_constants_'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.text+0x2b690): first defined here
ensight_main.o: In function `ensight_main':
/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/VISUAL_MS/./ensight_main.f:50: multiple definition of `MAIN_'
../GENERIC/SRC_HDF5/hdf_create_double.o:/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/CHECK_POTENTIALFLOW/./check_potential.f:62: first defined here
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/crtend.o:(.dtors+0x0): multiple definition of `__DTOR_END__'
../GENERIC/SRC_HDF5/hdf_create_double.o:(.dtors+0x8): first defined here
/usr/bin/ld: error in ../GENERIC/SRC_HDF5/hdf_create_double.o(.eh_frame); no .eh_frame_hdr table will be created.
make[1]: *** [/home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/HOST/KALI/TOOLEXEC/ensight_main_KALI.exe] Erreur 2
make[1]: quittant le répertoire « /home/fab/TAFF_CERFACS/QUIET/AVSP_V4.1/TOOLS/VISUAL_MS »
make: *** [VISUAL_MS] Erreur 2
Comme cela est indiqué au début, avec par exemple :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
../GENERIC/SRC_HDF5/hdf_create_double.o: In function `_start':
(.text+0x0): multiple definition of `_start'
/usr/lib32/crt1.o:(.text+0x0): first defined here
.........
tout se passe comme si j'incluais 2 librairies où il y aurait les mêmes fonctions.

Le Makefile de ce sous-répertoire VISUAL_MS est le suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
include $(AVSP_HOME)/HOST/$(AVSP_HOSTTYPE)/INCLUDES/makefile.h
 
 
#----------------------------------
#define the paths
#----------------------------------
TOOL=ensight_main
GENE=../GENERIC
EXEDIR=$(AVSP_HOME)/HOST/$(AVSP_HOSTTYPE)/TOOLEXEC
#EXEDIR = .
HDF5DIR=$(GENE)/SRC_HDF5
EXENAME=$(TOOL)_$(AVSP_HOSTTYPE).exe
 
HDF5_SOURCES = \
        $(HDF5DIR)/hdf_create_double.o \
        $(HDF5DIR)/hdf_create_integer.o \
        $(HDF5DIR)/hdf_write_char.o \
        $(HDF5DIR)/hdf_write_double.o \
        $(HDF5DIR)/hdf_write_double_partial.o \
        $(HDF5DIR)/hdf_write_integer.o \
        $(HDF5DIR)/hdf_write_integer_partial.o \
        $(HDF5DIR)/hdf_write_solut.o \
        $(HDF5DIR)/hdf_write_solut_header.o \
        $(HDF5DIR)/hdf_write_solut_spark.o \
        $(HDF5DIR)/hdf_write_av_header.o \
        $(HDF5DIR)/hdf_read_char.o \
        $(HDF5DIR)/hdf_read_double.o \
        $(HDF5DIR)/hdf_read_double_partial.o \
        $(HDF5DIR)/hdf_read_integer.o \
        $(HDF5DIR)/hdf_read_integer_partial.o \
        $(HDF5DIR)/hdf_read_solut.o \
        $(HDF5DIR)/hdf_read_solut_header.o \
        $(HDF5DIR)/hdf_read_solut_spark.o \
        $(HDF5DIR)/hdf_keywords.o \
        $(HDF5DIR)/hdf_initialise.o \
        $(HDF5DIR)/hdf_terminate.o \
        $(HDF5DIR)/hdf_open_file.o \
        $(HDF5DIR)/hdf_create_file.o \
        $(HDF5DIR)/hdf_close_file.o \
        $(HDF5DIR)/hdf_open_group.o \
        $(HDF5DIR)/hdf_create_group.o \
        $(HDF5DIR)/hdf_close_group.o \
        $(HDF5DIR)/hdf_open_dataset.o \
        $(HDF5DIR)/hdf_close_dataset.o \
        $(HDF5DIR)/hdf_get_size.o \
        $(HDF5DIR)/hdf_search_object.o \
        $(HDF5DIR)/hdf_object_info.o
 
OBJVISUAL = \
     $(GENE)/avbp_coor.o \
     $(GENE)/avbp_conn.o \
     $(GENE)/avbp_inBound.o \
     $(GENE)/avbp_exBound.o \
     $(GENE)/avbp_asciiBound.o \
     $(GENE)/avbp_solutBound.o \
     $(GENE)/avbp_solution.o \
     $(GENE)/avbp_recast.o \
     $(GENE)/avbp_premix.o \
     $(GENE)/avbp_thermo.o \
     $(GENE)/avbp_species.o \
     $(GENE)/avbp_ifp.o \
     $(GENE)/avbp_ms.o \
     $(GENE)/avbp_meansolution.o \
     $(GENE)/avbp_chem.o \
     $(GENE)/avbp_partition.o \
     $(GENE)/avbp_constants.o \
     $(GENE)/avbp_rundat.o
 
 
ENSIGHTOBJ= \
     ensight_geometry.o \
     ensight_variables.o \
     ensight_keywords.o \
     ensight_choices.o \
     ensight_write.o \
     ensight_calculate.o \
     ensight_calculatemean.o 
 
ENSIGHTMODULES= \
     ensight_geometry.f \
     ensight_keywords.f \
     ensight_variables.f \
     ensight_choices.f \
     ensight_write.f \
     ensight_calculate.f \
     ensight_calculatemean.f
 
all :  $(EXEDIR)/$(EXENAME)
 
#----------------------------------
#Visual tools
#----------------------------------
 
ensightmod : $(ENSIGHTMODULES)
	@echo
	@echo "****************************************"
	@echo "Compiling ENSIGHT MODULES...."
	@$(FTOOLS) $(OPT)$(GENE) $(FTOOLSFLAGS) -c $(ENSIGHTMODULES)
	@echo
	@echo "Modules created... "
	@echo "****************************************"
	@echo
 
$(EXEDIR)/$(EXENAME): ensightmod ensight_main.f
	@echo
	@echo "****************************************"
	@echo "Compiling ensight_main...."
	@$(FTOOLS) $(OPT)$(GENE) $(FTOOLSFLAGS) -o $@ $(HDF5_SOURCES) $(OBJVISUAL) $(ENSIGHTOBJ) ensight_main.f  $(HDF5LIB)/libhdf5_fortran.a $(HDF5LIB)/libhdf5.a  $(SZLIB) $(HDF5L)
	@echo
	@echo "Executable created: "
	@echo $(EXEDIR)/$(EXENAME)
	@echo "****************************************"
	@echo
 
clean:
	@\rm -f *mod *o 
	@\rm -f $(EXEDIR)/$(EXENAME)*
L'erreur se situe au niveau de la partie suivante du Makefile :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
$(EXEDIR)/$(EXENAME): ensightmod ensight_main.f
	@echo
	@echo "****************************************"
	@echo "Compiling ensight_main...."
	@$(FTOOLS) $(OPT)$(GENE) $(FTOOLSFLAGS) -o $@ $(HDF5_SOURCES) $(OBJVISUAL) $(ENSIGHTOBJ) ensight_main.f  $(HDF5LIB)/libhdf5_fortran.a $(HDF5LIB)/libhdf5.a  $(SZLIB) $(HDF5L)
	@echo
	@echo "Executable created: "
	@echo $(EXEDIR)/$(EXENAME)
	@echo "****************************************"
	@echo
et plus précisement la ligne en question :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
@$(FTOOLS) $(OPT)$(GENE) $(FTOOLSFLAGS) -o $@ $(HDF5_SOURCES) $(OBJVISUAL) $(ENSIGHTOBJ) ensight_main.f  $(HDF5LIB)/libhdf5_fortran.a $(HDF5LIB)/libhdf5.a  $(SZLIB) $(HDF5L)
cette ligne vaut en fait :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
mpif90 -I$MPICHINC -L$MPICHLIB -lmpich -I./../GENERIC -g -Mpreprocess -byteswapio -I$HDF5LIB -I$HDF5INC -o exe -c ensight_main.f ../GENERIC/SRC_HDF5/hdf_create_double.o \ ../GENERIC/SRC_HDF5/hdf_create_integer.o \ ../GENERIC/SRC_HDF5/hdf_write_char.o \ ../GENERIC/SRC_HDF5/hdf_write_double.o \ ../GENERIC/SRC_HDF5/hdf_write_double_partial.o \ ../GENERIC/SRC_HDF5/hdf_write_integer.o \ ../GENERIC/SRC_HDF5/hdf_write_integer_partial.o \ ../GENERIC/SRC_HDF5/hdf_write_solut.o \ ../GENERIC/SRC_HDF5/hdf_write_solut_header.o \ ../GENERIC/SRC_HDF5/hdf_write_solut_spark.o \ ../GENERIC/SRC_HDF5/hdf_write_av_header.o \ ../GENERIC/SRC_HDF5/hdf_read_char.o \ ../GENERIC/SRC_HDF5/hdf_read_double.o \ ../GENERIC/SRC_HDF5/hdf_read_double_partial.o \ ../GENERIC/SRC_HDF5/hdf_read_integer.o \ ../GENERIC/SRC_HDF5/hdf_read_integer_partial.o \ ../GENERIC/SRC_HDF5/hdf_read_solut.o \ ../GENERIC/SRC_HDF5/hdf_read_solut_header.o \ ../GENERIC/SRC_HDF5/hdf_read_solut_spark.o \ ../GENERIC/SRC_HDF5/hdf_keywords.o \ ../GENERIC/SRC_HDF5/hdf_initialise.o \ ../GENERIC/SRC_HDF5/hdf_terminate.o \ ../GENERIC/SRC_HDF5/hdf_open_file.o \ ../GENERIC/SRC_HDF5/hdf_create_file.o \ ../GENERIC/SRC_HDF5/hdf_close_file.o \ ../GENERIC/SRC_HDF5/hdf_open_group.o \ ../GENERIC/SRC_HDF5/hdf_create_group.o \ ../GENERIC/SRC_HDF5/hdf_close_group.o \ ../GENERIC/SRC_HDF5/hdf_open_dataset.o \ ../GENERIC/SRC_HDF5/hdf_close_dataset.o \ ../GENERIC/SRC_HDF5/hdf_get_size.o \ ../GENERIC/SRC_HDF5/hdf_search_object.o \ ../GENERIC/SRC_HDF5/hdf_object_info.o ../GENERIC/avbp_coor.o \ ../GENERIC/avbp_conn.o \ ../GENERIC/avbp_inBound.o \ ../GENERIC/avbp_exBound.o \ ../GENERIC/avbp_asciiBound.o \ ../GENERIC/avbp_solutBound.o \ ../GENERIC/avbp_solution.o \ ../GENERIC/avbp_recast.o \ ../GENERIC/avbp_premix.o \ ../GENERIC/avbp_thermo.o \ ../GENERIC/avbp_species.o \ ../GENERIC/avbp_ifp.o \ ../GENERIC/avbp_ms.o \ ../GENERIC/avbp_meansolution.o \ ../GENERIC/avbp_chem.o \ ../GENERIC/avbp_partition.o \ ../GENERIC/avbp_constants.o \ ../GENERIC/avbp_rundat.o ensight_geometry.o \ ensight_variables.o \ ensight_keywords.o \ ensight_choices.o \ ensight_write.o \ ensight_calculate.o \ ensight_calculatemean.o /usr/local/HDF5/lib/libhdf5_fortran.a /usr/local/HDF5/lib/libhdf5.a /usr/local/lib/libsz.a -lz -lm
Pour que cette commande repasse bien quand je retape "make" dans le répertoire principal TOOLS, j'ai rajouté l'option "-c" avant ensight_main.f, j'ai donc à la ligne concernée :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3

@$(FTOOLS) $(OPT)$(GENE) $(FTOOLSFLAGS) -o $@ $(HDF5_SOURCES) $(OBJVISUAL) $(ENSIGHTOBJ) -c ensight_main.f  $(HDF5LIB)/libhdf5_fortran.a $(HDF5LIB)/libhdf5.a  $(SZLIB) $(HDF5L)
Si j'ai bien compris, cela me permet de générer le point objet "ensight_main.o" et de le linker aux autres points objet pour générer l'exécutable ( désigné par -o $@), tout ceci sur une seule ligne

J'aimerais bien comprendre pourquoi sans mettre cette option "-c", le deuxième "make" du Makefile maître me produit l'erreur du début. D'où peut venir cette redondance qui correspond à des erreurs du type multiple definition of `................ first defined here

Si vous aviez une piste pour comprendre cette solution que j'ai trouvée,

Merci par avance.