staging.inyokaproject.org

cp2k mit Intel compiler bauen

Status: Ungelöst | Ubuntu-Version: Ubuntu 11.10 (Oneiric Ocelot)
Antworten |

chloroform

Anmeldungsdatum:
7. August 2007

Beiträge: Zähle...

Hallo,

da ich noch ein wenig Zeit in den Semesterferien habe, wollte ich mir mal das Programm cp2k bauen, um damit ein wenig 'spielen' zu können.

Das Programm ist unter http://www.cp2k.org/index.php/obtaining/ zu erhalten. Ich benutze Version 2.2.

Da anfängliche Versuche, cp2k samt benötigter Libs nach der mitgelieferten INSTALL-Anleitung gescheitert sind, probiere ich seit gestern mit Hilfe des Intel-Compilers zum Erfolg zu kommen.

Dazu habe ich mir zunächst http://software.intel.com/en-us/articles/build-cp2k-using-intel-fortran-compiler-professional-edition/ durchgelesen, habe dann aber folgendes Tutorial gefunden und probiert es durchzuarbeiten: http://hpc.xrqtc.com/index.php/articles-tutorials/192-how-to-build-cp2k-with-intel-compiler-121-openmpi-143-and-infiniband-support. Leider hat es nicht geklappt. Ich werde mal meine Vorgehensweise beschreiben und hoffen, dass mich jemand auf den richtigen Pfad bringt ☺

Zuerst habe ich anders als im Tutorial beschrieben OpenMPI 1.4.5 ohne OFED und ohne Torque/PBS kompiliert.

./configure --prefix=/usr/local CC=icc CXX=icpc F77=ifort FC=ifort

Bin mir aber nicht sicher, ob hier noch alles richtig gelaufen ist.

