Skip to Content.
Sympa Menu

forum - failure of ./configure on installation of version 5.2.2

forum@abinit.org

Subject: The ABINIT Users Mailing List ( CLOSED )

List archive

failure of ./configure on installation of version 5.2.2


Chronological Thread 
  • From: jpcrocombette@cea.fr
  • To: forum@abinit.org
  • Subject: failure of ./configure on installation of version 5.2.2
  • Date: Mon, 4 Sep 2006 16:36:50 +0200

Dear ABINIT users,

I have a problem installing abinit 5.2.2.
I have the same problem with 5.2.0 but 5.1.4 works fine.

The ./configure command fails with this message :

-------------
checking for dummy main to link with Fortran libraries... unknown
configure: error: linking to Fortran libraries from C fails
See `config.log' for more details.
-----------

I join my .ac file and the config.log file below (sorry for the size)

Any suggestion will be welcomed.
Thanks in advance.


Jean-Paul Crocombette

------------------------------------------------------------------------------------------------------

Jean-Paul Crocombette
CEA Saclay, Service de Recherches de Métallurgie Physique (SRMP)
91191 Gif/Yvette Cedex
http://crocombette.free.fr/
jean-paul.crocombette@cea.fr
-----------------------------------------------------------------------------------------------------

srmp62.ac:

#
# Generic config file for ABINIT (documented template)
#
# After editing this file to suit your needs, you may save it as
# "~/.abinit/build/<hostname>.ac" to save these parameters as per-user
# defaults. Just replace "<hostname>" by the name of your machine,
# excluding the domain name.
#
# Example: if your machine is called "myhost.mydomain", you will save
# this file as "~/.abinit/build/myhost.ac".
#
# You may put this file at the top level of an ABINIT source tree as well,
# in which case its definitions will apply to this particular tree only.
#
# Hint: If you do not know the name of your machine, just type "hostname".
#

#
# IMPORTANT NOTES
#
# 1. It may happen that this file is outdated. In such a case, the best is
# to refer to the command-line options of the "configure" script.
#
# To have a complete list of these options, just type "./configure --help"
# from the top source directory of ABINIT.
#
# 2. Setting CPPFLAGS, CFLAGS, CXXFLAGS, or FCFLAGS manually is not
# recommended and will override any other mechanism involved in
# their configuration. Use at your own risks.
#
# A more gentle way to do is to use the "--with-*-optflags" command-line
# options of the "configure" script. See below for details.
#
# 3. Do not forget to remove the leading "#" on a line when you customize
# an option.
#

#
---------------------------------------------------------------------------- #
# Installation
#
#
---------------------------------------------------------------------------- #

# Select which type of installation will be performed by "make install"
# (default is prefix)
#
# Available methods:
#
# * prefix: use specified prefix
# * debian: use Debian rules
# * rpm : use Redhat/Fedora/Mandriva rules
#
# Note: the default is fine for most installations
#
#with_install_type="prefix"

# Where to install ABINIT (default is /opt for the "prefix" method)
#prefix="${HOME}/abinit"

#
---------------------------------------------------------------------------- #
# Preprocessing
#
#
---------------------------------------------------------------------------- #

# C preprocessor (should not be set in most cases)
CPP="/usr/bin/cpp"

# Set preprocessing options (overrides auto-detection)
# Use with care!
#with_cppflags="-DFOO"

#
---------------------------------------------------------------------------- #
# C support
#
#
---------------------------------------------------------------------------- #

# C compiler
CC="gcc"
#CC="cc"

# Set optimizations for C source files (overrides auto-detection)
#with_c_optflags="-O3"

# Add link flags for C binaries (default is unset)
#with_c_ldflags=""

#
---------------------------------------------------------------------------- #
# C++ support
#
#
---------------------------------------------------------------------------- #

# C++ compiler
CXX="g++"

# Set optimizations for C++ source files (overrides auto-detection)
#with_cxx_optflags="-O3"

# Add link flags for C++ binaries (default is unset)
#with_cxx_ldflags=""

#
---------------------------------------------------------------------------- #
# Fortran support
#
#
---------------------------------------------------------------------------- #

# Fortran compiler
FC="ifort"

# Set optimizations for Fortran source files (overrides auto-detection)
#with_fortran_optflags="-O3"

# Add link flags for Fortran binaries (default is unset)
#with_fortran_ldflags=""

# Set per-directory Fortran optimizations (useful when a Fortran compiler
# crashes during the build)
# Note: this option is not available through the command line
#fcflags_opt_11drive="-O0"

#
---------------------------------------------------------------------------- #
# MPI support
#
#
---------------------------------------------------------------------------- #

# Determine whether to build parallel code (default is unset)
# * enable_mpi unset : let the "configure" script decide
# * enable_mpi=yes : force build of parallel code
# * enable_mpi=no : disable MPI support
#enable_mpi="yes"

# Look for the MPI library in <prefix>/lib (default is unset)
# This is required for MPI support if your Fortran compiler has no native
# MPI support
#with_mpi_prefix="/usr/local/mpich-gfortran"

#
# If your MPI installation is not detected, you may set the following
# variables manually (please make sure that "enable_mpi" is set to "yes")
#

# Set MPI C preprocessor (default is unset)
#with_mpi_fc="/usr/local/bin/mpicpp"

# Set MPI-specific preprocessing flags (default is unset)
#with_mpi_cppflags=""

# Set MPI C compiler (default is unset)
#with_mpi_cc="/usr/local/bin/mpicc"

# Set MPI-specific C compile flags (default is unset)
#with_mpi_cflags=""

# Set MPI-specific C link flags (default is unset)
#with_mpi_c_ldflags="-lmpi"

# Set MPI C++ compiler (default is unset)
#with_mpi_cxx="/usr/local/bin/mpic++"

# Set MPI-specific C++ compile flags (default is unset)
#with_mpi_cxxflags=""

# Set MPI-specific C++ link flags (default is unset)
#with_mpi_cxx_ldflags="-lmpi++"

# Set MPI Fortran 90 compiler (default is unset)
#with_mpi_fc="/usr/local/bin/mpif90"

# Set MPI-specific Fortran compile flags (default is unset)
#with_mpi_fcflags=""

# Set MPI-specific Fortran link flags (default is unset)
#with_mpi_fortran_ldflags="-lmpif90"

# Set MPI Runner for tests
#with_mpi_run="/usr/local/bin/mpirun"

#
---------------------------------------------------------------------------- #
# External libraries
#
#
---------------------------------------------------------------------------- #

# Whether to look for external libraries, in order to save build time
# (default is yes)
#enable_library_search="no"

# Look for the BLAS library in <prefix>/lib (default is unset)
#with_blas_prefix="/usr/local/lib/atlas-sse"

# Look for the LAPACK library in <prefix>/lib (default is unset)
#with_lapack_prefix="/usr/local/lib/atlas-sse"

# Whether to enable NetCDF support (default is no)
#enable_netcdf="yes"

# Look for the NetCDF library in <prefix>/lib (default is unset)
#with_netcdf_prefix="/usr/local/lib/netcdf"

# Whether to enable Nanoquanta XC library support (default is no)
#enable_nqxc="yes"

# Look for the Nanoquanta XC library in <prefix>/lib (default is unset)
#with_nqxc_prefix="/usr/local/lib/nqxc"

# Whether to enable XMLF90 library support (default is no)
#enable_xmlf90="yes"

# Look for the XMLF90 library in <prefix>/lib (default is unset)
#with_xmlf90_prefix="/usr/local/lib/xmlf90"

#
---------------------------------------------------------------------------- #
# Developer options
#
#
---------------------------------------------------------------------------- #

# Enable debug mode (default is no)
#enable_debug="yes"

# Enable compiler tricks (default is yes)
enable_tricks="no"

#
---------------------------------------------------------------------------- #
# Maintainer options
#
#
---------------------------------------------------------------------------- #

# The following option will make sure that all libraries are built internally
#force_build_libs="yes"

# Enable dependency tracking
# Though the exact outcome of this is not known at present, you may
# turn it on if you have a taste for adventure
#enable_dependency_tracking="yes"

---------------------------------------------------

CONFIG.LOG file

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by ABINIT configure 5.2.2, which was
generated by GNU Autoconf 2.59. Invocation command line was

$ ./configure

## --------- ##
## Platform. ##
## --------- ##

hostname = srmp62
uname -m = x86_64
uname -r = 2.6.11.4-21.7-smp
uname -s = Linux
uname -v = #1 SMP Thu Jun 2 14:23:14 UTC 2005

/usr/bin/uname -p = unknown
/bin/uname -X = unknown

/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown

PATH: /home/croc/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /bin
PATH: /usr/games
PATH: /opt/gnome/bin
PATH: /opt/kde3/bin
PATH: /opt/intel/fc/9.1.036/bin
PATH: /opt/intel_fc_80/bin
PATH: /sbin
PATH: .
PATH: /home/croc/INFO
PATH: /home/croc/AtomEye
PATH: /home/croc/NDM/bin
PATH: .
PATH: /opt/intel/fc/9.1.036/bin
PATH: /opt/intel_fc_80/bin
PATH: /sbin
PATH: .
PATH: /home/croc/INFO
PATH: /home/croc/AtomEye
PATH: /home/croc/NDM/bin
PATH: .
PATH: /opt/intel/fc/9.1.036/bin
PATH: /opt/intel_fc_80/bin
PATH: /sbin
PATH: .
PATH: /home/croc/INFO
PATH: /home/croc/AtomEye
PATH: /home/croc/NDM/bin
PATH: .
PATH: /opt/intel/fc/9.1.036/bin
PATH: /opt/intel_fc_80/bin
PATH: /sbin
PATH: .
PATH: /home/croc/INFO
PATH: /home/croc/AtomEye
PATH: /home/croc/NDM/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1462: checking build system type
configure:1480: result: x86_64-unknown-linux-gnu
configure:1488: checking host system type
configure:1502: result: x86_64-unknown-linux-gnu
configure:1510: checking target system type
configure:1524: result: x86_64-unknown-linux-gnu
configure:1552: checking for a BSD-compatible install
configure:1607: result: /usr/bin/install -c
configure:1618: checking whether build environment is sane
configure:1661: result: yes
configure:1726: checking for gawk
configure:1742: found /usr/bin/gawk
configure:1752: result: gawk
configure:1762: checking whether make sets $(MAKE)
configure:1782: result: yes
configure:2883: reading options from ./srmp62.ac
configure:3292: checking whether make sets $(MAKE)
configure:3312: result: yes
configure:3334: checking for a BSD-compatible install
configure:3389: result: /usr/bin/install -c
configure:3400: checking whether ln -s works
configure:3404: result: yes
configure:3415: checking for sh
configure:3433: found /bin/sh
configure:3446: result: /bin/sh
configure:3455: checking for perl
configure:3473: found /usr/bin/perl
configure:3486: result: /usr/bin/perl
configure:3495: checking for python
configure:3513: found /usr/bin/python
configure:3526: result: /usr/bin/python
configure:3535: checking for rm
configure:3553: found /bin/rm
configure:3566: result: /bin/rm
configure:3575: checking for mv
configure:3593: found /bin/mv
configure:3606: result: /bin/mv
configure:3615: checking for tar
configure:3633: found /bin/tar
configure:3646: result: /bin/tar
configure:3655: checking for markdown
configure:3686: result: /usr/bin/markdown
configure:3695: checking for latex
configure:3713: found /usr/bin/latex
configure:3726: result: /usr/bin/latex
configure:3735: checking for dvips
configure:3753: found /usr/bin/dvips
configure:3766: result: /usr/bin/dvips
configure:3775: checking for dvipdf
configure:3793: found /usr/bin/dvipdf
configure:3806: result: /usr/bin/dvipdf
configure:3815: checking for ps2pdf
configure:3833: found /usr/bin/ps2pdf
configure:3846: result: /usr/bin/ps2pdf
configure:3855: using internal version of MarkDown
configure:3913: checking for ar
configure:3931: found /usr/bin/ar
configure:3944: result: /usr/bin/ar
configure:3992: checking for ranlib
configure:4008: found /usr/bin/ranlib
configure:4019: result: ranlib
configure:4031: checking for a sed that does not truncate output
configure:4085: result: /usr/bin/sed
configure:4100: checking for style of include used by make
configure:4128: result: GNU
configure:4199: checking for gcc
configure:4225: result: gcc
configure:4469: checking for C compiler version
configure:4472: gcc --version </dev/null >&5
gcc (GCC) 3.3.5 20050117 (prerelease) (SUSE Linux)
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4475: $? = 0
configure:4477: gcc -v </dev/null >&5
Reading specs from /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr
--with-local-prefix=/usr/local --infodir=/usr/share/info
--mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada
--disable-checking --libdir=/usr/lib64 --enable-libgcj --with-slibdir=/lib64
--with-system-zlib --enable-shared --enable-__cxa_atexit x86_64-suse-linux
Thread model: posix
gcc version 3.3.5 20050117 (prerelease) (SUSE Linux)
configure:4480: $? = 0
configure:4482: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:4485: $? = 1
configure:4508: checking for C compiler default output file name
configure:4511: gcc conftest.c >&5
configure:4514: $? = 0
configure:4560: result: a.out
configure:4565: checking whether the C compiler works
configure:4571: ./a.out
configure:4574: $? = 0
configure:4591: result: yes
configure:4598: checking whether we are cross compiling
configure:4600: result: no
configure:4603: checking for suffix of executables
configure:4605: gcc -o conftest conftest.c >&5
configure:4608: $? = 0
configure:4633: result:
configure:4639: checking for suffix of object files
configure:4660: gcc -c conftest.c >&5
configure:4663: $? = 0
configure:4685: result: o
configure:4689: checking whether we are using the GNU C compiler
configure:4713: gcc -c conftest.c >&5
configure:4719: $? = 0
configure:4723: test -z
|| test ! -s conftest.err
configure:4726: $? = 0
configure:4729: test -s conftest.o
configure:4732: $? = 0
configure:4745: result: yes
configure:4751: checking whether gcc accepts -g
configure:4772: gcc -c -g conftest.c >&5
configure:4778: $? = 0
configure:4782: test -z
|| test ! -s conftest.err
configure:4785: $? = 0
configure:4788: test -s conftest.o
configure:4791: $? = 0
configure:4802: result: yes
configure:4819: checking for gcc option to accept ANSI C
configure:4889: gcc -c conftest.c >&5
configure:4895: $? = 0
configure:4899: test -z
|| test ! -s conftest.err
configure:4902: $? = 0
configure:4905: test -s conftest.o
configure:4908: $? = 0
configure:4926: result: none needed
configure:4944: gcc -c conftest.c >&5
conftest.c:2: error: syntax error before "me"
configure:4950: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:5085: checking dependency style of gcc
configure:5175: result: gcc3
configure:5192: checking for egrep
configure:5202: result: grep -E
configure:5218: checking for ld used by gcc
configure:5285: result: /usr/x86_64-suse-linux/bin/ld
configure:5294: checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU
ld
configure:5309: result: yes
configure:5316: checking for sed
configure:5361: result: /usr/bin/sed
configure:5401: checking how to run the C preprocessor
configure:5519: result: /usr/bin/cpp
configure:5543: /usr/bin/cpp conftest.c
configure:5549: $? = 0
configure:5581: /usr/bin/cpp conftest.c
conftest.c:17:28: ac_nonexistent.h: No such file or directory
configure:5587: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5632: checking for the true C preprocessor
configure:5684: result: /lib/cpp
configure:5739: checking for gcc
configure:5765: result: gcc
configure:6009: checking for C compiler version
configure:6012: gcc --version </dev/null >&5
gcc (GCC) 3.3.5 20050117 (prerelease) (SUSE Linux)
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:6015: $? = 0
configure:6017: gcc -v </dev/null >&5
Reading specs from /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr
--with-local-prefix=/usr/local --infodir=/usr/share/info
--mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada
--disable-checking --libdir=/usr/lib64 --enable-libgcj --with-slibdir=/lib64
--with-system-zlib --enable-shared --enable-__cxa_atexit x86_64-suse-linux
Thread model: posix
gcc version 3.3.5 20050117 (prerelease) (SUSE Linux)
configure:6020: $? = 0
configure:6022: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:6025: $? = 1
configure:6028: checking whether we are using the GNU C compiler
configure:6084: result: yes
configure:6090: checking whether gcc accepts -g
configure:6141: result: yes
configure:6158: checking for gcc option to accept ANSI C
configure:6265: result: none needed
configure:6283: gcc -c conftest.c >&5
conftest.c:2: error: syntax error before "me"
configure:6289: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:6424: checking dependency style of gcc
configure:6514: result: gcc3
configure:6537: checking if we are using the GNU C compiler
configure:6561: result: yes
configure:6727: checking for the size of a pointer
configure:6739: gcc -o pointertest.x pointertest.c 1>&5
pointertest.c: In function `main':
pointertest.c:3: warning: return type of `main' is not `int'
configure:6742: $? = 0
configure:6760: result: 8 bytes
configure:6767: checking whether byte ordering is bigendian
configure:6794: gcc -c conftest.c >&5
configure:6800: $? = 0
configure:6804: test -z
|| test ! -s conftest.err
configure:6807: $? = 0
configure:6810: test -s conftest.o
configure:6813: $? = 0
configure:6837: gcc -c conftest.c >&5
conftest.c: In function `main':
conftest.c:26: error: `not' undeclared (first use in this function)
conftest.c:26: error: (Each undeclared identifier is reported only once
conftest.c:26: error: for each function it appears in.)
conftest.c:26: error: syntax error before "big"
configure:6843: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:6978: result: no
configure:7182: checking for C++ compiler version
configure:7185: g++ --version </dev/null >&5
g++ (GCC) 3.3.5 20050117 (prerelease) (SUSE Linux)
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:7188: $? = 0
configure:7190: g++ -v </dev/null >&5
Reading specs from /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr
--with-local-prefix=/usr/local --infodir=/usr/share/info
--mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada
--disable-checking --libdir=/usr/lib64 --enable-libgcj --with-slibdir=/lib64
--with-system-zlib --enable-shared --enable-__cxa_atexit x86_64-suse-linux
Thread model: posix
gcc version 3.3.5 20050117 (prerelease) (SUSE Linux)
configure:7193: $? = 0
configure:7195: g++ -V </dev/null >&5
g++: `-V' option must have argument
configure:7198: $? = 1
configure:7201: checking whether we are using the GNU C++ compiler
configure:7225: g++ -c conftest.cc >&5
configure:7231: $? = 0
configure:7235: test -z
|| test ! -s conftest.err
configure:7238: $? = 0
configure:7241: test -s conftest.o
configure:7244: $? = 0
configure:7257: result: yes
configure:7263: checking whether g++ accepts -g
configure:7284: g++ -c -g conftest.cc >&5
configure:7290: $? = 0
configure:7294: test -z
|| test ! -s conftest.err
configure:7297: $? = 0
configure:7300: test -s conftest.o
configure:7303: $? = 0
configure:7314: result: yes
configure:7356: g++ -c conftest.cc >&5
configure:7362: $? = 0
configure:7366: test -z
|| test ! -s conftest.err
configure:7369: $? = 0
configure:7372: test -s conftest.o
configure:7375: $? = 0
configure:7401: g++ -c conftest.cc >&5
conftest.cc: In function `int main()':
conftest.cc:23: error: `exit' undeclared (first use this function)
conftest.cc:23: error: (Each undeclared identifier is reported only once for
each function it appears in.)
configure:7407: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:7356: g++ -c conftest.cc >&5
configure:7362: $? = 0
configure:7366: test -z
|| test ! -s conftest.err
configure:7369: $? = 0
configure:7372: test -s conftest.o
configure:7375: $? = 0
configure:7401: g++ -c conftest.cc >&5
configure:7407: $? = 0
configure:7411: test -z
|| test ! -s conftest.err
configure:7414: $? = 0
configure:7417: test -s conftest.o
configure:7420: $? = 0
configure:7445: checking dependency style of g++
configure:7535: result: gcc3
configure:7558: checking if we are using the GNU C++ compiler
configure:7583: result: yes
configure:7926: checking for Fortran compiler version
configure:7929: ifort --version </dev/null >&5
ifort (IFORT) 9.1 20060706
Copyright (C) 1985-2006 Intel Corporation. All rights reserved.

configure:7932: $? = 0
configure:7934: ifort -v </dev/null >&5
Version 9.1
configure:7937: $? = 0
configure:7939: ifort -V </dev/null >&5
Intel(R) Fortran Compiler for 32-bit applications, Version 9.1 Build
20060706Z Package ID: l_fc_c_9.1.036
Copyright (C) 1985-2006 Intel Corporation. All rights reserved.
FOR NON-COMMERCIAL USE ONLY

configure:7942: $? = 0
configure:7950: checking whether we are using the GNU Fortran compiler
configure:7964: ifort -c conftest.F >&5
fortcom: Error: conftest.F, line 3: Syntax error, found END-OF-STATEMENT when
expecting one of: => = . ( : %
choke me
---------------^
fortcom: Error: conftest.F, line 3: This statement is positioned incorrectly
and/or has syntax errors.
choke me
---------------^
compilation aborted for conftest.F (code 1)
configure:7970: $? = 1
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:7996: result: no
configure:8002: checking whether ifort accepts -g
configure:8014: ifort -c -g conftest.f >&5
configure:8020: $? = 0
configure:8024: test -z
|| test ! -s conftest.err
configure:8027: $? = 0
configure:8030: test -s conftest.o
configure:8033: $? = 0
configure:8045: result: yes
configure:8079: checking if we are using the G95 Fortran compiler
configure:8107: result: no
configure:8113: checking if we are using the Intel Fortran compiler
configure:8136: result: yes
configure:8558: checking whether the Fortran compiler accepts exit()
configure:8574: ifort -o conftest conftest.F90 >&5
configure:8580: $? = 0
configure:8584: test -z
|| test ! -s conftest.err
configure:8587: $? = 0
configure:8590: test -s conftest
configure:8593: $? = 0
configure:8618: result: yes
configure:8638: checking how to get verbose linking output from ifort
configure:8649: ifort -c conftest.F90 >&5
configure:8655: $? = 0
configure:8659: test -z
|| test ! -s conftest.err
configure:8662: $? = 0
configure:8665: test -s conftest.o
configure:8668: $? = 0
configure:8685: ifort -o conftest -v conftest.F90 >&5
Version 9.1
/opt/intel/fc/9.1.036/bin/fpp -D__INTEL_COMPILER=910 -D__ELF__
-D__INTEL_COMPILER_BUILD_DATE=20060706 -D__PTRDIFF_TYPE__=int
-D__SIZE_TYPE__=unsigned "-D__WCHAR_TYPE__=long int"
"-D__WINT_TYPE__=unsigned int" -D__unix__ -D__unix -D__linux__ -D__linux
-D__gnu_linux__ -Dunix -Dlinux -D__i386 -D__i386__ -Di386 -I.
-I/opt/intel/fc/9.1.036/include -I/opt/intel/fc/9.1.036/substitute_headers
-I/usr/local/include -I/usr/include
-I/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/include -4Ycpp -4Ncvf -f_com=yes
conftest.F90 /tmp/ifortAJalYq.f90
/opt/intel/fc/9.1.036/bin/fortcom -D__INTEL_COMPILER=910 -D__ELF__
-D__INTEL_COMPILER_BUILD_DATE=20060706 -D__unix__ -D__unix -D__linux__
-D__linux -D__gnu_linux__ -Dunix -Dlinux -D__i386 -D__i386__ -Di386
-mGLOB_pack_sort_init_list -I. -I/opt/intel/fc/9.1.036/include
-I/opt/intel/fc/9.1.036/substitute_headers -I/usr/local/include
-I/usr/include -I/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/include -O2
-mP1OPT_version=910 -mGLOB_source_language=GLOB_SOURCE_LANGUAGE_F90
-mGLOB_tune_for_fort -mGLOB_use_fort_dope_vector -mP2OPT_static_promotion
-mP1OPT_print_version=FALSE -mP3OPT_use_mspp_call_convention
-mCG_use_gas_got_workaround=F -mP2OPT_align_option_used=TRUE
"-mGLOB_options_string=-o conftest -v" -mGLOB_cxx_limited_range=FALSE
-mGLOB_as_output_backup_file_name=/tmp/ifortiqc7gMas_.s
-mGLOB_machine_model=GLOB_MACHINE_MODEL_IA32_NONE
-mP2OPT_subs_out_of_bound=FALSE -mIPOPT_ninl_user_level=2 -mIPOPT_activate
-mIPOPT_lite -mP2OPT_hlo_level=2 -mP2OPT_hlo
-mIPOPT_obj_output_file_name=/tmp/ifortG2TAlZ.o
"-mGLOB_linker_version=2.15.94.0.2.2 20041220 (SuSE Linux)"
-mP3OPT_asm_target=P3OPT_ASM_TARGET_GAS
-mGLOB_obj_output_file=/tmp/ifortG2TAlZ.o
-mGLOB_source_dialect=GLOB_SOURCE_DIALECT_FORTRAN
-mP1OPT_source_file_name=conftest.F90 /tmp/ifortAJalYq.f90
ld /usr/lib/crt1.o /usr/lib/crti.o
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/crtbegin.o --eh-frame-hdr
-dynamic-linker /lib/ld-linux.so.2 -m elf_i386 -o conftest
/opt/intel/fc/9.1.036/lib/for_main.o /tmp/ifortG2TAlZ.o
-L/opt/intel/fc/9.1.036/lib -L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -Bstatic
-lifport -lifcore -limf -Bdynamic -lm -Bstatic -lipgo -Bdynamic -Bstatic
-lirc -Bdynamic -lc -lgcc_s -lgcc -Bstatic -lirc_s -Bdynamic -ldl -lc
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/crtend.o /usr/lib/crtn.o
--sort-section name
rm /tmp/ifortwVnxIxgnudirs

rm /tmp/ifortAJalYq.f90

rm /tmp/ifortWGUPBSarg

rm /tmp/ifortYrRhqkgas

rm /tmp/ifortiqc7gMas_.s

rm /tmp/ifortGWvx7dldashv

rm /tmp/ifortk5C3VDarg

rm /tmp/ifortG2TAlZ.o
configure:8740: result: -v
configure:8742: checking for Fortran libraries of ifort
configure:8763: ifort -o conftest -v conftest.F90 >&5
Version 9.1
/opt/intel/fc/9.1.036/bin/fpp -D__INTEL_COMPILER=910 -D__ELF__
-D__INTEL_COMPILER_BUILD_DATE=20060706 -D__PTRDIFF_TYPE__=int
-D__SIZE_TYPE__=unsigned "-D__WCHAR_TYPE__=long int"
"-D__WINT_TYPE__=unsigned int" -D__unix__ -D__unix -D__linux__ -D__linux
-D__gnu_linux__ -Dunix -Dlinux -D__i386 -D__i386__ -Di386 -I.
-I/opt/intel/fc/9.1.036/include -I/opt/intel/fc/9.1.036/substitute_headers
-I/usr/local/include -I/usr/include
-I/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/include -4Ycpp -4Ncvf -f_com=yes
conftest.F90 /tmp/ifortuQf8IQ.f90
/opt/intel/fc/9.1.036/bin/fortcom -D__INTEL_COMPILER=910 -D__ELF__
-D__INTEL_COMPILER_BUILD_DATE=20060706 -D__unix__ -D__unix -D__linux__
-D__linux -D__gnu_linux__ -Dunix -Dlinux -D__i386 -D__i386__ -Di386
-mGLOB_pack_sort_init_list -I. -I/opt/intel/fc/9.1.036/include
-I/opt/intel/fc/9.1.036/substitute_headers -I/usr/local/include
-I/usr/include -I/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/include -O2
-mP1OPT_version=910 -mGLOB_source_language=GLOB_SOURCE_LANGUAGE_F90
-mGLOB_tune_for_fort -mGLOB_use_fort_dope_vector -mP2OPT_static_promotion
-mP1OPT_print_version=FALSE -mP3OPT_use_mspp_call_convention
-mCG_use_gas_got_workaround=F -mP2OPT_align_option_used=TRUE
"-mGLOB_options_string=-o conftest -v" -mGLOB_cxx_limited_range=FALSE
-mGLOB_as_output_backup_file_name=/tmp/ifortKWxzdzas_.s
-mGLOB_machine_model=GLOB_MACHINE_MODEL_IA32_NONE
-mP2OPT_subs_out_of_bound=FALSE -mIPOPT_ninl_user_level=2 -mIPOPT_activate
-mIPOPT_lite -mP2OPT_hlo_level=2 -mP2OPT_hlo
-mIPOPT_obj_output_file_name=/tmp/ifortaaIuhh.o
"-mGLOB_linker_version=2.15.94.0.2.2 20041220 (SuSE Linux)"
-mP3OPT_asm_target=P3OPT_ASM_TARGET_GAS
-mGLOB_obj_output_file=/tmp/ifortaaIuhh.o
-mGLOB_source_dialect=GLOB_SOURCE_DIALECT_FORTRAN
-mP1OPT_source_file_name=conftest.F90 /tmp/ifortuQf8IQ.f90
ld /usr/lib/crt1.o /usr/lib/crti.o
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/crtbegin.o --eh-frame-hdr
-dynamic-linker /lib/ld-linux.so.2 -m elf_i386 -o conftest
/opt/intel/fc/9.1.036/lib/for_main.o /tmp/ifortaaIuhh.o
-L/opt/intel/fc/9.1.036/lib -L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -Bstatic
-lifport -lifcore -limf -Bdynamic -lm -Bstatic -lipgo -Bdynamic -Bstatic
-lirc -Bdynamic -lc -lgcc_s -lgcc -Bstatic -lirc_s -Bdynamic -ldl -lc
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/crtend.o /usr/lib/crtn.o
--sort-section name
rm /tmp/ifortIf1yPHgnudirs

rm /tmp/ifortuQf8IQ.f90

rm /tmp/ifortkx1e4parg

rm /tmp/ifortaipqyZgas

rm /tmp/ifortKWxzdzas_.s

rm /tmp/ifortWgio38ldashv

rm /tmp/ifortwzXBdJarg

rm /tmp/ifortaaIuhh.o
configure:8924: result: -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl
configure:8940: checking for dummy main to link with Fortran libraries
configure:8979: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:8985: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
|
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN MAIN__
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN MAIN_
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN __main
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN MAIN
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN _MAIN
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN __MAIN
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN main_
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN main__
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9036: gcc -o conftest conftest.c -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl >&5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible /opt/intel/fc/9.1.036/lib/libifport.so.5 when
searching for libifport.so.5
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
cannot find libifport.so.5
collect2: ld returned 1 exit status
configure:9042: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "ABINIT"
| #define PACKAGE_TARNAME "abinit"
| #define PACKAGE_VERSION "5.2.2"
| #define PACKAGE_STRING "ABINIT 5.2.2"
| #define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
| #define PACKAGE "abinit"
| #define VERSION "5.2.2"
| #define ABINIT_VERSION "5.2.2"
| #define ABINIT_VERSION_MAJOR "5"
| #define ABINIT_VERSION_MINOR "2"
| #define ABINIT_VERSION_MICRO "2"
| #define ABINIT_VERSION_BUILD "20060904"
| #define ABINIT_VERSION_BASE "5.2"
| #define GNU_CC 1
| #define POINTER_SIZE 8
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define GNU_CXX 1
| #define INTEL_FC 1
| #define HAVE_FORTRAN_EXIT 1
| /* end confdefs.h. */
| #define FC_DUMMY_MAIN _main
| #ifdef FC_DUMMY_MAIN
| #ifndef FC_DUMMY_MAIN_EQ_F77
| # ifdef __cplusplus
| extern "C"
| # endif
| int FC_DUMMY_MAIN() { return 1; }
| #endif
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:9076: result: unknown
configure:9096: error: linking to Fortran libraries from C fails
See `config.log' for more details.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_build_alias=x86_64-unknown-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_FCFLAGS_set=
ac_cv_env_FCFLAGS_value=
ac_cv_env_FC_set=
ac_cv_env_FC_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_fc_compiler_gnu=no
ac_cv_fc_dummy_main=unknown
ac_cv_fc_libs=' -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl'
ac_cv_fortran_dummy_main=unknown
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_host_alias=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_AR=/usr/bin/ar
ac_cv_path_BOURNE_SHELL=/bin/sh
ac_cv_path_DVI2PDF=/usr/bin/dvipdf
ac_cv_path_DVI2PS=/usr/bin/dvips
ac_cv_path_LATEX=/usr/bin/latex
ac_cv_path_MARKDOWN=/usr/bin/markdown
ac_cv_path_MV=/bin/mv
ac_cv_path_PERL=/usr/bin/perl
ac_cv_path_PS2PDF=/usr/bin/ps2pdf
ac_cv_path_PYTHON=/usr/bin/python
ac_cv_path_RM=/bin/rm
ac_cv_path_TAR=/bin/tar
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP=/usr/bin/cpp
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_fc_g=yes
ac_cv_prog_fc_v=-v
ac_cv_prog_make_make_set=yes
ac_cv_target=x86_64-unknown-linux-gnu
ac_cv_target_alias=x86_64-unknown-linux-gnu
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_path_LD=/usr/x86_64-suse-linux/bin/ld
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_gnu_ld=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ABINIT_BINARY_PACKAGE=''
ABINIT_TARGET=''
ABINIT_VERSION='5.2.2'
ABINIT_VERSION_BASE='5.2'
ABINIT_VERSION_BUILD='20060904'
ABINIT_VERSION_MAJOR='5'
ABINIT_VERSION_MICRO='2'
ABINIT_VERSION_MINOR='2'
ACLOCAL='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing
--run aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing --run
tar'
AR='/usr/bin/ar'
AUTOCONF='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing
--run autoconf'
AUTOHEADER='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing
--run autoheader'
AUTOMAKE='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing
--run automake-1.9'
AWK='gawk'
BOURNE_SHELL='/bin/sh'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CC_LDFLAGS_OPT=''
CFLAGS=''
CFLAGS_64BIT=''
CFLAGS_64BITS=''
CFLAGS_LINALG=''
CFLAGS_NETCDF=''
CFLAGS_NQXC=''
CFLAGS_OPT=''
CFLAGS_XMLF90=''
CPP='/usr/bin/cpp'
CPPFLAGS=''
CPPFLAGS_64BIT=''
CPPFLAGS_LINALG=''
CPPFLAGS_NETCDF=''
CPPFLAGS_NQXC=''
CPPFLAGS_OPT=''
CPPFLAGS_XMLF90=''
CXX='g++'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS=''
CXXFLAGS_64BIT=''
CXXFLAGS_64BITS=''
CXXFLAGS_LINALG=''
CXXFLAGS_NETCDF=''
CXXFLAGS_NQXC=''
CXXFLAGS_OPT=''
CXXFLAGS_XMLF90=''
CXX_LDFLAGS_OPT=''
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DO_BUILD_LINALG_FALSE=''
DO_BUILD_LINALG_TRUE=''
DO_BUILD_NETCDF_FALSE=''
DO_BUILD_NETCDF_TRUE=''
DO_BUILD_NQXC_FALSE=''
DO_BUILD_NQXC_TRUE=''
DO_BUILD_PARALLEL_FALSE=''
DO_BUILD_PARALLEL_TRUE=''
DO_BUILD_XMLF90_FALSE=''
DO_BUILD_XMLF90_TRUE=''
DO_ENABLE_LINALG_FALSE=''
DO_ENABLE_LINALG_TRUE=''
DO_ENABLE_NETCDF_FALSE=''
DO_ENABLE_NETCDF_TRUE=''
DO_ENABLE_NQXC_FALSE=''
DO_ENABLE_NQXC_TRUE=''
DO_ENABLE_XMLF90_FALSE=''
DO_ENABLE_XMLF90_TRUE=''
DVI2PDF='/usr/bin/dvipdf'
DVI2PS='/usr/bin/dvips'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
EXTRA_CC_LDFLAGS=''
EXTRA_CFLAGS=''
EXTRA_CPPFLAGS=''
EXTRA_CXXFLAGS=''
EXTRA_CXX_LDFLAGS=''
EXTRA_FCFLAGS=''
EXTRA_FC_LDFLAGS=''
F77=''
FC='ifort'
FCFLAGS=''
FCFLAGS_64BIT=''
FCFLAGS_64BITS=''
FCFLAGS_FIXEDFORM=''
FCFLAGS_FREEFORM=''
FCFLAGS_LINALG=''
FCFLAGS_NETCDF=''
FCFLAGS_NQXC=''
FCFLAGS_OPT=''
FCFLAGS_XMLF90=''
FCLIBS=' -L/opt/intel/fc/9.1.036/lib
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32
-L/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/32/.. -L/usr/lib -lifport
-lifcore -limf -lm -lipgo -lirc -lgcc_s -lirc_s -ldl'
FC_LDFLAGS_OPT=''
FC_NOWRAP=''
FFLAGS=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LATEX='/usr/bin/latex'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LN_S='ln -s'
LTLIBOBJS=''
LTXFLAGS=''
MAKEINFO='${SHELL} /home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/missing
--run makeinfo'
MARKDOWN='/home/croc/SEAI/abinit/abinit-5.2.2/bin/markdown'
MDFLAGS=''
MPI_CC=''
MPI_CC_LDFLAGS=''
MPI_CFLAGS=''
MPI_CPP=''
MPI_CPPFLAGS=''
MPI_CXX=''
MPI_CXXFLAGS=''
MPI_CXX_LDFLAGS=''
MPI_FC=''
MPI_FCFLAGS=''
MPI_FC_LDFLAGS=''
MPI_RUN=''
MV='/bin/mv'
OBJEXT='o'
PACKAGE='abinit'
PACKAGE_BUGREPORT='pouillon@pcpm.ucl.ac.be'
PACKAGE_NAME='ABINIT'
PACKAGE_STRING='ABINIT 5.2.2'
PACKAGE_TARNAME='abinit'
PACKAGE_VERSION='5.2.2'
PATH_SEPARATOR=':'
PDFFLAGS=''
PERL='/usr/bin/perl'
PS2PDF='/usr/bin/ps2pdf'
PYTHON='/usr/bin/python'
RANLIB='ranlib'
RM='/bin/rm'
SED='/usr/bin/sed'
SEQ_FC=''
SET_MAKE=''
SHELL='/bin/sh'
STRIP=''
TAR='/bin/tar'
TRUE_CPP='/lib/cpp'
TRUE_CPPFLAGS='-P -std=c89'
VERSION='5.2.2'
abi_cpu_64bits='yes'
abi_cpu_model='unknown'
abinit_bindir='/opt/abinit/5.2/bin'
abinit_builddir='/home/croc/SEAI/abinit/abinit-5.2.2'
abinit_datdir='/opt/abinit'
abinit_docdir='/opt/abinit/5.2/doc'
abinit_incdir='/opt/abinit/5.2/include'
abinit_libdir='/opt/abinit/5.2/lib'
abinit_mandir='/opt/abinit/man'
abinit_prefix='/opt'
abinit_rundir='/opt/abinit/bin'
abinit_srcdir='/home/croc/SEAI/abinit/abinit-5.2.2'
abinit_wwwdir='/opt/abinit/5.2/www'
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_FC=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_linalg=''
build_netcdf=''
build_nqxc=''
build_os='linux-gnu'
build_vendor='unknown'
build_xmlf90=''
cc_type='gnu'
cc_version='3.3.5'
cxx_type='gnu'
cxx_version='3.3.5'
datadir='${prefix}/share'
enable_64bit_flags='no'
enable_config_file='yes'
enable_debug='no'
enable_extlibs='yes'
enable_fc_wrapper=''
enable_fftw='no'
enable_fftw_threads='no'
enable_fortran_interfaces='yes'
enable_linalg='yes'
enable_mpi=''
enable_mpi_trace='no'
enable_netcdf='no'
enable_nqxc='no'
enable_smart_config='yes'
enable_stdin='yes'
enable_tricks='no'
enable_xmlf90='no'
exec_prefix='NONE'
fc_type='intel'
fc_version='9.1'
fc_wrap='no'
fcflags_opt_00basis=''
fcflags_opt_01cg=''
fcflags_opt_01contract=''
fcflags_opt_01managempi=''
fcflags_opt_01util=''
fcflags_opt_02ffts=''
fcflags_opt_02geometry=''
fcflags_opt_02nlstrain=''
fcflags_opt_02parser=''
fcflags_opt_02poisson=''
fcflags_opt_02psp=''
fcflags_opt_02spacepar=''
fcflags_opt_03ionetcdf=''
fcflags_opt_03iovars=''
fcflags_opt_03nonlocal=''
fcflags_opt_03paw=''
fcflags_opt_03recipspace=''
fcflags_opt_03xc=''
fcflags_opt_03xml=''
fcflags_opt_04bader=''
fcflags_opt_04iowfdenpot=''
fcflags_opt_04occeig=''
fcflags_opt_04rsprc=''
fcflags_opt_04wfs=''
fcflags_opt_05common=''
fcflags_opt_05gw=''
fcflags_opt_06geomoptim=''
fcflags_opt_06response=''
fcflags_opt_07ddb=''
fcflags_opt_07lwf=''
fcflags_opt_07suscep=''
fcflags_opt_08seqpar=''
fcflags_opt_09cut3d=''
fcflags_opt_11drive=''
fcflags_opt_defs=''
fcflags_opt_lib01fftnew=''
fcflags_opt_light=''
fcflags_opt_macroav=''
fcflags_opt_nqxc=''
fcflags_opt_numeric=''
fcflags_opt_numericf90=''
fftw_include=''
fftw_ldflags=''
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/croc/SEAI/abinit/abinit-5.2.2/config/gnu/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
light_include=''
linalg_include=''
linalg_ldflags=''
linalg_pkg_name='lapack-pre_abinit_3.2'
linalg_pkg_string='An old, robust, version of Lapack library (hacked for
ABINIT by Yann Pouillon)'
linalg_tricks_bypass=''
localstatedir='${prefix}/var'
macroav_include=''
mandir='${prefix}/man'
mkdir_p='mkdir -p --'
mpi_native_run=''
mpi_type=''
mpi_usable=''
netcdf_include=''
netcdf_ldflags=''
netcdf_pkg_name='netcdf-3.6.0-p1'
netcdf_pkg_string='NetCDF 3.6.0-p1 (upstream release)'
nqxc_include=''
nqxc_ldflags=''
nqxc_pkg_name='libxc-0.1.0'
nqxc_pkg_string='Nanoquanta XC library 20051128-CVS (hacked for ABINIT by
Yann Pouillon)'
numeric_include=''
numericf90_include=''
oldincludedir='/usr/include'
prefix='NONE'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='x86_64-unknown-linux-gnu'
target_alias=''
target_cpu='x86_64'
target_os='linux-gnu'
target_vendor='unknown'
with_cc_ldflags=''
with_cc_optflags=''
with_config_file=''
with_cppflags=''
with_cxx_ldflags=''
with_cxx_optflags=''
with_fc_ldflags=''
with_fc_optflags=''
with_fftw_ldflags=''
with_gnu_ld='yes'
with_install_type='prefix'
with_linalg_ldflags=''
with_linalg_type=''
with_mpi_cc=''
with_mpi_cc_ldflags=''
with_mpi_cflags=''
with_mpi_cpp=''
with_mpi_cppflags=''
with_mpi_cxx=''
with_mpi_cxx_ldflags=''
with_mpi_cxxflags=''
with_mpi_fc=''
with_mpi_fc_ldflags=''
with_mpi_fcflags=''
with_mpi_prefix=''
with_mpi_run=''
with_netcdf_include=''
with_netcdf_ldflags=''
with_nqxc_include=''
with_nqxc_ldflags=''
with_xmlf90_include=''
with_xmlf90_ldflags=''
xmlf90_include=''
xmlf90_ldflags=''
xmlf90_pkg_name='xmlf90-1.2g'
xmlf90_pkg_string='XML Fortran 90 library 1.2g (hacked for ABINIT by Yann
Pouillon)'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define ABINIT_VERSION "5.2.2"
#define ABINIT_VERSION_BASE "5.2"
#define ABINIT_VERSION_BUILD "20060904"
#define ABINIT_VERSION_MAJOR "5"
#define ABINIT_VERSION_MICRO "2"
#define ABINIT_VERSION_MINOR "2"
#define GNU_CC 1
#define GNU_CXX 1
#define HAVE_FORTRAN_EXIT 1
#define INTEL_FC 1
#define PACKAGE "abinit"
#define PACKAGE_BUGREPORT "pouillon@pcpm.ucl.ac.be"
#define PACKAGE_NAME "ABINIT"
#define PACKAGE_STRING "ABINIT 5.2.2"
#define PACKAGE_TARNAME "abinit"
#define PACKAGE_VERSION "5.2.2"
#define POINTER_SIZE 8
#define VERSION "5.2.2"
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;

configure: exit 1



Archive powered by MHonArc 2.6.16.

Top of Page