Hier das Ende der Ausgabe nachedem ich make all install ausgeführt habe. Ich habe mir schon über sudo nautilus vorübergehend komplette Lese- und Schreibrechte für das /usr Verzeichnis geholt, allerdings hat das nichts an der Fehlermeldung geändert...

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
Making install in contrib
make[1]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi/amca-param-sets" || /bin/mkdir -p "/usr/local/share/openmpi/amca-param-sets"
 /usr/bin/install -c -m 644 'amca-param-sets/example.conf' '/usr/local/share/openmpi/amca-param-sets/example.conf'
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'openmpi-valgrind.supp' '/usr/local/share/openmpi/openmpi-valgrind.supp'
/usr/bin/install: cannot remove `/usr/local/share/openmpi/openmpi-valgrind.supp': Permission denied
make[2]: *** [install-dist_pkgdataDATA] Error 1
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make: *** [install-recursive] Error 1

Unter dem Punkt Environment Set Up. Habe ich zunächst wie beschrieben

1
screen -S cp2k-intel-ompi

ausgeführt. Das anschließende

1
tar -xvf cp2k.tar.gz

habe ich nicht ausgeführt, da ich das Programm nicht als Tar-Ball erhalten habe.

Jetzt soll man die benötigten Module laden:

1
2
3
#. /opt/modules/init/bash
#module load intel/composer_xe_2011_sp1.6.233
#module load openmpi/1.4.3_intel2011

Aber schon die erste Zeile mag schon nicht so richtig klappen:

1
2
tobias@brutus:~$ . /opt/modules/init/bash/
bash: /opt/modules/init/bash/: No such file or directory

Nachdem ich das Verzeichnis mit mkdir erstellt hatte, bekam ich folgende Meldung:

1
2
tobias@brutus:~$ . /opt/modules/init/bash/
bash: .: /opt/modules/init/bash/: is a directory

Das eigentliche Laden der benötigten Module ist dann auch schief gelaufen:

1
2
3

tobias@brutus:~$ module load /opt/intel/composer_xe_2011_sp1.9.293/
module: command not found

Das bauen des FFTW- Wrappers hat mit Hilfe aus dem Forum fehlerlos geklappt. Allerdings konnte ich mit dem Satz

You can link this wrapper to /opt/compilers/intel/composer_xe_2011_sp1.6.233/mkl/lib/intel64

nichts anfangen und bin ihn einfach mal übergangen.

Anschließend habe ich das makefile entsprechend der Vorlage modifiziert und die Versionsnummer des Intel-Composers angepasst. Es hat jetzt die folgende Form:

 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
# by default some intel compilers put temporaries on the stack
# this might lead to segmentation faults is the stack limit is set to low
# stack limits can be increased by sysadmins or e.g with ulimit -s 256000
# furthermore new ifort (10.0?) compilers support the option
# -heap-arrays 64
# add this to the compilation flags is the other options do not work
# The following settings worked for:
# - AMD64 Opteron
# - SUSE Linux Enterprise Server 10.0 (x86_64)
# - Intel(R) Fortran Compiler for Intel(R) EM64T-based applications, Version 10.0.025
# - AMD acml library version 3.6.0
# - MPICH2-1.0.5p4
# - SCALAPACK library          1.8.0
#
#
CC       = cc
CPP      = 
FC       = mpif90 
LD       = mpif90
AR       = ar -r

INTEL_MKL=/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl
INTEL_INC = $(INTEL_MKL)/include/fftw
INTEL_LIB = $(INTEL_MKL)/lib/intel64


DFLAGS   = -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3
CPPFLAGS =
FCFLAGS  = $(DFLAGS) -I$(INTEL_INC) -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free
FCFLAGS2 = $(DFLAGS) -I$(INTEL_INC) -O1 -msse2 -heap-arrays 64 -fpp -free
LDFLAGS  = $(FCFLAGS) -I$(INTEL_INC)
LIBS     = -L$(INTEL_LIB) -lfftw3xf_intel \
-L${INTEL_LIB} -I${INTEL_INC} -I${INTEL_INC}/intel64/lp64 -lmkl_blas95_lp64 \
-L${INTEL_LIB} -I${INTEL_INC} -I${INTEL_INC}/intel64/lp64 -lmkl_lapack95_lp64 \
${INTEL_LIB}/libmkl_scalapack_lp64.a ${INTEL_LIB}/libmkl_solver_lp64_sequential.a -Wl,--start-group ${INTEL_LIB}/libmkl_intel_lp64.a ${INTEL_LIB}/libmkl_sequential.a ${INTEL_LIB}/libmkl_core.a ${INTEL_LIB}/libmkl_blacs_openmpi_lp64.a -Wl,--end-group -lpthread

OBJECTS_ARCHITECTURE = machine_intel.o

graphcon.o: graphcon.F
	$(FC) -c $(FCFLAGS2) $<

#qs_vxc_atom.o: qs_vxc_atom.F
#$(FC) -c $(FCFLAGS2) $<

Die letzten beiden Zeilen habe ich wegen der Fehlermeldung:

1
2
tobias@brutus:~/cp2k-2_2-branch/cp2k/makefiles$ make -j 2 ARCH=Linux-x86-64-intel VERSION=popt
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../arch/Linux-x86-64-intel.popt:43: *** missing separator.  Stop.

auskommentiert.

Im Vergleich dazu das Original:

 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
# by default some intel compilers put temporaries on the stack
# this might lead to segmentation faults is the stack limit is set to low
# stack limits can be increased by sysadmins or e.g with ulimit -s 256000
# furthermore new ifort (10.0?) compilers support the option
# -heap-arrays 64
# add this to the compilation flags is the other options do not work
# The following settings worked for:
# - AMD64 Opteron
# - SUSE Linux Enterprise Server 10.0 (x86_64)
# - Intel(R) Fortran Compiler for Intel(R) EM64T-based applications, Version 10.0.025
# - AMD acml library version 3.6.0
# - MPICH2-1.0.5p4
# - SCALAPACK library          1.8.0
#
#
CC       = cc
CPP      = 
FC       = mpif90 
LD       = mpif90
AR       = ar -r
DFLAGS   = -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3
CPPFLAGS = 
FCFLAGS  = $(DFLAGS) -I$(INTEL_INC) -O3 -xW -heap-arrays 64 -funroll-loops -fpp -free
FCFLAGS2 = $(DFLAGS) -I$(INTEL_INC) -O1 -xW -heap-arrays 64 -fpp -free
LDFLAGS  = $(FCFLAGS) -I$(INTEL_INC)
LIBS     = $(INTEL_LIB)/libscalapack.a \
           $(INTEL_LIB)/libblacs_init.a \
           $(INTEL_LIB)/libblacs.a \
           $(INTEL_LIB)/libacml.a\
           $(INTEL_LIB)/libacml_mv.a \
           $(INTEL_LIB)/libfftw3.a

OBJECTS_ARCHITECTURE = machine_intel.o


graphcon.o: graphcon.F
	$(FC) -c $(FCFLAGS2) $<

Beim Ausführen von make bekomme ich dann folgende Meldung:

 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
tobias@brutus:~/cp2k-2_2-branch/cp2k/makefiles$ make -j 2 ARCH=Linux-x86-64-intel VERSION=popt
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make LDFLAGS= -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/tools -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile makedepf90
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/tools'
make[1]: `makedepf90' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/tools'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile all.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/all.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile lib.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/lib.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile dbcsr.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/dbcsr_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/dbcsr.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/dbcsr_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile fft.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/fft_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/fft.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/fft_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile ma.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/arch_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/ma.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/arch_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile _progr
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/popt'
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Fri Mar 16 11:04:12 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas_poison.F
/bin/sh: mpif90: not found
make[1]: *** [f77_blas_poison.o] Error 127
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/popt'
make: *** [build] Error 2
tobias@brutus:~/cp2k-2_2-branch/cp2k/makefiles$ 

Ich sehe. dass mehrfach auf ein fehlendes Verzeichnis hingewiesen wird. Auch scheint wohl mpif90 nicht gefunden zu werden.

Vllt hat jemand spontan eine Idee, wie ich das ganze doch noch hinkriegen könnte.

Wäre cool ☺

Lasall

Ehemalige
Avatar von Lasall

Anmeldungsdatum:
30. März 2010

Beiträge: 7723

Hi chloroform,

dass du make install ausführst, deutet für mich darauf hin, dass du kein Paket bauen willst. Möchtest du einfach nur das Programm kompilieren und installieren oder noch zusätzlich das Debianpaket bauen (was kein großer Aufwand ist)? Auf jeden Fall führe den Aufruf der Targets getrennt durch. Das Kompilieren (make all) kannst du normal ausführen, zum Installieren (make install) brauchst du idR. Rootrechte. Du kannst das allerdings mit DESTDIR=tmp fakeroot make install in ein Verzeichnis tmp installieren, um zu schauen, ob alle Dateien korrekt vorhanden sind usw. (sofern das Makefile DESTDIR unterstützt).

Gruss Lasall

chloroform

(Themenstarter)

Anmeldungsdatum:
7. August 2007

Beiträge: 130

Ich habe sudo make distclean ausgeführt und ./configure und make all durchlaufen lassen.

Anschließend habe ich mein Glück mit checkinstall probiert:

  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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
tobias@brutus:~/Downloads/openmpi-1.4.5$ sudo checkinstall sudo checkinstall --install=no
[sudo] password for tobias: 

checkinstall 1.6.2, Copyright 2009 Felipe Eduardo Sanchez Diaz Duran
           This software is released under the GNU GPL.



*****************************************
**** Debian package creation selected ***
*****************************************

This package will be built according to these values: 

0 -  Maintainer: [ root@brutus ]
1 -  Summary: [ openmpi145 ]
2 -  Name:    [ openmpi ]
3 -  Version: [ 1.4.5 ]
4 -  Release: [ 1 ]
5 -  License: [ GPL ]
6 -  Group:   [ checkinstall ]
7 -  Architecture: [ amd64 ]
8 -  Source location: [ openmpi-1.4.5 ]
9 -  Alternate source location: [  ]
10 - Requires: [  ]
11 - Provides: [ openmpi ]
12 - Conflicts: [  ]
13 - Replaces: [  ]

Enter a number to change any of them or press ENTER to continue: openmpi_versuch1

This package will be built according to these values: 

0 -  Maintainer: [ root@brutus ]
1 -  Summary: [ openmpi145 ]
2 -  Name:    [ openmpi ]
3 -  Version: [ 1.4.5 ]
4 -  Release: [ 1 ]
5 -  License: [ GPL ]
6 -  Group:   [ checkinstall ]
7 -  Architecture: [ amd64 ]
8 -  Source location: [ openmpi-1.4.5 ]
9 -  Alternate source location: [  ]
10 - Requires: [  ]
11 - Provides: [ openmpi ]
12 - Conflicts: [  ]
13 - Replaces: [  ]

Enter a number to change any of them or press ENTER to continue: 

Installing with sudo checkinstall --install=no...

========================= Installation results ===========================

checkinstall 1.6.2, Copyright 2009 Felipe Eduardo Sanchez Diaz Duran
           This software is released under the GNU GPL.



*****************************************
**** Debian package creation selected ***
*****************************************

This package will be built according to these values: 

0 -  Maintainer: [ root@brutus ]
1 -  Summary: [ openmpi145 ]
2 -  Name:    [ openmpi ]
3 -  Version: [ 1.4.5 ]
4 -  Release: [ 1 ]
5 -  License: [ GPL ]
6 -  Group:   [ checkinstall ]
7 -  Architecture: [ amd64 ]
8 -  Source location: [ openmpi-1.4.5 ]
9 -  Alternate source location: [  ]
10 - Requires: [  ]
11 - Provides: [ openmpi ]
12 - Conflicts: [  ]
13 - Replaces: [  ]

Enter a number to change any of them or press ENTER to continue: 

Installing with make install...

========================= Installation results ===========================
Making install in config
make[1]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/config'
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/config'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/config'
make[1]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/config'
Making install in contrib
make[1]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi/amca-param-sets" || /bin/mkdir -p "/usr/local/share/openmpi/amca-param-sets"
 /usr/bin/install -c -m 644 'amca-param-sets/example.conf' '/usr/local/share/openmpi/amca-param-sets/example.conf'
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'openmpi-valgrind.supp' '/usr/local/share/openmpi/openmpi-valgrind.supp'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
make[1]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/contrib'
Making install in opal
make[1]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
Making install in include
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/include'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/include'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/include'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/include'
Making install in libltdl
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
make  install-am
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "" || /bin/mkdir -p ""
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/libltdl'
Making install in asm
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/asm'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/asm'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/asm'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/asm'
Making install in etc
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/etc'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/etc'
make[3]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p /usr/local/etc
 /usr/bin/install -c -m 644 openmpi-mca-params.conf /usr/local/etc/openmpi-mca-params.conf
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/etc'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/etc'
Making install in event
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
Making install in compat
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
Making install in sys
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat/sys'
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat/sys'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat/sys'
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat/sys'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event/compat'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/event'
Making install in util
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
Making install in keyval
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util/keyval'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util/keyval'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util/keyval'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util/keyval'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'help-opal-util.txt' '/usr/local/share/openmpi/help-opal-util.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/util'
Making install in mca/base
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/base'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/base'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'help-mca-base.txt' '/usr/local/share/openmpi/help-mca-base.txt'
 /usr/bin/install -c -m 644 'help-mca-param.txt' '/usr/local/share/openmpi/help-mca-param.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/base'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/base'
Making install in mca/backtrace
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace'
Making install in mca/carto
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto'
Making install in mca/crs
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-opal-crs-base.txt' '/usr/local/share/openmpi/help-opal-crs-base.txt'
test -z "/usr/local/share/man/man7" || /bin/mkdir -p "/usr/local/share/man/man7"
 /usr/bin/install -c -m 644 'opal_crs.7' '/usr/local/share/man/man7/opal_crs.7'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs'
Making install in mca/installdirs
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs'
Making install in mca/maffinity
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity'
Making install in mca/memchecker
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memchecker'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memchecker'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memchecker'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memchecker'
Making install in mca/memcpy
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memcpy'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memcpy'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memcpy'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memcpy'
Making install in mca/memory
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory'
Making install in mca/paffinity
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity'
Making install in mca/timer
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer'
Making install in mca/backtrace/execinfo
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace/execinfo'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace/execinfo'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace/execinfo'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/backtrace/execinfo'
Making install in mca/installdirs/env
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/env'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/env'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/env'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/env'
Making install in mca/installdirs/config
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/config'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/config'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/config'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/installdirs/config'
Making install in mca/memory/ptmalloc2
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory/ptmalloc2'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory/ptmalloc2'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'libopenmpi_malloc.la' '/usr/local/lib/libopenmpi_malloc.la'
libtool: install: /usr/bin/install -c .libs/libopenmpi_malloc.so.0.0.0 /usr/local/lib/libopenmpi_malloc.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libopenmpi_malloc.so.0.0.0 libopenmpi_malloc.so.0 || { rm -f libopenmpi_malloc.so.0 && ln -s libopenmpi_malloc.so.0.0.0 libopenmpi_malloc.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libopenmpi_malloc.so.0.0.0 libopenmpi_malloc.so || { rm -f libopenmpi_malloc.so && ln -s libopenmpi_malloc.so.0.0.0 libopenmpi_malloc.so; }; })
libtool: install: /usr/bin/install -c .libs/libopenmpi_malloc.lai /usr/local/lib/libopenmpi_malloc.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/usr/local/share/openmpi/doc" || /bin/mkdir -p "/usr/local/share/openmpi/doc"
 /usr/bin/install -c -m 644 'ptmalloc2-COPYRIGHT' '/usr/local/share/openmpi/doc/ptmalloc2-COPYRIGHT'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory/ptmalloc2'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/memory/ptmalloc2'
Making install in mca/timer/linux
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer/linux'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer/linux'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer/linux'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/timer/linux'
Making install in .
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
 /bin/bash ../libtool   --mode=install /usr/bin/install -c  'libopen-pal.la' '/usr/local/lib/libopen-pal.la'
libtool: install: /usr/bin/install -c .libs/libopen-pal.so.0.0.0 /usr/local/lib/libopen-pal.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libopen-pal.so.0.0.0 libopen-pal.so.0 || { rm -f libopen-pal.so.0 && ln -s libopen-pal.so.0.0.0 libopen-pal.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libopen-pal.so.0.0.0 libopen-pal.so || { rm -f libopen-pal.so && ln -s libopen-pal.so.0.0.0 libopen-pal.so; }; })
libtool: install: /usr/bin/install -c .libs/libopen-pal.lai /usr/local/lib/libopen-pal.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'runtime/help-opal-runtime.txt' '/usr/local/share/openmpi/help-opal-runtime.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
Making install in mca/carto/auto_detect
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/auto_detect'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/auto_detect'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/lib/openmpi" || /bin/mkdir -p "/usr/local/lib/openmpi"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'mca_carto_auto_detect.la' '/usr/local/lib/openmpi/mca_carto_auto_detect.la'
libtool: install: /usr/bin/install -c .libs/mca_carto_auto_detect.so /usr/local/lib/openmpi/mca_carto_auto_detect.so
libtool: install: /usr/bin/install -c .libs/mca_carto_auto_detect.lai /usr/local/lib/openmpi/mca_carto_auto_detect.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/openmpi
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/openmpi

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/auto_detect'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/auto_detect'
Making install in mca/carto/file
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/file'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/file'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'help-opal-carto-file.txt' '/usr/local/share/openmpi/help-opal-carto-file.txt'
test -z "/usr/local/lib/openmpi" || /bin/mkdir -p "/usr/local/lib/openmpi"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'mca_carto_file.la' '/usr/local/lib/openmpi/mca_carto_file.la'
libtool: install: /usr/bin/install -c .libs/mca_carto_file.so /usr/local/lib/openmpi/mca_carto_file.so
libtool: install: /usr/bin/install -c .libs/mca_carto_file.lai /usr/local/lib/openmpi/mca_carto_file.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/openmpi
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/openmpi

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/file'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/carto/file'
Making install in mca/crs/none
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs/none'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs/none'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'help-opal-crs-none.txt' '/usr/local/share/openmpi/help-opal-crs-none.txt'
test -z "/usr/local/lib/openmpi" || /bin/mkdir -p "/usr/local/lib/openmpi"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'mca_crs_none.la' '/usr/local/lib/openmpi/mca_crs_none.la'
libtool: install: /usr/bin/install -c .libs/mca_crs_none.so /usr/local/lib/openmpi/mca_crs_none.so
libtool: install: /usr/bin/install -c .libs/mca_crs_none.lai /usr/local/lib/openmpi/mca_crs_none.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/openmpi
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/openmpi

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs/none'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/crs/none'
Making install in mca/maffinity/first_use
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity/first_use'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity/first_use'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/lib/openmpi" || /bin/mkdir -p "/usr/local/lib/openmpi"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'mca_maffinity_first_use.la' '/usr/local/lib/openmpi/mca_maffinity_first_use.la'
libtool: install: /usr/bin/install -c .libs/mca_maffinity_first_use.so /usr/local/lib/openmpi/mca_maffinity_first_use.so
libtool: install: /usr/bin/install -c .libs/mca_maffinity_first_use.lai /usr/local/lib/openmpi/mca_maffinity_first_use.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/openmpi
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/openmpi

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity/first_use'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/maffinity/first_use'
Making install in mca/paffinity/linux
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
Making install in plpa
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
Making install in src
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
Making install in libplpa
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
make[6]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make  install-data-hook
make[7]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
make[7]: Nothing to be done for `install-data-hook'.
make[7]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
make[6]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/libplpa'
Making install in plpa-info
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-info'
make[6]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-info'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
make[6]: Nothing to be done for `install-data-am'.
make[6]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-info'
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-info'
Making install in plpa-taskset
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-taskset'
make[6]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-taskset'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
make[6]: Nothing to be done for `install-data-am'.
make[6]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-taskset'
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src/plpa-taskset'
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
make[6]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
make[6]: Nothing to be done for `install-exec-am'.
make[6]: Nothing to be done for `install-data-am'.
make[6]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa/src'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
make[5]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux/plpa'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/lib/openmpi" || /bin/mkdir -p "/usr/local/lib/openmpi"
 /bin/bash ../../../../libtool   --mode=install /usr/bin/install -c  'mca_paffinity_linux.la' '/usr/local/lib/openmpi/mca_paffinity_linux.la'
libtool: install: /usr/bin/install -c .libs/mca_paffinity_linux.so /usr/local/lib/openmpi/mca_paffinity_linux.so
libtool: install: /usr/bin/install -c .libs/mca_paffinity_linux.lai /usr/local/lib/openmpi/mca_paffinity_linux.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/openmpi
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/openmpi

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/mca/paffinity/linux'
Making install in tools/wrappers
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
  /bin/bash ../../../libtool   --mode=install /usr/bin/install -c 'opal_wrapper' '/usr/local/bin/opal_wrapper'
libtool: install: /usr/bin/install -c .libs/opal_wrapper /usr/local/bin/opal_wrapper
make  install-exec-hook
make[4]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
make[4]: Nothing to be done for `install-exec-hook'.
make[4]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'help-opal-wrapper.txt' '/usr/local/share/openmpi/help-opal-wrapper.txt'
test -z "/usr/local/share/man/man1" || /bin/mkdir -p "/usr/local/share/man/man1"
 /usr/bin/install -c -m 644 'opal_wrapper.1' '/usr/local/share/man/man1/opal_wrapper.1'
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal/tools/wrappers'
make[1]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/opal'
Making install in orte
make[1]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
Making install in include
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/include'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/include'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/include'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/include'
Making install in mca/errmgr
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/errmgr'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/errmgr'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/errmgr'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/errmgr'
Making install in mca/ess
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ess'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ess'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-ess-base.txt' '/usr/local/share/openmpi/help-ess-base.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ess'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ess'
Making install in mca/filem
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/filem'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/filem'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-orte-filem-base.txt' '/usr/local/share/openmpi/help-orte-filem-base.txt'
test -z "/usr/local/share/man/man7" || /bin/mkdir -p "/usr/local/share/man/man7"
 /usr/bin/install -c -m 644 'orte_filem.7' '/usr/local/share/man/man7/orte_filem.7'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/filem'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/filem'
Making install in mca/grpcomm
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/grpcomm'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/grpcomm'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/grpcomm'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/grpcomm'
Making install in mca/iof
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/iof'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/iof'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/iof'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/iof'
Making install in mca/notifier
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/notifier'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/notifier'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/notifier'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/notifier'
Making install in mca/odls
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/odls'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/odls'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-orte-odls-base.txt' '/usr/local/share/openmpi/help-orte-odls-base.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/odls'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/odls'
Making install in mca/oob
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/oob'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/oob'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/oob'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/oob'
Making install in mca/plm
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/plm'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/plm'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-plm-base.txt' '/usr/local/share/openmpi/help-plm-base.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/plm'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/plm'
Making install in mca/ras
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ras'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ras'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-ras-base.txt' '/usr/local/share/openmpi/help-ras-base.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ras'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/ras'
Making install in mca/rmaps
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rmaps'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rmaps'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-orte-rmaps-base.txt' '/usr/local/share/openmpi/help-orte-rmaps-base.txt'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rmaps'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rmaps'
Making install in mca/rml
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rml'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rml'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rml'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/rml'
Making install in mca/routed
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/routed'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/routed'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/routed'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/routed'
Making install in mca/snapc
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/snapc'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/snapc'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/openmpi" || /bin/mkdir -p "/usr/local/share/openmpi"
 /usr/bin/install -c -m 644 'base/help-orte-snapc-base.txt' '/usr/local/share/openmpi/help-orte-snapc-base.txt'
test -z "/usr/local/share/man/man7" || /bin/mkdir -p "/usr/local/share/man/man7"
 /usr/bin/install -c -m 644 'orte_snapc.7' '/usr/local/share/man/man7/orte_snapc.7'
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/snapc'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/mca/snapc'
Making install in etc
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/etc'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte/etc'
make[3]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p /usr/local/etc
 /usr/bin/install -c -m 644 openmpi-default-hostfile /usr/local/etc/openmpi-default-hostfile
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/etc'
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte/etc'
Making install in .
make[2]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
make[3]: Entering directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
 /bin/bash ../libtool   --mode=install /usr/bin/install -c  'libopen-rte.la' '/usr/local/lib/libopen-rte.la'
libtool: install: warning: relinking `libopen-rte.la'
libtool: install: (cd /home/tobias/Downloads/openmpi-1.4.5/orte; /bin/bash /home/tobias/Downloads/openmpi-1.4.5/libtool  --tag CC --mode=relink icc -O3 -DNDEBUG -finline-functions -fno-strict-aliasing -restrict -pthread -fvisibility=hidden -version-info 0:0:0 -export-dynamic -o libopen-rte.la -rpath /usr/local/lib runtime/orte_finalize.lo runtime/orte_init.lo runtime/orte_locks.lo runtime/orte_globals.lo runtime/data_type_support/orte_dt_compare_fns.lo runtime/data_type_support/orte_dt_copy_fns.lo runtime/data_type_support/orte_dt_print_fns.lo runtime/data_type_support/orte_dt_release_fns.lo runtime/data_type_support/orte_dt_size_fns.lo runtime/data_type_support/orte_dt_packing_fns.lo runtime/data_type_support/orte_dt_unpacking_fns.lo runtime/orte_mca_params.lo runtime/orte_wait.lo runtime/orte_cr.lo runtime/orte_data_server.lo util/error_strings.lo util/name_fns.lo util/proc_info.lo util/session_dir.lo util/show_help.lo util/context_fns.lo util/parse_options.lo util/pre_condition_transports.lo util/hnp_contact.lo util/hostfile/hostfile_lex.lo util/hostfile/hostfile.lo util/dash_host/dash_host.lo util/comm/comm.lo util/nidmap.lo orted/orted_main.lo orted/orted_comm.lo mca/errmgr/libmca_errmgr.la mca/ess/libmca_ess.la mca/filem/libmca_filem.la mca/grpcomm/libmca_grpcomm.la mca/iof/libmca_iof.la mca/notifier/libmca_notifier.la mca/odls/libmca_odls.la mca/oob/libmca_oob.la mca/plm/libmca_plm.la mca/ras/libmca_ras.la mca/rmaps/libmca_rmaps.la mca/rml/libmca_rml.la mca/routed/libmca_routed.la mca/snapc/libmca_snapc.la /home/tobias/Downloads/openmpi-1.4.5/opal/libopen-pal.la -lnsl -lutil )
libtool: relink: icc -shared  runtime/.libs/orte_finalize.o runtime/.libs/orte_init.o runtime/.libs/orte_locks.o runtime/.libs/orte_globals.o runtime/data_type_support/.libs/orte_dt_compare_fns.o runtime/data_type_support/.libs/orte_dt_copy_fns.o runtime/data_type_support/.libs/orte_dt_print_fns.o runtime/data_type_support/.libs/orte_dt_release_fns.o runtime/data_type_support/.libs/orte_dt_size_fns.o runtime/data_type_support/.libs/orte_dt_packing_fns.o runtime/data_type_support/.libs/orte_dt_unpacking_fns.o runtime/.libs/orte_mca_params.o runtime/.libs/orte_wait.o runtime/.libs/orte_cr.o runtime/.libs/orte_data_server.o util/.libs/error_strings.o util/.libs/name_fns.o util/.libs/proc_info.o util/.libs/session_dir.o util/.libs/show_help.o util/.libs/context_fns.o util/.libs/parse_options.o util/.libs/pre_condition_transports.o util/.libs/hnp_contact.o util/hostfile/.libs/hostfile_lex.o util/hostfile/.libs/hostfile.o util/dash_host/.libs/dash_host.o util/comm/.libs/comm.o util/.libs/nidmap.o orted/.libs/orted_main.o orted/.libs/orted_comm.o  -Wl,--whole-archive mca/errmgr/.libs/libmca_errmgr.a mca/ess/.libs/libmca_ess.a mca/filem/.libs/libmca_filem.a mca/grpcomm/.libs/libmca_grpcomm.a mca/iof/.libs/libmca_iof.a mca/notifier/.libs/libmca_notifier.a mca/odls/.libs/libmca_odls.a mca/oob/.libs/libmca_oob.a mca/plm/.libs/libmca_plm.a mca/ras/.libs/libmca_ras.a mca/rmaps/.libs/libmca_rmaps.a mca/rml/.libs/libmca_rml.a mca/routed/.libs/libmca_routed.a mca/snapc/.libs/libmca_snapc.a -Wl,--no-whole-archive  -L/usr/local/lib -lopen-pal -ldl -lnsl -lutil  -pthread   -pthread -Wl,-soname -Wl,libopen-rte.so.0 -o .libs/libopen-rte.so.0.0.0
/home/tobias/Downloads/openmpi-1.4.5/libtool: line 7847: icc: command not found
libtool: install: error: relink `libopen-rte.la' with the above command before installing it
make[3]: *** [install-libLTLIBRARIES] Error 1
make[3]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
make[2]: *** [install-am] Error 2
make[2]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/tobias/Downloads/openmpi-1.4.5/orte'
make: *** [install-recursive] Error 1

****  Installation failed. Aborting package creation.

Cleaning up...OK

Bye.


****  Installation failed. Aborting package creation.

Cleaning up...OK

Bye.

Hier wird ein fehlendes icc bemängelt. Allerdings sollte das Programm installiert sein:

1
2
3
4

tobias@brutus:~/Downloads/openmpi-1.4.5$ icc --version
icc (ICC) 12.1.3 20120212
Copyright (C) 1985-2012 Intel Corporation.  All rights reserved.

Lasall

Ehemalige
Avatar von Lasall

Anmeldungsdatum:
30. März 2010

Beiträge: 7723

Hi chloroform,

ich empfehle Grundlagen der Paketerstellung und rate von checkinstall ab, weil du hier kein Quellpaket erstellst und so einfache Anpassungen sehr kompliziert mit langen Optionen für checkinstall übergeben werden müssen (falls Anpssungen beim Build-Prozess überhaupt machbar sind).

Zeige bitte:

echo $PATH
type icc 

Gruss Lasall

chloroform

(Themenstarter)

Anmeldungsdatum:
7. August 2007

Beiträge: 130

Danke schonmal für deine Hilfe ☺

Ich werde mir jetzt mal den Wiki-Artikel durchlesen.

Ich bekomme folgende Ausgaben:

1
2
tobias@brutus:~/Downloads/openmpi-1.4.5$ echo $PATH
/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/opt/intel/composer_xe_2011_sp1.9.293/mpirt/bin/intel64

und

1
2
tobias@brutus:~/Downloads/openmpi-1.4.5$ type icc
icc is hashed (/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/icc)

Immer wenn ich icc auf einer neuen Shell benutzen will, muss ich

1
2

tobias@brutus:~/Downloads/openmpi-1.4.5$ source /opt/intel/composer_xe_2011_sp1.9.293/bin/compilervars.sh intel64

ausführen.

Lasall

Ehemalige
Avatar von Lasall

Anmeldungsdatum:
30. März 2010

Beiträge: 7723

Hi chloroform,

füge einfach icc direkt der PATH-Umgebungsvariable hinzu. Dazu folgende Zeile z.B. in der ~/.bashrc anhängen:

1
export PATH="/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64:$PATH"

Dann musst du nicht vorher sourcen und icc sollte erkannt werden.

Gruss Lasall

chloroform

(Themenstarter)

Anmeldungsdatum:
7. August 2007

Beiträge: 130

Hallo,

ich die Zeile an die ~/.bashrc angehängt. Leider besteht das Problem weiterhin.

Ich habe mir daraufhin mal

http://www.open-mpi.org/community/lists/users/2010/11/14903.php

und

http://www.open-mpi.org/community/lists/users/2011/01/15448.php

durchgelesen und danach mal ./configure --prefix=/usr/local CC=/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/icc CXX=icpc F77=ifort FC=ifort

ausprobiert. Bei sudo make install kommt sieht man wieder

1
2
/home/tobias/Downloads/openmpi-1.4.5/libtool: line 7847: icc: command not found
libtool: install: error: relink `libopen-rte.la' with the above command before installing it

Schöne Grüße

chloroform

(Themenstarter)

Anmeldungsdatum:
7. August 2007

Beiträge: 130

Sry für den Doppelpost:

Mit ./configure --prefix=/usr/local CC=/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/icc CXX=/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/icpc F77=/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/ifort FC=/opt/intel/composer_xe_2011_sp1.9.293/bin/intel64/ifort

und einen sudo bash vor make install ist der Installer ohne Fehlermeldung durchgelaufen 😀

Ich probier jetzt mal das 'Environment Setup' und werde berichten...

chloroform

(Themenstarter)

Anmeldungsdatum:
7. August 2007

Beiträge: 130

Das mit dem Aufbauen der Umgebung hat nicht geklappt. Also habe ich nochmal einen Versuch gestartet cp2k zu bauen und habe folgenden länglichen Output erhalten.

  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
tobias@brutus:~/cp2k-2_2-branch/cp2k/makefiles$ make -j 2 ARCH=Linux-x86-64-intel VERSION=popt
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make LDFLAGS= -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/tools -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile makedepf90
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/tools'
make[1]: `makedepf90' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/tools'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile all.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/all.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile lib.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/lib.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile dbcsr.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/dbcsr_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/dbcsr.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/dbcsr_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile fft.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/fft_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/fft.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/fft_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile ma.dep
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/src/arch_lib'
make[1]: `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt/ma.dep' is up to date.
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/src/arch_lib'
make -C /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../obj/Linux-x86-64-intel/popt -f /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../makefiles/Makefile _progr
tail: cannot open `/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/CVS/Entries' for reading: No such file or directory
make[1]: Entering directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/popt'
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas_poison.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/dbcsr_kinds.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/btree_i8_k_zp2d_v.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/btree_i8_k_sp2d_v.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/btree_i8_k_dp2d_v.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/btree_i8_k_cp2d_v.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/array_types.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fft_kinds.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/min_heap.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/dummy_c_bindings.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/machine_architecture_types.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/ma_kinds.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/ma_dummy_c_bindings.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/ma_config.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas_generic.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas_extra.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/cuda_cublas.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas_netlib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/smm.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/mltfftsg_tools.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/lib/lib_kinds.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/machine_architecture_utils.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/ctrig.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftacml_lib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftcu_lib.F
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftacml_lib.F(133): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value.   [ZOUT]
SUBROUTINE fftacml1dm ( fsign, trans, n, m, zin, zout, scale )
-------------------------------------------------^
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftcu_lib.F(139): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value.   [ZOUT]
SUBROUTINE fftcu1dm ( fsign, trans, n, m, zin, zout, scale )
-----------------------------------------------^
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftessl_lib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftmkl_lib.F
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftessl_lib.F(115): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value.   [ZOUT]
SUBROUTINE fftessl1dm ( fsign, trans, n, m, zin, zout, scale )
-------------------------------------------------^
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftpre.F
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftmkl_lib.F(151): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value.   [ZOUT]
SUBROUTINE fftmkl1dm ( fsign, trans, n, m, zin, zout, scale )
------------------------------------------------^
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftrot.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftsci_lib.F
/home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftsci_lib.F(48): warning #6843: A dummy argument with an explicit INTENT(OUT) declaration is not given an explicit value.   [ZOUT]
SUBROUTINE fftsci1dm ( fsign, trans, n, m, zin, zout, scale )
------------------------------------------------^
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftsg_lib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftstp.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/f77_blas.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/dbcsr_machine.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/dbcsr_lib/dbcsr_c_mpi_calls.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fft_plan.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/ma_machine.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/arch_lib/ma_c_mpi_calls.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/mltfftsg.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/lib/fast.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/lib/grid_fast.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/kahan_sum.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fft_lib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftw2_lib.F
mpif90  -c -D__INTEL -D__FFTSG -D__parallel -D__BLACS -D__SCALAPACK -D__FFTW3 -I/opt/compilers/intel/composer_xe_2011_sp1.6.293/mkl/include/fftw -O3 -msse2 -heap-arrays 64 -funroll-loops -fpp -free -D__COMPILE_ARCH="\"Linux-x86-64-intel\"" -D__COMPILE_DATE="\"Sat Mar 17 01:02:37 CET 2012\"" -D__COMPILE_HOST="\"brutus\"" -D__COMPILE_LASTCVS="\"\"" /home/tobias/cp2k-2_2-branch/cp2k/makefiles/../src/fft_lib/fftw3_lib.F
fftw3_lib.F(115): #error: can't find include file: fftw3.f
fftw3_lib.F(245): #error: can't find include file: fftw3.f
make[1]: *** [fftw3_lib.o] Error 2
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory `/home/tobias/cp2k-2_2-branch/cp2k/obj/Linux-x86-64-intel/popt'
make: *** [build] Error 2

Da wohl erstmal nur die fftw3.f nicht gefunden werden kann, wollte ich mal folgendem Hinweis nachgehen.

The wrapper library libfftw3xf_intel.a is created in this directory. You can link this wrapper to /opt/compilers/intel/composer_xe_2011_sp1.6.233/mkl/lib/intel64.

Jetzt wollte ich fragen, ob mir jemand kurz sagen kann, wie ich das bewerkstellige oder ob mir jemand sagen kann, wo ich das schnell nachlesen kann ☺

Antworten |