incorrect AMD math library link order

Max R. Dechantsreiter max at performancejones.com
Tue Mar 12 06:57:57 CDT 2024


An HTML attachment was scrubbed...
URL: <http://lists.mcs.anl.gov/pipermail/parallel-netcdf/attachments/20240312/8f2c533b/attachment-0001.html>
-------------- next part --------------

# -------------------------------------------------------
# Build PnetCDF using OpenMPI 5.0.2 built with AOCC 4.2.0
# -------------------------------------------------------
#
#      https://parallel-netcdf.github.io/
#      https://parallel-netcdf.github.io/wiki/Download.html
#
# [Times below are for building on Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz]

# Start time
SECONDS=0

PROJECT=$HOME/AOCC

# -------------------------------
# Set environment for build tools
# -------------------------------

# AOCC

AOCC_VERSION=4.2.0 # 2024-02-27
AOCC=aocc-$AOCC_VERSION

PROJECT_AOCC=$PROJECT/opt/amd/aocc/$AOCC_VERSION
source $PROJECT_AOCC/bin/setenv_AOCC.sh

# AOCL

AOCL_VERSION=$AOCC_VERSION

PROJECT_AOCL=$PROJECT/opt/amd/aocl/$AOCL_VERSION/aocc
source $PROJECT_AOCL/amd-libs.cfg

# Facilitate use of AMD libm

export LD_LIBRARY_PATH=$PROJECT_AOCC/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}

# AND link with '-lamdlibm -lm' instead of '-lm'

# OpenMPI

OMPI_VERSION=5.0.2 # 2024-02-06
OMPI=openmpi-${OMPI_VERSION}_$AOCC

HWLOC_VERSION=2.10.0 # 2023-12-04
HWLOC=hwloc-${HWLOC_VERSION}_$AOCC

PROJECT_OMPI=$PROJECT/opt/amd/ompi

CPATH=$PROJECT_OMPI/$HWLOC/include${CPATH:+:$CPATH}
PATH=$PROJECT_OMPI/$HWLOC/bin${PATH:+:$PATH}
LD_LIBRARY_PATH=$PROJECT_OMPI/$HWLOC/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}

CPATH=$PROJECT_OMPI/$OMPI/include${CPATH:+:$CPATH}
PATH=$PROJECT_OMPI/$OMPI/bin${PATH:+:$PATH}
LD_LIBRARY_PATH=$PROJECT_OMPI/$OMPI/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}

export CPATH PATH LD_LIBRARY_PATH
export HWLOC_ALLOW=all # VPS workaround

# Set environment for other build tools

#MAKE=gmake
MAKE=make # Linux make is gmake
export MAKEFLAGS="V=1 -j1"

# Check build tools

clang --version | grep AMD
# AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)

gcc --version | grep gcc
# gcc (Debian 10.2.1-6) 10.2.1 20210110

ompi_info | grep "Open MPI:"
#                 Open MPI: 5.0.2

make --version | grep Make
# GNU Make 4.3

# Build PnetCDF

PNETCDF_VERSION=1.12.3 # 2022-02-21
PNETCDF=pnetcdf-$PNETCDF_VERSION

ARCHIVE=$PROJECT/Archive
BUILD=$PROJECT/Build
LIB=$PROJECT/opt/amd/lib

mkdir -p $ARCHIVE $BUILD $LIB

# Set installation directory

PREFIX=$LIB/$PNETCDF

# Download source

cd $ARCHIVE

PNETCDF_TAR_GZ=$PNETCDF.tar.gz
if [ ! -f "$PNETCDF_TAR_GZ" ]; then
	wget https://parallel-netcdf.github.io/Release/$PNETCDF_TAR_GZ
fi

CHECKSUM=$(sha1sum $PNETCDF_TAR_GZ)
CHECKSUM=$(echo $CHECKSUM | sed -e 's/ .*$//')
if [ "$CHECKSUM" = "097041f8f102c7c55d703750b576ae48460aa3a3" ]; then
	echo "Checksum OK."
else
	echo "Checksum ERROR."
	exit
fi
# Checksum OK.

cd $BUILD
tar xzf $ARCHIVE/$PNETCDF_TAR_GZ
cd $BUILD/$PNETCDF

# Build PnetCDF

export CPP='clang -E'
export CXXCPP='clang++ -E'
#
export MPICC=mpicc
export MPICXX=mpicxx
export MPIF77=mpifort
export MPIF90=mpif90
#
ARCH='-march=broadwell -mtune=broadwell'
#
#FLAGS="$ARCH -O3 -ip -no-prec-div -static-intel" # recommended by Intel (ICC)
FLAGS="$ARCH -O3 -freciprocal-math"
FLAGS="$FLAGS -fPIC" # required by NetCDF4 build
#
export CFLAGS=$FLAGS
export CXXFLAGS=$FLAGS
export FCFLAGS=$FLAGS
export FFLAGS=$FLAGS
export LDFLAGS=$FLAGS
#
time ./configure --prefix=$PREFIX \
	--enable-fortran --enable-cxx --enable-mpi-io-test \
	>& configure.log # 0m36s
time make >& make.log # 4m59s
make install >& make_install.log
#
# (Result is $PREFIX/lib/libpnetcdf.a - no shared library)

# Build all test programs

time make tests >& make_tests.log # 21m27s

# Run parallel tests

export TEST=$BUILD/$PNETCDF/Test-par
mkdir -p $TEST
cd $TEST/..

time make ptest TEST_MPIRUN="mpiexec -n NP" \
	TEST_OUTDIR=$TEST >& make_ptest.log # 1m58s
#
# No failures

# Run sequential programs

export TEST=$BUILD/$PNETCDF/Test-ser
mkdir -p $TEST
cd $TEST/..

time make check TEST_SEQRUN="mpiexec -n 1" \
	TEST_OUTDIR=$TEST >& make_check.log # 1m01s
#
# Two failures, both:
#
#      XFAIL: xfail_runs.sh

# End time
duration=$SECONDS
echo "[INFO] Total run time of the script in seconds $duration"
# [INFO] Total run time of the script in seconds 1625

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

It was created by PnetCDF configure 1.12.3, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --prefix=/home/maxd/AOCC/opt/amd/lib/pnetcdf-1.12.3 --enable-fortran --enable-cxx --enable-mpi-io-test

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

hostname = server.clearlight.io
uname -m = x86_64
uname -r = 4.19.0
uname -s = Linux
uname -v = #1 SMP Tue Jan 9 19:45:01 MSK 2024

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

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

PATH: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin
PATH: /home/maxd/AOCC/opt/amd/ompi/hwloc-2.10.0_aocc-4.2.0/bin
PATH: /home/maxd/AOCC/opt/amd/aocc/4.2.0/share/opt-viewer
PATH: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
PATH: /home/maxd/New/Cloud/AWS/CLI/bin
PATH: /home/maxd/perl5/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/games
PATH: /usr/games
PATH: /usr/sbin
PATH: /home/maxd/bin


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

-------------------------------
  User environment variables:
-------------------------------
SHELL=/bin/bash
HISTCONTROL=
HISTSIZE=400
LANGUAGE=C
MPICC=mpicc
CPP=clang -E
HISTTIMEFORMAT=
AWS_DEFAULT_REGION=us-east-1
MPICXX=mpicxx
FFLAGS=-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC
as_nl=

PWD=/home/maxd/AOCC/Build/pnetcdf-1.12.3
LOGNAME=maxd
MANPATH=/home/maxd/perl5/man:
CXXFLAGS=-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC
CXXCPP=clang++ -E
MOTD_SHOWN=pam
LDFLAGS=-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC
HOME=/home/maxd
SSH_ASKPASS=1
LANG=en_US.UTF-8
MPIF90=mpif90
AWS_DEFAULT_OUTPUT=text
AWS_SECRET_ACCESS_KEY=uZqbJPvFbC4bfn2t2xIe90U781NKn7hLHEckQASP
PERL5LIB=/home/maxd/perl5/lib/perl5
MPIF77=mpifort
SSH_CONNECTION=87.130.119.154 30406 185.148.129.181 7822
FCFLAGS=-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC
MAKEFLAGS=
HWLOC_ALLOW=all
TERM=xterm
CPLUS_INCLUDE_PATH=/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/include
PERL_MB_OPT=--install_base "/home/maxd/perl5"
USER=maxd
AOCL_ROOT=/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc
LIBRARY_PATH=/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32:/usr/lib/x86_64-linux-gnu:/usr/lib:
PERL_MM_OPT=INSTALL_BASE=/home/maxd/perl5
SHLVL=2
AWS_ACCESS_KEY_ID=AKIAR5J3G7X6NDFF3BXC
DUALCASE=1
LD_LIBRARY_PATH=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib:/home/maxd/AOCC/opt/amd/ompi/hwloc-2.10.0_aocc-4.2.0/lib:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib:/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib:/home/maxd/AOCC/opt/amd/aocc/4.2.0/ompd:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32:/usr/lib/x86_64-linux-gnu:/usr/lib:
SSH_CLIENT=87.130.119.154 30406 7822
LC_ALL=C
PERL_LOCAL_LIB_ROOT=/home/maxd/perl5
PATH=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin:/home/maxd/AOCC/opt/amd/ompi/hwloc-2.10.0_aocc-4.2.0/bin:/home/maxd/AOCC/opt/amd/aocc/4.2.0/share/opt-viewer:/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin:/home/maxd/New/Cloud/AWS/CLI/bin:/home/maxd/perl5/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/sbin:/home/maxd/bin
HISTFILESIZE=40
CFLAGS=-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC
C_INCLUDE_PATH=/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/include
SSH_TTY=/dev/pts/1
CPATH=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include:/home/maxd/AOCC/opt/amd/ompi/hwloc-2.10.0_aocc-4.2.0/include:/usr/include
CONFIG_SHELL=/bin/bash
OLDPWD=/home/maxd/AOCC/Build
_=/usr/bin/env
-------------------------------

configure:3246: checking for a BSD-compatible install
configure:3314: result: /usr/bin/install -c
configure:3325: checking whether build environment is sane
configure:3380: result: yes
configure:3531: checking for a thread-safe mkdir -p
configure:3570: result: /bin/mkdir -p
configure:3577: checking for gawk
configure:3593: found /usr/bin/gawk
configure:3604: result: gawk
configure:3615: checking whether make sets $(MAKE)
configure:3637: result: yes
configure:3666: checking whether make supports nested variables
configure:3683: result: yes
configure:3820: checking whether make supports nested variables
configure:3837: result: yes
configure:3850: checking whether to enable maintainer-specific portions of Makefiles
configure:3859: result: yes
configure:3973: checking for rm
configure:3989: found /bin/rm
configure:4001: result: yes
configure:4025: checking for gawk
configure:4052: result: gawk
configure:4063: checking for grep that handles long lines and -e
configure:4121: result: /bin/grep
configure:4126: checking for egrep
configure:4188: result: /bin/grep -E
configure:4194: checking for a sed that does not truncate output
configure:4258: result: /bin/sed
configure:4265: checking for sed handling option -i 
configure:4287: result: /bin/sed -i''
configure:4714: checking for mpicc
configure:4732: found /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
configure:4744: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
configure:4845: checking for gcc
configure:4872: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
configure:5101: checking for C compiler version
configure:5110: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc --version >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
configure:5121: $? = 0
configure:5110: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -v >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
configure:5121: $? = 0
configure:5110: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -V >&5
clang-16: error: argument to '-V' is missing (expected 1 value)
clang-16: error: no input files
configure:5121: $? = 1
configure:5110: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -qversion >&5
clang-16: error: unknown argument '-qversion'; did you mean '--version'?
clang-16: error: no input files
configure:5121: $? = 1
configure:5141: checking whether the C compiler works
configure:5163: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:5167: $? = 0
configure:5215: result: yes
configure:5218: checking for C compiler default output file name
configure:5220: result: a.out
configure:5226: checking for suffix of executables
configure:5233: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:5237: $? = 0
configure:5259: result: 
configure:5281: checking whether we are cross compiling
configure:5289: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:5293: $? = 0
configure:5300: ./conftest
configure:5304: $? = 0
configure:5319: result: no
configure:5324: checking for suffix of object files
configure:5346: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:5350: $? = 0
configure:5371: result: o
configure:5375: checking whether we are using the GNU C compiler
configure:5394: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:5394: $? = 0
configure:5403: result: yes
configure:5412: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc accepts -g
configure:5432: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -g  conftest.c >&5
configure:5432: $? = 0
configure:5473: result: yes
configure:5490: checking for /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc option to accept ISO C89
configure:5553: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc  -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:17:14: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
static char *e (p, i)
             ^
1 warning generated.
configure:5553: $? = 0
configure:5566: result: none needed
configure:5591: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc understands -c and -o together
configure:5613: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c conftest.c -o conftest2.o
configure:5616: $? = 0
configure:5613: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c conftest.c -o conftest2.o
configure:5616: $? = 0
configure:5628: result: yes
configure:5648: checking whether make supports the include directive
configure:5663: make -f confmf.GNU && cat confinc.out
this is the am__doit target
configure:5666: $? = 0
configure:5685: result: yes (GNU style)
configure:5710: checking dependency style of /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
configure:5821: result: gcc3
configure:5838: checking for C compiler vendor
configure:5896: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:17:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:5896: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__ICC) || defined(__ECC) || defined(__INTEL_COMPILER))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:5896: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:17:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:5896: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__xlc__) || defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__ibmxl__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:5896: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:17:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:5896: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__PATHCC__) || defined(__PATHSCALE__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:5896: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:5896: $? = 0
configure:5905: result: clang
configure:5940: checking base compiler command in MPICC wrapper
configure:5973: result: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang
configure:5977: checking for /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang
configure:6010: result: no
configure:6028: checking how to run the C preprocessor
configure:6098: result: clang -E
configure:6118: clang -E  conftest.c
configure:6118: $? = 0
configure:6132: clang -E  conftest.c
conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
#include <ac_nonexistent.h>
         ^~~~~~~~~~~~~~~~~~
1 error generated.
configure:6132: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:6169: checking for special C compiler options needed for large files
configure:6214: result: no
configure:6220: checking for _FILE_OFFSET_BITS value needed for large files
configure:6245: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:6245: $? = 0
configure:6277: result: no
configure:6365: checking for MPI_Comm_rank
configure:6365: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:6365: $? = 0
configure:6365: result: yes
configure:6437: checking for MPI_File_open
configure:6437: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:6437: $? = 0
configure:6437: result: yes
configure:6536: checking MPI Standard version implemented
configure:6538: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:6538: $? = 0
configure:6538: ./conftest
configure:6538: $? = 0
configure:6542: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:6542: $? = 0
configure:6542: ./conftest
configure:6542: $? = 0
configure:6550: result: 3.1
configure:6554: checking whether MPICH_VERSION is declared
configure:6554: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:20:10: error: use of undeclared identifier 'MPICH_VERSION'
  (void) MPICH_VERSION;
         ^
1 error generated.
configure:6554: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| #include <mpi.h>
| 
| int
| main ()
| {
| #ifndef MPICH_VERSION
| #ifdef __cplusplus
|   (void) MPICH_VERSION;
| #else
|   (void) MPICH_VERSION;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:6554: result: no
configure:6560: checking whether MPICH2_VERSION is declared
configure:6560: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:20:10: error: use of undeclared identifier 'MPICH2_VERSION'
  (void) MPICH2_VERSION;
         ^
1 error generated.
configure:6560: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| #include <mpi.h>
| 
| int
| main ()
| {
| #ifndef MPICH2_VERSION
| #ifdef __cplusplus
|   (void) MPICH2_VERSION;
| #else
|   (void) MPICH2_VERSION;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:6560: result: no
configure:6566: checking whether OMPI_MAJOR_VERSION is declared
configure:6566: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:6566: $? = 0
configure:6566: result: yes
configure:6572: checking whether MVAPICH2_VERSION is declared
configure:6572: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:20:10: error: use of undeclared identifier 'MVAPICH2_VERSION'
  (void) MVAPICH2_VERSION;
         ^
1 error generated.
configure:6572: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| /* end confdefs.h.  */
| #include <mpi.h>
| 
| int
| main ()
| {
| #ifndef MVAPICH2_VERSION
| #ifdef __cplusplus
|   (void) MVAPICH2_VERSION;
| #else
|   (void) MVAPICH2_VERSION;
| #endif
| #endif
| 
|   ;
|   return 0;
| }
configure:6572: result: no
configure:6578: checking MPI vendor
configure:6602: clang -E  -dM conftest.c
configure:6602: $? = 0
configure:6640: result: OpenMPI 5.0.2
configure:6663: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc is a wrapper of a C++ compiler
configure:6676: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:6676: $? = 0
configure:6677: result: no
configure:6694: checking build system type
configure:6708: result: x86_64-pc-linux-gnu
configure:6728: checking host system type
configure:6741: result: x86_64-pc-linux-gnu
configure:6811: checking for ar
configure:6827: found /usr/bin/ar
configure:6838: result: ar
configure:6864: checking the archiver (ar) interface
configure:6880: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:6880: $? = 0
configure:6882: ar cru libconftest.a conftest.o >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:6885: $? = 0
configure:6913: result: ar
configure:6981: checking how to print strings
configure:7008: result: printf
configure:7029: checking for a sed that does not truncate output
configure:7093: result: /bin/sed
configure:7111: checking for fgrep
configure:7173: result: /bin/grep -F
configure:7287: checking for ld used by /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
configure:7354: result: /usr/bin/ld
configure:7361: checking if the linker (/usr/bin/ld) is GNU ld
configure:7376: result: yes
configure:7388: checking for BSD- or MS-compatible name lister (nm)
configure:7442: result: /usr/bin/nm -B
configure:7572: checking the name lister (/usr/bin/nm -B) interface
configure:7579: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:7582: /usr/bin/nm -B "conftest.o"
configure:7585: output
0000000000000000 B some_variable
configure:7592: result: BSD nm
configure:7595: checking whether ln -s works
configure:7599: result: yes
configure:7607: checking the maximum length of command line arguments
configure:7738: result: 1572864
configure:7786: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
configure:7826: result: func_convert_file_noop
configure:7833: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:7853: result: func_convert_file_noop
configure:7860: checking for /usr/bin/ld option to reload object files
configure:7867: result: -r
configure:7941: checking for objdump
configure:7957: found /usr/bin/objdump
configure:7968: result: objdump
configure:8000: checking how to recognize dependent libraries
configure:8200: result: pass_all
configure:8285: checking for dlltool
configure:8315: result: no
configure:8345: checking how to associate runtime and link libraries
configure:8372: result: printf %s\n
configure:8496: checking for archiver @FILE support
configure:8513: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:8513: $? = 0
configure:8516: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:8519: $? = 0
configure:8524: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
ar: conftest.o: No such file or directory
configure:8527: $? = 1
configure:8539: result: @
configure:8597: checking for strip
configure:8613: found /usr/bin/strip
configure:8624: result: strip
configure:8696: checking for ranlib
configure:8712: found /usr/bin/ranlib
configure:8723: result: ranlib
configure:8825: checking command to parse /usr/bin/nm -B output from /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc object
configure:8978: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:8981: $? = 0
configure:8985: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:8988: $? = 0
configure:9054: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c conftstm.o >&5
configure:9057: $? = 0
configure:9095: result: ok
configure:9142: checking for sysroot
configure:9172: result: no
configure:9179: checking for a working dd
configure:9217: result: /bin/dd
configure:9221: checking how to truncate binary pipes
configure:9236: result: /bin/dd bs=4096 count=1
configure:9357: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:9360: $? = 0
configure:9550: checking for mt
configure:9566: found /bin/mt
configure:9577: result: mt
configure:9600: checking if mt is a manifest tool
configure:9606: mt '-?'
configure:9614: result: no
configure:10286: checking for ANSI C header files
configure:10306: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10306: $? = 0
configure:10379: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:10379: $? = 0
configure:10379: ./conftest
configure:10379: $? = 0
configure:10390: result: yes
configure:10403: checking for sys/types.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for sys/stat.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for stdlib.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for string.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for memory.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for strings.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for inttypes.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for stdint.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10403: checking for unistd.h
configure:10403: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10403: $? = 0
configure:10403: result: yes
configure:10417: checking for dlfcn.h
configure:10417: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:10417: $? = 0
configure:10417: result: yes
configure:10672: checking for objdir
configure:10687: result: .libs
configure:10951: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc supports -fno-rtti -fno-exceptions
configure:10969: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -fno-rtti -fno-exceptions conftest.c >&5
configure:10973: $? = 0
configure:10986: result: yes
configure:11360: checking for /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc option to produce PIC
configure:11367: result: -fPIC -DPIC
configure:11375: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc PIC flag -fPIC -DPIC works
configure:11393: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -fPIC -DPIC -DPIC conftest.c >&5
configure:11397: $? = 0
configure:11410: result: yes
configure:11439: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc static flag -static works
configure:11467: result: no
configure:11482: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc supports -c -o file.o
configure:11503: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -o out/conftest2.o conftest.c >&5
configure:11507: $? = 0
configure:11529: result: yes
configure:11537: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc supports -c -o file.o
configure:11584: result: yes
configure:11617: checking whether the /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:12881: result: yes
configure:13121: checking dynamic linker characteristics
configure:13705: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:13705: $? = 0
configure:13942: result: GNU/Linux ld.so
configure:14064: checking how to hardcode library paths into programs
configure:14089: result: immediate
configure:14637: checking whether stripping libraries is possible
configure:14642: result: yes
configure:14677: checking if libtool supports shared libraries
configure:14679: result: yes
configure:14682: checking whether to build shared libraries
configure:14707: result: no
configure:14710: checking whether to build static libraries
configure:14714: result: yes
configure:15089: checking for mpicxx
configure:15107: found /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx
configure:15119: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx
configure:15301: checking for C++ compiler version
configure:15310: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx --version >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
configure:15321: $? = 0
configure:15310: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -v >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
configure:15321: $? = 0
configure:15310: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -V >&5
clang-16: error: argument to '-V' is missing (expected 1 value)
clang-16: error: no input files
configure:15321: $? = 1
configure:15310: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -qversion >&5
clang-16: error: unknown argument '-qversion'; did you mean '--version'?
clang-16: error: no input files
configure:15321: $? = 1
configure:15325: checking whether we are using the GNU C++ compiler
configure:15344: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:15344: $? = 0
configure:15353: result: yes
configure:15362: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx accepts -g
configure:15382: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -g  conftest.cpp >&5
configure:15382: $? = 0
configure:15423: result: yes
configure:15448: checking dependency style of /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx
configure:15559: result: gcc3
configure:15592: checking how to run the C++ preprocessor
configure:15658: result: clang++ -E
configure:15678: clang++ -E  conftest.cpp
configure:15678: $? = 0
configure:15692: clang++ -E  conftest.cpp
conftest.cpp:23:10: fatal error: 'ac_nonexistent.h' file not found
#include <ac_nonexistent.h>
         ^~~~~~~~~~~~~~~~~~
1 error generated.
configure:15692: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:15868: checking for ld used by /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx
configure:15935: result: /usr/bin/ld -m elf_x86_64
configure:15942: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:15957: result: yes
configure:16017: checking whether the /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:17093: result: yes
configure:17129: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:17132: $? = 0
configure:17637: checking for /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx option to produce PIC
configure:17644: result: -fPIC -DPIC
configure:17652: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx PIC flag -fPIC -DPIC works
configure:17670: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -fPIC -DPIC -DPIC conftest.cpp >&5
configure:17674: $? = 0
configure:17687: result: yes
configure:17710: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx static flag -static works
configure:17738: result: no
configure:17750: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx supports -c -o file.o
configure:17771: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -o out/conftest2.o conftest.cpp >&5
configure:17775: $? = 0
configure:17797: result: yes
configure:17802: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx supports -c -o file.o
configure:17849: result: yes
configure:17879: checking whether the /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:17919: result: yes
configure:18060: checking dynamic linker characteristics
configure:18805: result: GNU/Linux ld.so
configure:18870: checking how to hardcode library paths into programs
configure:18895: result: immediate
configure:18944: checking for C++ compiler vendor
configure:19002: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
conftest.cpp:29:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:19002: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__ICC) || defined(__ECC) || defined(__INTEL_COMPILER))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:19002: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
conftest.cpp:29:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:19002: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__xlc__) || defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__ibmxl__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:19002: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
conftest.cpp:29:7: error: use of undeclared identifier 'thisisanerror'
      thisisanerror;
      ^
1 error generated.
configure:19002: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__PATHCC__) || defined(__PATHSCALE__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:19002: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:19002: $? = 0
configure:19011: result: clang
configure:19017: checking base compiler command in MPICXX wrapper
configure:19050: result: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang++
configure:19054: checking for /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang++
configure:19087: result: no
configure:19099: checking for MPI_File_close
configure:19099: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.cpp  >&5
configure:19099: $? = 0
configure:19099: result: yes
configure:19189: checking whether MPI C++ compiler redefines SEEK_SET 
configure:19206: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:19206: $? = 0
configure:19213: result: no
configure:19618: checking for mpifort
configure:19636: found /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort
configure:19648: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort
configure:20028: checking for mpif90
configure:20046: found /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90
configure:20058: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90
configure:20243: checking for Fortran 77 compiler version
configure:20252: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort --version >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
configure:20263: $? = 0
configure:20252: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -v >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
configure:20263: $? = 0
configure:20252: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -V >&5
clang-16: error: argument to '-V' is missing (expected 1 value)
clang-16: error: no input files
configure:20263: $? = 1
configure:20252: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -qversion >&5
clang-16: error: unknown argument '-qversion'; did you mean '--version'?
clang-16: error: no input files
configure:20263: $? = 1
configure:20272: checking whether we are using the GNU Fortran 77 compiler
configure:20285: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.F >&5
F90-S-0034-Syntax error at or near end of line (conftest.F: 3)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:20285: $? = 1
configure: failed program was:
|       program main
| #ifndef __GNUC__
|        choke me
| #endif
| 
|       end
configure:20294: result: no
configure:20300: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort accepts -g
configure:20311: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -g conftest.f >&5
configure:20311: $? = 0
configure:20319: result: yes
configure:20448: checking if libtool supports shared libraries
configure:20450: result: yes
configure:20453: checking whether to build shared libraries
configure:20477: result: no
configure:20480: checking whether to build static libraries
configure:20484: result: yes
configure:20852: checking for /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort option to produce PIC
configure:20859: result: 
configure:20925: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort static flag  works
configure:20953: result: yes
configure:20965: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort supports -c -o file.o
configure:20986: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -o out/conftest2.o conftest.f >&5
configure:20990: $? = 0
configure:21012: result: yes
configure:21017: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort supports -c -o file.o
configure:21064: result: yes
configure:21094: checking whether the /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:22308: result: yes
configure:22449: checking dynamic linker characteristics
configure:23188: result: GNU/Linux ld.so
configure:23253: checking how to hardcode library paths into programs
configure:23278: result: immediate
configure:23316: checking how to get verbose linking output from /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort
configure:23326: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:23326: $? = 0
configure:23344: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang1" conftest.f -z 1 1 -opt 3 -terse 1 -inform warn -nohpf -nostatic -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 19 0x400000 -quad -x 7 0x100000 -x 68 0x1 -x 59 4 -y 15 2 -x 49 0x400004 -x 51 0x20 -x 57 0x48 -x 58 0x10000 -x 124 0x1000 -tp px -x 57 0xfb0000 -x 58 0x78031040 -x 47 0x08 -x 48 4608 -x 49 0x100 -x 70 0x6c00 -x 119 0x10000000 -x 129 2 -x 47 0x400000 -x 52 2 -x 2 0x400000 -stdinc /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../include:/usr/local/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16/include:/usr/include/x86_64-linux-gnu:/include:/usr/include -def unix -def __unix -def __unix__ -def linux -def __linux -def __linux__ -def __NO_MATH_INLINES -def __LP64__ -def __LONG_MAX__=9223372036854775807L -def "__SIZE_TYPE__=unsigned long int" -def "__PTRDIFF_TYPE__=long int" -def __x86_64 -def __x86_64__ -def __amd_64__amd64__ -def __k8 -def __k8__ -def __THROW= -def __extension__= -def __PGLLVM__ -nofreeform -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -vect 48 -x 54 1 -x 70 0x40000000 -y 163 0xc0000000 -x 189 0x10 -stbfile conftest-610e83.stb -modexport conftest-610e83.cmod -modindex conftest-610e83.cmdx -output conftest-610e83.ilm
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang2" conftest-610e83.ilm -y 129 2 -x 62 8 -x 62 8 -x 6 0x100 -x 42 0x400000 -y 129 4 -x 129 0x400 -y 216 1 -ieee 1 -fn conftest.f -opt 3 -terse 1 -inform warn -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 68 0x1 -x 51 0x20 -x 119 0xa10000 -x 122 0x40 -x 123 0x1000 -x 127 4 -x 127 17 -x 19 0x400000 -x 28 0x40000 -x 120 0x10000000 -x 70 0x8000 -x 122 1 -x 125 0x20000 -x 164 0x800000 -quad -x 59 4 -tp px -x 120 0x1000 -x 124 0x1400 -y 15 2 -x 57 0x3b0000 -x 58 0x48000000 -x 49 0x100 -astype 0 -x 183 4 -x 121 0x800 -x 54 0x10 -x 70 0x40000000 -x 249 1023 -x 124 1 -y 163 0xc0000000 -x 189 0x10 -y 189 0x4000000 -x 183 0x10 -stbfile conftest-610e83.stb -asm /tmp/conftest-610e83.ll
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -main-file-name conftest.f -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -fmath-errno -freciprocal-math -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu broadwell -tune-cpu broadwell -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -resource-dir /home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16 -O3 -fdebug-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -ferror-limit 19 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -itodcalls -itodcallsbyclone -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/conftest-8bf032.o -x ir /tmp/conftest-610e83.ll
clang -cc1 version 16.0.3 based upon LLVM Mirror.Version.16.0.3 default target x86_64-unknown-linux-gnu
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/ld.lld" -pie --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o conftest /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L/usr/lib/x86_64-linux-gnu -L/usr/lib -L. /tmp/conftest-8bf032.o -rpath /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib --enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread -rpath /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/x86_64-linux-gnu/crtn.o
configure:23427: result: -v
configure:23429: checking for Fortran 77 libraries of /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort
configure:23452: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang1" conftest.f -z 1 1 -opt 3 -terse 1 -inform warn -nohpf -nostatic -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 19 0x400000 -quad -x 7 0x100000 -x 68 0x1 -x 59 4 -y 15 2 -x 49 0x400004 -x 51 0x20 -x 57 0x48 -x 58 0x10000 -x 124 0x1000 -tp px -x 57 0xfb0000 -x 58 0x78031040 -x 47 0x08 -x 48 4608 -x 49 0x100 -x 70 0x6c00 -x 119 0x10000000 -x 129 2 -x 47 0x400000 -x 52 2 -x 2 0x400000 -stdinc /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../include:/usr/local/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16/include:/usr/include/x86_64-linux-gnu:/include:/usr/include -def unix -def __unix -def __unix__ -def linux -def __linux -def __linux__ -def __NO_MATH_INLINES -def __LP64__ -def __LONG_MAX__=9223372036854775807L -def "__SIZE_TYPE__=unsigned long int" -def "__PTRDIFF_TYPE__=long int" -def __x86_64 -def __x86_64__ -def __amd_64__amd64__ -def __k8 -def __k8__ -def __THROW= -def __extension__= -def __PGLLVM__ -nofreeform -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -vect 48 -x 54 1 -x 70 0x40000000 -y 163 0xc0000000 -x 189 0x10 -stbfile conftest-434634.stb -modexport conftest-434634.cmod -modindex conftest-434634.cmdx -output conftest-434634.ilm
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang2" conftest-434634.ilm -y 129 2 -x 62 8 -x 62 8 -x 6 0x100 -x 42 0x400000 -y 129 4 -x 129 0x400 -y 216 1 -ieee 1 -fn conftest.f -opt 3 -terse 1 -inform warn -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 68 0x1 -x 51 0x20 -x 119 0xa10000 -x 122 0x40 -x 123 0x1000 -x 127 4 -x 127 17 -x 19 0x400000 -x 28 0x40000 -x 120 0x10000000 -x 70 0x8000 -x 122 1 -x 125 0x20000 -x 164 0x800000 -quad -x 59 4 -tp px -x 120 0x1000 -x 124 0x1400 -y 15 2 -x 57 0x3b0000 -x 58 0x48000000 -x 49 0x100 -astype 0 -x 183 4 -x 121 0x800 -x 54 0x10 -x 70 0x40000000 -x 249 1023 -x 124 1 -y 163 0xc0000000 -x 189 0x10 -y 189 0x4000000 -x 183 0x10 -stbfile conftest-434634.stb -asm /tmp/conftest-434634.ll
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -main-file-name conftest.f -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -fmath-errno -freciprocal-math -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu broadwell -tune-cpu broadwell -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -resource-dir /home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16 -O3 -fdebug-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -ferror-limit 19 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -itodcalls -itodcallsbyclone -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/conftest-5695b2.o -x ir /tmp/conftest-434634.ll
clang -cc1 version 16.0.3 based upon LLVM Mirror.Version.16.0.3 default target x86_64-unknown-linux-gnu
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/ld.lld" -pie --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o conftest /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L/usr/lib/x86_64-linux-gnu -L/usr/lib -L. /tmp/conftest-5695b2.o -rpath /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib --enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread -rpath /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/x86_64-linux-gnu/crtn.o
configure:23648: result:  -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread
configure:23660: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort is a valid MPI compiler
configure:23675: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:23675: $? = 0
configure:23687: result: yes
configure:23825: checking for Fortran compiler version
configure:23834: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 --version >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
configure:23845: $? = 0
configure:23834: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -v >&5
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
configure:23845: $? = 0
configure:23834: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -V >&5
clang-16: error: argument to '-V' is missing (expected 1 value)
clang-16: error: no input files
configure:23845: $? = 1
configure:23834: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -qversion >&5
clang-16: error: unknown argument '-qversion'; did you mean '--version'?
clang-16: error: no input files
configure:23845: $? = 1
configure:23854: checking whether we are using the GNU Fortran compiler
configure:23867: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F >&5
F90-S-0034-Syntax error at or near end of line (conftest.F: 3)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:23867: $? = 1
configure: failed program was:
|       program main
| #ifndef __GNUC__
|        choke me
| #endif
| 
|       end
configure:23876: result: no
configure:23882: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 accepts -g
configure:23893: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -g  conftest.f >&5
configure:23893: $? = 0
configure:23901: result: yes
configure:24033: checking if libtool supports shared libraries
configure:24035: result: yes
configure:24038: checking whether to build shared libraries
configure:24062: result: no
configure:24065: checking whether to build static libraries
configure:24069: result: yes
configure:24103: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
configure:24106: $? = 0
configure:24592: checking for /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 option to produce PIC
configure:24599: result: 
configure:24665: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 static flag  works
configure:24693: result: yes
configure:24705: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 supports -c -o file.o
configure:24726: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -o out/conftest2.o  conftest.f >&5
configure:24730: $? = 0
configure:24752: result: yes
configure:24757: checking if /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 supports -c -o file.o
configure:24804: result: yes
configure:24834: checking whether the /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:26048: result: yes
configure:26189: checking dynamic linker characteristics
configure:26928: result: GNU/Linux ld.so
configure:26993: checking how to hardcode library paths into programs
configure:27018: result: immediate
configure:27056: checking how to get verbose linking output from /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90
configure:27066: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
configure:27066: $? = 0
configure:27084: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang1" conftest.f -z 1 1 -opt 3 -terse 1 -inform warn -nohpf -nostatic -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 19 0x400000 -quad -x 7 0x100000 -x 68 0x1 -x 59 4 -y 15 2 -x 49 0x400004 -x 51 0x20 -x 57 0x48 -x 58 0x10000 -x 124 0x1000 -tp px -x 57 0xfb0000 -x 58 0x78031040 -x 47 0x08 -x 48 4608 -x 49 0x100 -x 70 0x6c00 -x 119 0x10000000 -x 129 2 -x 47 0x400000 -x 52 2 -x 2 0x400000 -stdinc /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../include:/usr/local/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16/include:/usr/include/x86_64-linux-gnu:/include:/usr/include -def unix -def __unix -def __unix__ -def linux -def __linux -def __linux__ -def __NO_MATH_INLINES -def __LP64__ -def __LONG_MAX__=9223372036854775807L -def "__SIZE_TYPE__=unsigned long int" -def "__PTRDIFF_TYPE__=long int" -def __x86_64 -def __x86_64__ -def __amd_64__amd64__ -def __k8 -def __k8__ -def __THROW= -def __extension__= -def __PGLLVM__ -nofreeform -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -vect 48 -x 54 1 -x 70 0x40000000 -y 163 0xc0000000 -x 189 0x10 -stbfile conftest-fc0005.stb -modexport conftest-fc0005.cmod -modindex conftest-fc0005.cmdx -output conftest-fc0005.ilm
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang2" conftest-fc0005.ilm -y 129 2 -x 62 8 -x 62 8 -x 6 0x100 -x 42 0x400000 -y 129 4 -x 129 0x400 -y 216 1 -ieee 1 -fn conftest.f -opt 3 -terse 1 -inform warn -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 68 0x1 -x 51 0x20 -x 119 0xa10000 -x 122 0x40 -x 123 0x1000 -x 127 4 -x 127 17 -x 19 0x400000 -x 28 0x40000 -x 120 0x10000000 -x 70 0x8000 -x 122 1 -x 125 0x20000 -x 164 0x800000 -quad -x 59 4 -tp px -x 120 0x1000 -x 124 0x1400 -y 15 2 -x 57 0x3b0000 -x 58 0x48000000 -x 49 0x100 -astype 0 -x 183 4 -x 121 0x800 -x 54 0x10 -x 70 0x40000000 -x 249 1023 -x 124 1 -y 163 0xc0000000 -x 189 0x10 -y 189 0x4000000 -x 183 0x10 -stbfile conftest-fc0005.stb -asm /tmp/conftest-fc0005.ll
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -main-file-name conftest.f -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -fmath-errno -freciprocal-math -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu broadwell -tune-cpu broadwell -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -resource-dir /home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16 -O3 -fdebug-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -ferror-limit 19 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -itodcalls -itodcallsbyclone -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/conftest-49dce9.o -x ir /tmp/conftest-fc0005.ll
clang -cc1 version 16.0.3 based upon LLVM Mirror.Version.16.0.3 default target x86_64-unknown-linux-gnu
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/ld.lld" -pie --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o conftest /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L/usr/lib/x86_64-linux-gnu -L/usr/lib -L. /tmp/conftest-49dce9.o -rpath /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib --enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread -rpath /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/x86_64-linux-gnu/crtn.o
configure:27167: result: -v
configure:27169: checking for Fortran libraries of /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90
configure:27192: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f
AMD clang version 16.0.3 (CLANG: AOCC_4.2.0-Build#89 2023_12_13)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/10
Candidate multilib: .;@m64
Selected multilib: .;@m64
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang1" conftest.f -z 1 1 -opt 3 -terse 1 -inform warn -nohpf -nostatic -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 19 0x400000 -quad -x 7 0x100000 -x 68 0x1 -x 59 4 -y 15 2 -x 49 0x400004 -x 51 0x20 -x 57 0x48 -x 58 0x10000 -x 124 0x1000 -tp px -x 57 0xfb0000 -x 58 0x78031040 -x 47 0x08 -x 48 4608 -x 49 0x100 -x 70 0x6c00 -x 119 0x10000000 -x 129 2 -x 47 0x400000 -x 52 2 -x 2 0x400000 -stdinc /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../include:/usr/local/include:/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16/include:/usr/include/x86_64-linux-gnu:/include:/usr/include -def unix -def __unix -def __unix__ -def linux -def __linux -def __linux__ -def __NO_MATH_INLINES -def __LP64__ -def __LONG_MAX__=9223372036854775807L -def "__SIZE_TYPE__=unsigned long int" -def "__PTRDIFF_TYPE__=long int" -def __x86_64 -def __x86_64__ -def __amd_64__amd64__ -def __k8 -def __k8__ -def __THROW= -def __extension__= -def __PGLLVM__ -nofreeform -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -idir /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -vect 48 -x 54 1 -x 70 0x40000000 -y 163 0xc0000000 -x 189 0x10 -stbfile conftest-5190b6.stb -modexport conftest-5190b6.cmod -modindex conftest-5190b6.cmdx -output conftest-5190b6.ilm
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang2" conftest-5190b6.ilm -y 129 2 -x 62 8 -x 62 8 -x 6 0x100 -x 42 0x400000 -y 129 4 -x 129 0x400 -y 216 1 -ieee 1 -fn conftest.f -opt 3 -terse 1 -inform warn -cmdline "'+flang -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -v -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include -I/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,-rpath -Wl,/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -Wl,--enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi'" -inform warn -y 129 2 -x 68 0x1 -x 51 0x20 -x 119 0xa10000 -x 122 0x40 -x 123 0x1000 -x 127 4 -x 127 17 -x 19 0x400000 -x 28 0x40000 -x 120 0x10000000 -x 70 0x8000 -x 122 1 -x 125 0x20000 -x 164 0x800000 -quad -x 59 4 -tp px -x 120 0x1000 -x 124 0x1400 -y 15 2 -x 57 0x3b0000 -x 58 0x48000000 -x 49 0x100 -astype 0 -x 183 4 -x 121 0x800 -x 54 0x10 -x 70 0x40000000 -x 249 1023 -x 124 1 -y 163 0xc0000000 -x 189 0x10 -y 189 0x4000000 -x 183 0x10 -stbfile conftest-5190b6.stb -asm /tmp/conftest-5190b6.ll
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -main-file-name conftest.f -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -fmath-errno -freciprocal-math -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu broadwell -tune-cpu broadwell -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -resource-dir /home/maxd/AOCC/opt/amd/aocc/4.2.0/lib/clang/16 -O3 -fdebug-compilation-dir=/home/maxd/AOCC/Build/pnetcdf-1.12.3 -ferror-limit 19 -fgnuc-version=4.2.1 -vectorize-loops -vectorize-slp -itodcalls -itodcallsbyclone -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/conftest-e75504.o -x ir /tmp/conftest-5190b6.ll
clang -cc1 version 16.0.3 based upon LLVM Mirror.Version.16.0.3 default target x86_64-unknown-linux-gnu
 "/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/ld.lld" -pie --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o conftest /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L/usr/lib/x86_64-linux-gnu -L/usr/lib -L. /tmp/conftest-e75504.o -rpath /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib --enable-new-dtags -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread -rpath /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/x86_64-linux-gnu/crtn.o
configure:27388: result:  -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread
configure:27401: checking whether mpi.mod is available
configure:27413: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
configure:27413: $? = 0
configure:27420: result: yes
configure:27422: checking whether /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 is a valid MPI compiler
configure:27433: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
configure:27433: $? = 0
configure:27465: result: yes
configure:27539: checking for Fortran flag needed to accept free-form source
configure:27558: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
F90-S-0021-Label field of continuation line is not blank (conftest.f: 2)
F90-S-0034-Syntax error at or near & (conftest.f: 4)
F90-S-0034-Syntax error at or near <quoted string> (conftest.f: 5)
  0 inform,   0 warnings,   3 severes, 0 fatal for MAIN
configure:27558: $? = 1
configure: failed program was:
| 
|   program freeform
|        ! FIXME: how to best confuse non-freeform compilers?
|        print *, 'Hello ', &
|           'world.'
|        end
configure:27558: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -ffree-form  conftest.f >&5
configure:27558: $? = 0
configure:27567: result: -ffree-form
configure:27611: checking for Fortran flag to compile preprocessed .F files
configure:27636: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F >&5
configure:27636: $? = 0
configure:27646: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F >&5
F90-F-0906-Can't find include file ac_nonexistent.h (conftest.F: 4)
F90/x86-64 Linux Flang - 1.5 2017-05-01: compilation aborted
configure:27646: $? = 1
configure: failed program was:
|       program main
| 
| #if 1
| #include <ac_nonexistent.h>
|       choke me
| #endif
|       end
configure:27659: result: none
configure:27684: checking for Fortran flag to compile preprocessed .F90 files
configure:27709: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:27709: $? = 0
configure:27719: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-F-0906-Can't find include file ac_nonexistent.h (conftest.F90: 4)
F90/x86-64 Linux Flang - 1.5 2017-05-01: compilation aborted
configure:27719: $? = 1
configure: failed program was:
|       program main
| 
| #if 1
| #include <ac_nonexistent.h>
|       choke me
| #endif
|       end
configure:27732: result: none
configure:27763: checking for Fortran flag to compile preprocessed .F files
configure:27811: result: none
configure:27832: checking how to define symbols for preprocessed Fortran
configure:27854: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -DFOOBAR -DZORK=42  conftest.F >&5
configure:27854: $? = 0
configure:27863: result: -D
configure:27884: checking for Fortran flag to compile .f files
configure:27904: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f >&5
configure:27904: $? = 0
configure:27913: result: none
configure:27939: checking for Fortran flag to compile .F files
configure:27959: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F >&5
configure:27959: $? = 0
configure:27968: result: none
configure:27994: checking for Fortran flag to compile .f90 files
configure:28014: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.f90 >&5
configure:28014: $? = 0
configure:28023: result: none
configure:28049: checking for Fortran flag to compile .F90 files
configure:28069: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:28069: $? = 0
configure:28078: result: none
configure:28106: checking for Fortran compiler vendor
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__ICC) || defined(__ECC) || defined(__INTEL_COMPILER))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__xlc__) || defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__ibmxl__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__PATHCC__) || defined(__PATHSCALE__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__clang__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(_CRAYC))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__FUJITSU))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(SDCC) || defined(__SDCC))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(_SX))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__PGI))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(NAGFOR))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__GNUC__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__SUNPRO_F90) || defined(__SUNPRO_F95))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__HP_cc) || defined(__HP_aCC))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__DECC) || defined(__DECCXX) || defined(__DECC_VER) || defined(__DECCXX_VER))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__BORLANDC__) || defined(__CODEGEARC__) || defined(__TURBOC__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__COMO__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__KCC))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__LCC__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__sgi) || defined(sgi))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(_MSC_VER))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__MWERKS__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__WATCOMC__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(__TINYC__))
|       thisisanerror;
| #endif
| 
|       end
configure:28158: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near end of line (conftest.F90: 4)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28158: $? = 1
configure: failed program was:
|       program main
| 
| #if !(defined(UNKNOWN))
|       thisisanerror;
| #endif
| 
|       end
configure:28167: result: unknown
configure:28180: checking base compiler command in MPIF90 wrapper
configure:28213: result: /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang
configure:28217: checking for /home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/flang
configure:28250: result: no
configure:28267: checking for Fortran flag needed to accept fixed-form source
configure:28284: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
F90-S-0034-Syntax error at or near identifier this (conftest.F90: 2)
  0 inform,   0 warnings,   1 severes, 0 fatal for main
configure:28284: $? = 1
configure: failed program was:
| 
| C     This comment should confuse free-form compilers.
|       program main
|       end
configure:28284: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -ffixed-form  conftest.F90 >&5
configure:28284: $? = 0
configure:28293: result: -ffixed-form
configure:28325: checking for dummy main to link with Fortran libraries
configure:28359: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c   -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread >&5
configure:28359: $? = 0
configure:28404: result: none
configure:28437: checking for Fortran name-mangling scheme
configure:28450: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:28450: $? = 0
configure:28491: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c cfortran_test.o   -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread >&5
ld.lld: error: undefined symbol: foobar
>>> referenced by conftest.c
>>>               /tmp/conftest-d74c58.o:(main)
>>> did you mean: foobar_
>>> defined in: cfortran_test.o
clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
configure:28491: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char foobar ();
| #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 foobar ();
|   ;
|   return 0;
| }
configure:28491: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c cfortran_test.o   -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread >&5
configure:28491: $? = 0
configure:28549: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c cfortran_test.o   -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread >&5
configure:28549: $? = 0
configure:28591: result: lower case, underscore, no extra underscore
configure:28627: checking for C-equivalent to Fortran routine "SUB_A"
configure:28649: result: sub_a_
configure:28681: checking Fortran compiler treating constant modifier
configure:28700: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:28700: $? = 0
configure:28739: result: 8
configure:28787: checking Fortran 90 module extension
configure:28809: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:28809: $? = 0
configure:28826: result: mod
configure:28844: checking Fortran 90 module inclusion flag
configure:28866: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:28866: $? = 0
configure:28880: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -Iconftest.dir -Iconftest.dir  conftest.F90 >&5
configure:28880: $? = 0
configure:28901: result: -I
configure:28923: checking Fortran 90 module extension
configure:28962: result: mod
configure:28976: checking whether Fortran 90 compiler capitalizes .mod filenames
configure:28985: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:28985: $? = 0
configure:28995: result: no
configure:31324: checking for m4
configure:31340: found /usr/bin/m4
configure:31351: result: m4
configure:31408: checking m4 additional flags
configure:31420: result: none needed
configure:31433: checking for stdbool.h that conforms to C99
configure:31508: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:83:24: warning: address of 's' will always evaluate to 'true' [-Wpointer-bool-conversion]
             bool e = &s;
                  ~    ^
conftest.c:88:40: warning: address of array 'p' will always evaluate to 'true' [-Wpointer-bool-conversion]
                                      ~^
conftest.c:88:35: warning: address of array 'o' will always evaluate to 'true' [-Wpointer-bool-conversion]
                                 ~^
conftest.c:88:30: warning: address of array 'n' will always evaluate to 'true' [-Wpointer-bool-conversion]
                            ~^
conftest.c:87:63: warning: address of array 'i' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                                                             ~^
conftest.c:87:58: warning: address of array 'h' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                                                        ~^
conftest.c:87:53: warning: address of array 'g' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                                                   ~^
conftest.c:87:48: warning: address of array 'f' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                                              ~^
conftest.c:87:38: warning: address of array 'd' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                                    ~^
conftest.c:87:33: warning: address of array 'c' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                               ~^
conftest.c:87:28: warning: address of array 'b' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                          ~^
conftest.c:87:23: warning: address of array 'a' will always evaluate to 'true' [-Wpointer-bool-conversion]
             return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
                     ~^
12 warnings generated.
configure:31508: $? = 0
configure:31515: result: yes
configure:31517: checking for _Bool
configure:31517: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31517: $? = 0
configure:31517: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:70:20: error: expected expression
if (sizeof ((_Bool)))
                   ^
1 error generated.
configure:31517: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((_Bool)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:31517: result: yes
configure:31535: checking for inline
configure:31551: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31551: $? = 0
configure:31559: result: inline
configure:31580: checking for IEEE floating point format
configure:31629: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31629: $? = 0
configure:31629: ./conftest
configure:31629: $? = 0
configure:31638: result: yes
configure:31648: checking whether strdup is declared
configure:31648: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31648: $? = 0
configure:31648: result: yes
configure:31657: checking for strdup
configure:31657: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
conftest.c:51:6: warning: incompatible redeclaration of library function 'strdup' [-Wincompatible-library-redeclaration]
char strdup ();
     ^
conftest.c:51:6: note: 'strdup' is a builtin with type 'char *(const char *)'
1 warning generated.
configure:31657: $? = 0
configure:31657: result: yes
configure:31678: checking whether strerror is declared
configure:31678: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31678: $? = 0
configure:31678: result: yes
configure:31687: checking for strerror
configure:31687: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
conftest.c:52:6: warning: incompatible redeclaration of library function 'strerror' [-Wincompatible-library-redeclaration]
char strerror ();
     ^
conftest.c:52:6: note: 'strerror' is a builtin with type 'char *(int)'
1 warning generated.
configure:31687: $? = 0
configure:31687: result: yes
configure:31697: checking whether access is declared
configure:31697: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31697: $? = 0
configure:31697: result: yes
configure:31706: checking for access
configure:31706: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31706: $? = 0
configure:31706: result: yes
configure:31716: checking whether truncate is declared
configure:31716: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31716: $? = 0
configure:31716: result: yes
configure:31726: checking for truncate
configure:31726: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31726: $? = 0
configure:31726: result: yes
configure:31736: checking whether unlink is declared
configure:31736: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31736: $? = 0
configure:31736: result: yes
configure:31745: checking for unlink
configure:31745: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31745: $? = 0
configure:31745: result: yes
configure:31755: checking whether strcasecmp is declared
configure:31755: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31755: $? = 0
configure:31755: result: yes
configure:31764: checking for strcasecmp
configure:31764: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
conftest.c:56:6: warning: incompatible redeclaration of library function 'strcasecmp' [-Wincompatible-library-redeclaration]
char strcasecmp ();
     ^
conftest.c:56:6: note: 'strcasecmp' is a builtin with type 'int (const char *, const char *)'
1 warning generated.
configure:31764: $? = 0
configure:31764: result: yes
configure:31797: checking search.h usability
configure:31797: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31797: $? = 0
configure:31797: result: yes
configure:31797: checking search.h presence
configure:31797: clang -E  conftest.c
configure:31797: $? = 0
configure:31797: result: yes
configure:31797: checking for search.h
configure:31797: result: yes
configure:31808: checking whether tsearch is declared
configure:31808: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31808: $? = 0
configure:31808: result: yes
configure:31817: checking for tsearch
configure:31817: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31817: $? = 0
configure:31817: result: yes
configure:31827: checking whether tdelete is declared
configure:31827: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:31827: $? = 0
configure:31827: result: yes
configure:31836: checking for tdelete
configure:31836: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31836: $? = 0
configure:31836: result: yes
configure:31871: checking size of MPI_Offset
configure:31876: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31876: $? = 0
configure:31876: ./conftest
configure:31876: $? = 0
configure:31891: result: 8
configure:31914: checking size of MPI_Aint
configure:31919: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:31919: $? = 0
configure:31919: ./conftest
configure:31919: $? = 0
configure:31934: result: 8
configure:31977: checking whether MPI_COMBINER_HVECTOR_INTEGER is defined
configure:31998: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:52:11: error: static assertion failed: MPI_COMBINER_HVECTOR_INTEGER was removed in MPI-3.0.  Use MPI_COMBINER_HVECTOR instead.
int dummy=MPI_COMBINER_HVECTOR_INTEGER;
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:828:46: note: expanded from macro 'MPI_COMBINER_HVECTOR_INTEGER'
#        define MPI_COMBINER_HVECTOR_INTEGER THIS_SYMBOL_WAS_REMOVED_IN_MPI30(MPI_COMBINER_HVECTOR_INTEGER, MPI_COMBINER_HVECTOR);
                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:349:65: note: expanded from macro 'THIS_SYMBOL_WAS_REMOVED_IN_MPI30'
#define THIS_SYMBOL_WAS_REMOVED_IN_MPI30(symbol, new_symbol) 0; _Static_assert(0, #symbol " was removed in MPI-3.0.  Use " #new_symbol " instead.")
                                                                ^              ~
1 error generated.
configure:31998: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <mpi.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 ()
| {
| int dummy=MPI_COMBINER_HVECTOR_INTEGER;
|   ;
|   return 0;
| }
configure:32004: result: no
configure:32011: checking whether MPI_COMBINER_HINDEXED_INTEGER is defined
configure:32032: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:52:11: error: static assertion failed: MPI_COMBINER_HINDEXED_INTEGER was removed in MPI-3.0.  Use MPI_COMBINER_HINDEXED instead.
int dummy=MPI_COMBINER_HINDEXED_INTEGER;
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:829:47: note: expanded from macro 'MPI_COMBINER_HINDEXED_INTEGER'
#        define MPI_COMBINER_HINDEXED_INTEGER THIS_SYMBOL_WAS_REMOVED_IN_MPI30(MPI_COMBINER_HINDEXED_INTEGER, MPI_COMBINER_HINDEXED);
                                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:349:65: note: expanded from macro 'THIS_SYMBOL_WAS_REMOVED_IN_MPI30'
#define THIS_SYMBOL_WAS_REMOVED_IN_MPI30(symbol, new_symbol) 0; _Static_assert(0, #symbol " was removed in MPI-3.0.  Use " #new_symbol " instead.")
                                                                ^              ~
1 error generated.
configure:32032: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <mpi.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 ()
| {
| int dummy=MPI_COMBINER_HINDEXED_INTEGER;
|   ;
|   return 0;
| }
configure:32038: result: no
configure:32045: checking whether MPI_COMBINER_STRUCT_INTEGER is defined
configure:32066: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:52:11: error: static assertion failed: MPI_COMBINER_STRUCT_INTEGER was removed in MPI-3.0.  Use MPI_COMBINER_STRUCT instead.
int dummy=MPI_COMBINER_STRUCT_INTEGER;
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:830:45: note: expanded from macro 'MPI_COMBINER_STRUCT_INTEGER'
#        define MPI_COMBINER_STRUCT_INTEGER THIS_SYMBOL_WAS_REMOVED_IN_MPI30(MPI_COMBINER_STRUCT_INTEGER, MPI_COMBINER_STRUCT);
                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/include/mpi.h:349:65: note: expanded from macro 'THIS_SYMBOL_WAS_REMOVED_IN_MPI30'
#define THIS_SYMBOL_WAS_REMOVED_IN_MPI30(symbol, new_symbol) 0; _Static_assert(0, #symbol " was removed in MPI-3.0.  Use " #new_symbol " instead.")
                                                                ^              ~
1 error generated.
configure:32066: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <mpi.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 ()
| {
| int dummy=MPI_COMBINER_STRUCT_INTEGER;
|   ;
|   return 0;
| }
configure:32072: result: no
configure:32123: checking whether char is unsigned
configure:32150: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32150: $? = 0
configure:32157: result: no
configure:32164: checking whether byte ordering is bigendian
configure:32179: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:41:9: error: unknown type name 'not'
               not a universal capable compiler
               ^
conftest.c:41:14: error: expected ';' after top level declarator
               not a universal capable compiler
                    ^
                    ;
2 errors generated.
configure:32179: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:32232: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32232: $? = 0
configure:32258: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:55:4: error: use of undeclared identifier 'not'
                 not big endian
                 ^
1 error generated.
configure:32258: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 		#include <sys/param.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 ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| 		 not big endian
| 		#endif
| 
|   ;
|   return 0;
| }
configure:32418: result: no
configure:32480: checking for size_t
configure:32480: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32480: $? = 0
configure:32480: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:84:21: error: expected expression
if (sizeof ((size_t)))
                    ^
1 error generated.
configure:32480: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((size_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32480: result: yes
configure:32491: checking for off_t
configure:32491: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32491: $? = 0
configure:32491: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:84:20: error: expected expression
if (sizeof ((off_t)))
                   ^
1 error generated.
configure:32491: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((off_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32491: result: yes
configure:32502: checking for ssize_t
configure:32502: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32502: $? = 0
configure:32502: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:84:22: error: expected expression
if (sizeof ((ssize_t)))
                     ^
1 error generated.
configure:32502: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((ssize_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32502: result: yes
configure:32514: checking for ptrdiff_t
configure:32514: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32514: $? = 0
configure:32514: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:84:24: error: expected expression
if (sizeof ((ptrdiff_t)))
                       ^
1 error generated.
configure:32514: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((ptrdiff_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32514: result: yes
configure:32523: checking for schar
configure:32523: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:85:13: error: use of undeclared identifier 'schar'; did you mean 'char'?
if (sizeof (schar))
            ^~~~~
            char
conftest.c:85:12: error: reference to overloaded function could not be resolved; did you mean to call it?
if (sizeof (schar))
           ^~~~~~~
2 errors generated.
configure:32523: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (schar))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32523: result: no
configure:32532: checking for uchar
configure:32532: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:85:13: error: use of undeclared identifier 'uchar'
if (sizeof (uchar))
            ^
1 error generated.
configure:32532: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (uchar))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32532: result: no
configure:32541: checking for ushort
configure:32541: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32541: $? = 0
configure:32541: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:85:21: error: expected expression
if (sizeof ((ushort)))
                    ^
1 error generated.
configure:32541: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((ushort)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32541: result: yes
configure:32550: checking for uint
configure:32550: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
configure:32550: $? = 0
configure:32550: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:86:19: error: expected expression
if (sizeof ((uint)))
                  ^
1 error generated.
configure:32550: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_USHORT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof ((uint)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:32550: result: yes
configure:32559: checking for longlong
configure:32559: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:87:13: error: use of undeclared identifier 'longlong'
if (sizeof (longlong))
            ^
1 error generated.
configure:32559: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_USHORT 1
| #define HAVE_UINT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (longlong))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32559: result: no
configure:32568: checking for ulonglong
configure:32568: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:87:13: error: use of undeclared identifier 'ulonglong'
if (sizeof (ulonglong))
            ^
1 error generated.
configure:32568: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_USHORT 1
| #define HAVE_UINT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (ulonglong))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32568: result: no
configure:32577: checking for int64
configure:32577: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:87:13: error: use of undeclared identifier 'int64'
if (sizeof (int64))
            ^
1 error generated.
configure:32577: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_USHORT 1
| #define HAVE_UINT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (int64))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32577: result: no
configure:32586: checking for uint64
configure:32586: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.c >&5
conftest.c:87:13: error: use of undeclared identifier 'uint64'
if (sizeof (uint64))
            ^
1 error generated.
configure:32586: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PnetCDF"
| #define PACKAGE_TARNAME "pnetcdf"
| #define PACKAGE_VERSION "1.12.3"
| #define PACKAGE_STRING "PnetCDF 1.12.3"
| #define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
| #define PACKAGE_URL "https://parallel-netcdf.github.io"
| #define PACKAGE "pnetcdf"
| #define VERSION "1.12.3"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define ENABLE_CXX 1
| #define ENABLE_FORTRAN 1
| #define F77_NAME_LOWER_USCORE /**/
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_ACCESS 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNLINK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_TDELETE 1
| #define SIZEOF_MPI_OFFSET 8
| #define SIZEOF_MPI_AINT 8
| #define ENABLE_REQ_AGGREGATION 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_USHORT 1
| #define HAVE_UINT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #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 ()
| {
| if (sizeof (uint64))
| 	 return 0;
|   ;
|   return 0;
| }
configure:32586: result: no
configure:32601: checking size of size_t
configure:32606: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32606: $? = 0
configure:32606: ./conftest
configure:32606: $? = 0
configure:32620: result: 8
configure:32634: checking size of off_t
configure:32639: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32639: $? = 0
configure:32639: ./conftest
configure:32639: $? = 0
configure:32653: result: 8
configure:32667: checking size of char
configure:32672: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32672: $? = 0
configure:32672: ./conftest
configure:32672: $? = 0
configure:32686: result: 1
configure:32700: checking size of signed char
configure:32705: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32705: $? = 0
configure:32705: ./conftest
configure:32705: $? = 0
configure:32719: result: 1
configure:32733: checking size of unsigned char
configure:32738: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32738: $? = 0
configure:32738: ./conftest
configure:32738: $? = 0
configure:32752: result: 1
configure:32766: checking size of short
configure:32771: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32771: $? = 0
configure:32771: ./conftest
configure:32771: $? = 0
configure:32785: result: 2
configure:32799: checking size of unsigned short int
configure:32804: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32804: $? = 0
configure:32804: ./conftest
configure:32804: $? = 0
configure:32818: result: 2
configure:32832: checking size of unsigned short
configure:32837: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32837: $? = 0
configure:32837: ./conftest
configure:32837: $? = 0
configure:32851: result: 2
configure:32865: checking size of int
configure:32870: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32870: $? = 0
configure:32870: ./conftest
configure:32870: $? = 0
configure:32884: result: 4
configure:32898: checking size of unsigned int
configure:32903: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32903: $? = 0
configure:32903: ./conftest
configure:32903: $? = 0
configure:32917: result: 4
configure:32931: checking size of long
configure:32936: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32936: $? = 0
configure:32936: ./conftest
configure:32936: $? = 0
configure:32950: result: 8
configure:32964: checking size of float
configure:32969: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:32969: $? = 0
configure:32969: ./conftest
configure:32969: $? = 0
configure:32983: result: 4
configure:32997: checking size of double
configure:33002: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33002: $? = 0
configure:33002: ./conftest
configure:33002: $? = 0
configure:33016: result: 8
configure:33030: checking size of long long
configure:33035: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33035: $? = 0
configure:33035: ./conftest
configure:33035: $? = 0
configure:33049: result: 8
configure:33063: checking size of unsigned long long
configure:33068: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33068: $? = 0
configure:33068: ./conftest
configure:33068: $? = 0
configure:33082: result: 8
configure:33096: checking size of ptrdiff_t
configure:33101: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33101: $? = 0
configure:33101: ./conftest
configure:33101: $? = 0
configure:33115: result: 8
configure:33201: checking size of ushort
configure:33206: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33206: $? = 0
configure:33206: ./conftest
configure:33206: $? = 0
configure:33220: result: 2
configure:33236: checking size of uint
configure:33241: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33241: $? = 0
configure:33241: ./conftest
configure:33241: $? = 0
configure:33255: result: 4
configure:33342: checking size of MPI_Fint
configure:33347: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c  >&5
configure:33347: $? = 0
configure:33347: ./conftest
configure:33347: $? = 0
configure:33362: result: 4
configure:33550: checking for /usr/bin/nm
configure:33577: result: /usr/bin/nm -B
configure:33590: checking nm flags
configure:33595: result: 
configure:33606: checking for C-equivalent to Fortran routine "SUB"
configure:33627: result: sub_
configure:33645: checking for Fortran "integer*1"
configure:33654: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:33654: $? = 0
configure:33655: result: yes
configure:33684: checking for Fortran "integer*2"
configure:33693: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:33693: $? = 0
configure:33694: result: yes
configure:33723: checking for Fortran "integer*8"
configure:33732: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.F90 >&5
configure:33732: $? = 0
configure:33733: result: yes
configure:33767: checking if Fortran "integer*1" is 
configure:33777: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:33780: $? = 0
configure:33783: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:33786: $? = 0
configure:33789: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:33792: $? = 0
configure:33795: ./conftest
configure:33798: $? = 0
configure:33800: result: "signed char" in C
configure:33842: checking if Fortran "integer*2" is 
configure:33852: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:33855: $? = 0
configure:33858: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:33861: $? = 0
configure:33864: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:33867: $? = 0
configure:33870: ./conftest
configure:33873: $? = 0
configure:33875: result: "short" in C
configure:33917: checking if Fortran "integer*8" is 
configure:33927: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:33930: $? = 0
configure:33933: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:33936: $? = 0
configure:33939: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:33942: $? = 0
configure:33945: ./conftest
configure:33948: $? = 0
configure:33950: result: "int" in C
configure:33990: checking if Fortran "integer" is 
configure:34000: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:34003: $? = 0
configure:34006: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:34009: $? = 0
configure:34012: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:34015: $? = 0
configure:34018: ./conftest
configure:34021: $? = 0
configure:34023: result: "int" in C
configure:34061: checking if Fortran "real" is 
configure:34071: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:34074: $? = 0
configure:34077: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:34080: $? = 0
configure:34083: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:34086: $? = 0
configure:34089: ./conftest
configure:34092: $? = 0
configure:34094: result: "float" in C
configure:34132: checking if Fortran "doubleprecision" is 
configure:34142: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc -c  -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.c
configure:34145: $? = 0
configure:34148: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC -c conftestf.f
configure:34151: $? = 0
configure:34154: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90 -o conftest -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftestf.o conftest.o -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC 
configure:34157: $? = 0
configure:34160: ./conftest
configure:34163: $? = 0
configure:34165: result: "double" in C
configure:34218: checking for Fortran 77 GNU intrinsic INT
configure:34242: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:34242: $? = 0
configure:34255: result: yes
configure:34268: checking for Fortran 77 intrinsic INT1
configure:34286: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:34286: $? = 0
configure:34299: result: yes
configure:34311: checking for Fortran 77 intrinsic INT2
configure:34329: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:34329: $? = 0
configure:34342: result: yes
configure:34354: checking for Fortran 77 intrinsic INT8
configure:34372: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC conftest.f >&5
configure:34372: $? = 0
configure:34385: result: yes
configure:34442: checking for gcov
configure:34458: found /usr/bin/gcov
configure:34469: result: gcov
configure:34592: checking if C++ macro __func__ or __FUNCTION__ is defined
configure:34624: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:34624: $? = 0
configure:34647: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx -c -march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC  conftest.cpp >&5
configure:34647: $? = 0
configure:34659: result: yes
configure:35966: checking for latex
configure:35999: result: no
configure:36006: checking for dvipdf
configure:36024: found /usr/bin/dvipdf
configure:36036: result: /usr/bin/dvipdf
configure:36833: checking for mpiexec
configure:36851: found /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpiexec
configure:36863: result: /home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpiexec
configure:36964: checking for gcc
configure:36982: found /usr/bin/gcc
configure:36995: result: /usr/bin/gcc
configure:37007: checking C compiler for serial utility programs
configure:37009: result: /usr/bin/gcc
configure:37184: checking that generated files are newer than configure
configure:37190: result: done
configure:37369: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by PnetCDF config.status 1.12.3, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on server.clearlight.io

config.status:1563: creating Makefile
config.status:1563: creating src/Makefile
config.status:1563: creating src/dispatchers/Makefile
config.status:1563: creating src/libs/Makefile
config.status:1563: creating src/include/Makefile
config.status:1563: creating src/include/pnetcdf.h
config.status:1563: creating src/drivers/Makefile
config.status:1563: creating src/drivers/common/Makefile
config.status:1563: creating src/drivers/include/Makefile
config.status:1563: creating src/drivers/ncmpio/Makefile
config.status:1563: creating src/drivers/nc4io/Makefile
config.status:1563: creating src/drivers/ncadios/Makefile
config.status:1563: creating src/drivers/ncbbio/Makefile
config.status:1563: creating src/drivers/ncfoo/Makefile
config.status:1563: creating src/binding/Makefile
config.status:1563: creating src/binding/cxx/Makefile
config.status:1563: creating src/binding/f77/Makefile
config.status:1563: creating src/binding/f77/pnetcdf.inc
config.status:1563: creating src/binding/f90/Makefile
config.status:1563: creating src/binding/f90/pnetcdf.f90
config.status:1563: creating src/binding/f90/api.fh
config.status:1563: creating src/binding/f90/nfmpi_constants.fh
config.status:1563: creating src/utils/Makefile
config.status:1563: creating src/utils/ncoffsets/Makefile
config.status:1563: creating src/utils/pnetcdf_version/Makefile
config.status:1563: creating src/utils/ncvalidator/Makefile
config.status:1563: creating src/utils/ncmpidiff/Makefile
config.status:1563: creating src/utils/ncmpidump/Makefile
config.status:1563: creating src/utils/ncmpigen/Makefile
config.status:1563: creating src/utils/ncmpilogdump/Makefile
config.status:1563: creating src/utils/pnetcdf-config
config.status:1563: creating src/packaging/Makefile
config.status:1563: creating src/packaging/pnetcdf.pc
config.status:1563: creating examples/Makefile
config.status:1563: creating examples/adios/Makefile
config.status:1563: creating examples/C/Makefile
config.status:1563: creating examples/tutorial/Makefile
config.status:1563: creating examples/CXX/Makefile
config.status:1563: creating examples/F77/Makefile
config.status:1563: creating examples/F90/Makefile
config.status:1563: creating examples/burst_buffer/Makefile
config.status:1563: creating benchmarks/Makefile
config.status:1563: creating benchmarks/C/Makefile
config.status:1563: creating benchmarks/FLASH-IO/Makefile
config.status:1563: creating doc/Makefile
config.status:1563: creating doc/pnetcdf-api/Makefile
config.status:1563: creating man/Makefile
config.status:1563: creating test/Makefile
config.status:1563: creating test/common/Makefile
config.status:1563: creating test/C/Makefile
config.status:1563: creating test/fandc/Makefile
config.status:1563: creating test/nc_test/Makefile
config.status:1563: creating test/cdf_format/Makefile
config.status:1563: creating test/nc4/Makefile
config.status:1563: creating test/adios/Makefile
config.status:1563: creating test/header/Makefile
config.status:1563: creating test/testcases/Makefile
config.status:1563: creating test/nonblocking/Makefile
config.status:1563: creating test/largefile/Makefile
config.status:1563: creating test/CXX/Makefile
config.status:1563: creating test/subfile/Makefile
config.status:1563: creating test/nf_test/Makefile
config.status:1563: creating test/nf_test/tests.inc
config.status:1563: creating test/nf90_test/Makefile
config.status:1563: creating test/nf90_test/tests.inc
config.status:1563: creating test/F90/Makefile
config.status:1563: creating test/burst_buffer/Makefile
config.status:1563: creating src/include/config.h
config.status:1792: executing depfiles commands
config.status:1869: cd src/dispatchers       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/libs       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/common       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/ncmpio       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/nc4io       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/ncadios       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/ncbbio       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/drivers/ncfoo       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/binding/cxx       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/binding/f77       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncoffsets       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/pnetcdf_version       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncvalidator       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncmpidiff       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncmpidump       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncmpigen       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd src/utils/ncmpilogdump       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd examples/adios       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd examples/C       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd examples/tutorial       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd examples/CXX       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd examples/burst_buffer       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd benchmarks/C       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/common       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/C       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/fandc       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/nc_test       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/cdf_format       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/nc4       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/adios       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/header       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/testcases       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/nonblocking       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/largefile       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/CXX       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/subfile       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/nf_test       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/nf90_test       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1869: cd test/burst_buffer       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1874: $? = 0
config.status:1792: executing libtool commands
configure:40382: WARNING: unrecognized options: --enable-mpi-io-test

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

ac_cv_CHECK_MPI_CPP_SEEK_SET=no
ac_cv_CHECK_MPI_DATATYPE_MPI_OFFSET=yes
ac_cv_SED_I='/bin/sed -i'\'''\'''
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_char_unsigned=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_ieeefloat=yes
ac_cv_c_inline=inline
ac_cv_cxx_compiler_gnu=yes
ac_cv_cxx_macro_func=yes
ac_cv_cxx_macro_function=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=set
ac_cv_env_CPP_value='clang -E'
ac_cv_env_CXXCPP_set=set
ac_cv_env_CXXCPP_value='clang++ -E'
ac_cv_env_CXXFLAGS_set=set
ac_cv_env_CXXFLAGS_value='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FCFLAGS_set=set
ac_cv_env_FCFLAGS_value='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
ac_cv_env_FC_set=
ac_cv_env_FC_value=
ac_cv_env_FFLAGS_set=set
ac_cv_env_FFLAGS_value='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
ac_cv_env_GCOV_set=
ac_cv_env_GCOV_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LT_SYS_LIBRARY_PATH_set=
ac_cv_env_LT_SYS_LIBRARY_PATH_value=
ac_cv_env_MPICC_set=set
ac_cv_env_MPICC_value=mpicc
ac_cv_env_MPICXX_set=set
ac_cv_env_MPICXX_value=mpicxx
ac_cv_env_MPIF77_set=set
ac_cv_env_MPIF77_value=mpifort
ac_cv_env_MPIF90_set=set
ac_cv_env_MPIF90_value=mpif90
ac_cv_env_RM_set=
ac_cv_env_RM_value=
ac_cv_env_SEQ_CC_set=
ac_cv_env_SEQ_CC_value=
ac_cv_env_TESTMPIRUN_set=
ac_cv_env_TESTMPIRUN_value=
ac_cv_env_TESTOUTDIR_set=
ac_cv_env_TESTOUTDIR_value=
ac_cv_env_TESTSEQRUN_set=
ac_cv_env_TESTSEQRUN_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_f77_compiler_gnu=no
ac_cv_f77_gnu_int=yes
ac_cv_f77_int1=yes
ac_cv_f77_int2=yes
ac_cv_f77_int8=yes
ac_cv_f77_libs=' -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread'
ac_cv_fc_compiler_gnu=no
ac_cv_fc_constant_modifier=8
ac_cv_fc_dummy_main=none
ac_cv_fc_fixedform=-ffixed-form
ac_cv_fc_freeform=-ffree-form
ac_cv_fc_libs=' -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread'
ac_cv_fc_mangling='lower case, underscore, no extra underscore'
ac_cv_fc_module_ext=mod
ac_cv_fc_module_flag=-I
ac_cv_fc_pp_define=-D
ac_cv_fc_pp_srcext_F90=none
ac_cv_fc_pp_srcext_F=none
ac_cv_fc_srcext_F90=none
ac_cv_fc_srcext_F=none
ac_cv_fc_srcext_f90=none
ac_cv_fc_srcext_f=none
ac_cv_fortran_dummy_main=none
ac_cv_func_MPI_Comm_rank=yes
ac_cv_func_MPI_File_close=yes
ac_cv_func_MPI_File_open=yes
ac_cv_func_access=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_tdelete=yes
ac_cv_func_truncate=yes
ac_cv_func_tsearch=yes
ac_cv_func_unlink=yes
ac_cv_have_decl_MPICH2_VERSION=no
ac_cv_have_decl_MPICH_VERSION=no
ac_cv_have_decl_MVAPICH2_VERSION=no
ac_cv_have_decl_OMPI_MAJOR_VERSION=yes
ac_cv_have_decl_access=yes
ac_cv_have_decl_strcasecmp=yes
ac_cv_have_decl_strdup=yes
ac_cv_have_decl_strerror=yes
ac_cv_have_decl_tdelete=yes
ac_cv_have_decl_truncate=yes
ac_cv_have_decl_tsearch=yes
ac_cv_have_decl_unlink=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_search_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_m4_stdout=
ac_cv_mpi_compiler_base_MPICC=
ac_cv_mpi_compiler_base_MPICXX=
ac_cv_mpi_compiler_base_MPIF90=
ac_cv_objext=o
ac_cv_path_DVIPDF=/usr/bin/dvipdf
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_SEQ_CC=/usr/bin/gcc
ac_cv_path_ac_mpi_prog_MPICC=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
ac_cv_path_ac_mpi_prog_MPICXX=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx
ac_cv_path_ac_mpi_prog_MPIF77=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort
ac_cv_path_ac_mpi_prog_MPIF90=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90
ac_cv_path_ac_mpi_prog_TESTMPIRUN=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpiexec
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_lt_DD=/bin/dd
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='clang -E'
ac_cv_prog_CXXCPP='clang++ -E'
ac_cv_prog_GCOV=gcov
ac_cv_prog_M4=m4
ac_cv_prog_NM='/usr/bin/nm -B'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_f77_g=yes
ac_cv_prog_f77_v=-v
ac_cv_prog_f90_uppercase_mod=no
ac_cv_prog_fc_g=yes
ac_cv_prog_fc_v=-v
ac_cv_prog_make_make_set=yes
ac_cv_prog_rm_cmd=yes
ac_cv_sizeof_MPI_Aint=8
ac_cv_sizeof_MPI_Fint=4
ac_cv_sizeof_MPI_Offset=8
ac_cv_sizeof_char=1
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_int=4
ac_cv_sizeof_long=8
ac_cv_sizeof_long_long=8
ac_cv_sizeof_off_t=8
ac_cv_sizeof_ptrdiff_t=8
ac_cv_sizeof_short=2
ac_cv_sizeof_signed_char=1
ac_cv_sizeof_size_t=8
ac_cv_sizeof_uint=4
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_int=4
ac_cv_sizeof_unsigned_long_long=8
ac_cv_sizeof_unsigned_short=2
ac_cv_sizeof_unsigned_short_int=2
ac_cv_sizeof_ushort=2
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
ac_cv_type__Bool=yes
ac_cv_type_int64=no
ac_cv_type_longlong=no
ac_cv_type_off_t=yes
ac_cv_type_ptrdiff_t=yes
ac_cv_type_schar=no
ac_cv_type_size_t=yes
ac_cv_type_ssize_t=yes
ac_cv_type_uchar=no
ac_cv_type_uint64=no
ac_cv_type_uint=yes
ac_cv_type_ulonglong=no
ac_cv_type_ushort=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_ar_interface=ar
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
ax_cv_c_compiler_vendor=clang
ax_cv_cxx_compiler_vendor=clang
ax_cv_fc_compiler_vendor=unknown
lt_cv_ar_at_file=@
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_c_o_F77=yes
lt_cv_prog_compiler_c_o_FC=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_F77=
lt_cv_prog_compiler_pic_FC=
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=yes
lt_cv_prog_compiler_static_works=no
lt_cv_prog_compiler_static_works_CXX=no
lt_cv_prog_compiler_static_works_F77=yes
lt_cv_prog_compiler_static_works_FC=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/  {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"lib\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_global_symbol_to_import=
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
lt_cv_truncate_bin='/bin/dd bs=4096 count=1'

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

ABIVERSION='4:3:0'
ABIVERSIONFLAGS='-version-info $(ABIVERSION)'
ACLOCAL='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/missing aclocal-1.16'
ADIOS_INC=''
ADIOS_LDFLAGS=''
ADIOS_LIBS=''
ADIOS_PACKAGE=''
ADIOS_VER_GE_1132='0'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/missing autoconf'
AUTOHEADER='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/missing autoheader'
AUTOMAKE='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/missing automake-1.16'
AWK='gawk'
BUILD_BENCHMARKS_IN_PNETCDF_FALSE='#'
BUILD_BENCHMARKS_IN_PNETCDF_TRUE=''
BUILD_COVERAGE_FALSE=''
BUILD_COVERAGE_TRUE='#'
BUILD_DOCS_FALSE=''
BUILD_DOCS_TRUE='#'
BUILD_DRIVER_FOO_FALSE=''
BUILD_DRIVER_FOO_TRUE='#'
BUILD_SHARED_LIB_FALSE=''
BUILD_SHARED_LIB_TRUE='#'
BUILD_TESTSETS_FALSE='#'
BUILD_TESTSETS_TRUE=''
CC='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
CONFIGURE_ARGS_CLEAN='--prefix=/home/maxd/AOCC/opt/amd/lib/pnetcdf-1.12.3 --enable-fortran --enable-cxx --enable-mpi-io-test'
CONFIG_DATE='Tue Mar 12 11:02:40 UTC 2024'
CPP='clang -E'
CPPFLAGS=''
CXX='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx'
CXXCPP='clang++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
CYGPATH_W='echo'
DECL_MPI_OFFSET_FALSE='#'
DECL_MPI_OFFSET_TRUE=''
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
DVIPDF='/usr/bin/dvipdf'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_ADIOS='0'
ENABLE_ADIOS_FALSE=''
ENABLE_ADIOS_TRUE='#'
ENABLE_BURST_BUFFER='0'
ENABLE_BURST_BUFFER_FALSE=''
ENABLE_BURST_BUFFER_TRUE='#'
ENABLE_CXX='1'
ENABLE_ERANGE_FILL='1'
ENABLE_ERANGE_FILL_FALSE='#'
ENABLE_ERANGE_FILL_TRUE=''
ENABLE_FORTRAN='1'
ENABLE_LARGE_SINGLE_REQ='0'
ENABLE_LARGE_SINGLE_REQ_FALSE=''
ENABLE_LARGE_SINGLE_REQ_TRUE='#'
ENABLE_NETCDF4='0'
ENABLE_NETCDF4_FALSE=''
ENABLE_NETCDF4_TRUE='#'
ENABLE_NULL_BYTE_HEADER_PADDING='0'
ENABLE_REQ_AGGREGATION='1'
ENABLE_SUBFILING='0'
ENABLE_SUBFILING_FALSE=''
ENABLE_SUBFILING_TRUE='#'
ENABLE_THREAD_SAFE='0'
ENABLE_THREAD_SAFE_FALSE=''
ENABLE_THREAD_SAFE_TRUE='#'
EXEEXT=''
F77='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort'
FC='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90'
FCFLAGS='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
FCFLAGS_F90=''
FCFLAGS_F=''
FCFLAGS_f90=''
FCFLAGS_f=''
FCLIBS=' -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread'
FC_DEFINE='-D'
FC_MODEXT='mod'
FC_MODINC='-I'
FFIXEDFORMFLAG='-ffixed-form'
FFLAGS='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
FFREEFORMFLAG='-ffree-form'
FGREP='/bin/grep -F'
FLIBS=' -L/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/lib -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/bin/../lib -L/lib -L/usr/lib -L/home/maxd/AOCC/opt/amd/aocl/4.2.0/aocc/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib -L/home/maxd/AOCC/opt/amd/aocc/4.2.0/lib32 -L. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lflangmain -lflang -lflangrti -lpgmath -lquadmath -lompstub -lm -lrt -lpthread'
GCOV='gcov'
GREP='/bin/grep'
HAS_FORTRAN_FALSE='#'
HAS_FORTRAN_TRUE=''
HAS_LATEX_FALSE=''
HAS_LATEX_TRUE='#'
HAS_MPICXX_FALSE='#'
HAS_MPICXX_TRUE=''
HAVE_F77_GNU_INT='yes'
HAVE_F77_GNU_INT_FALSE='#'
HAVE_F77_GNU_INT_TRUE=''
HAVE_F77_INT1='yes'
HAVE_F77_INT1_FALSE='#'
HAVE_F77_INT1_TRUE=''
HAVE_F77_INT2='yes'
HAVE_F77_INT2_FALSE='#'
HAVE_F77_INT2_TRUE=''
HAVE_F77_INT8='yes'
HAVE_F77_INT8_FALSE='#'
HAVE_F77_INT8_TRUE=''
HAVE_F77_SUPPORT_FREEFORM_FALSE='#'
HAVE_F77_SUPPORT_FREEFORM_TRUE=''
HAVE_MPI_MOD_FALSE='#'
HAVE_MPI_MOD_TRUE=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INTENTV='INOUT'
IN_PLACE_SWAP='-1'
IS_BIGENDIAN_FALSE=''
IS_BIGENDIAN_TRUE='#'
LATEX=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-march=broadwell -mtune=broadwell -O3 -freciprocal-math -fPIC'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
M4='m4'
M4FFLAGS=' -DPNETCDF'
M4FLAGS=' -DPNETCDF'
MAINT=''
MAINTAINER_MODE_FALSE='#'
MAINTAINER_MODE_TRUE=''
MAKEINFO='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
MPICC='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc'
MPICC_IS_FCCPX_FALSE=''
MPICC_IS_FCCPX_TRUE='#'
MPICC_IS_PGCC_FALSE=''
MPICC_IS_PGCC_TRUE='#'
MPICC_IS_XLC_FALSE=''
MPICC_IS_XLC_TRUE='#'
MPICXX='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx'
MPIF77='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort'
MPIF90='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90'
NETCDF4_INC=''
NETCDF4_LDFLAGS=''
NETCDF4_LIBS=''
NETCDF4_PACKAGE=''
NETCDF_480_481_FALSE=''
NETCDF_480_481_TRUE='#'
NF_INT1_T='integer*1'
NF_INT2_T='integer*2'
NF_INT8_T='integer*8'
NM='/usr/bin/nm -B'
NMEDIT=''
NMFLAGS=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='pnetcdf'
PACKAGE_BUGREPORT='parallel-netcdf at mcs.anl.gov'
PACKAGE_NAME='PnetCDF'
PACKAGE_STRING='PnetCDF 1.12.3'
PACKAGE_TARNAME='pnetcdf'
PACKAGE_URL='https://parallel-netcdf.github.io'
PACKAGE_VERSION='1.12.3'
PATH_SEPARATOR=':'
PNETCDF_DEBUG='0'
PNETCDF_DEBUG_FALSE=''
PNETCDF_DEBUG_TRUE='#'
PNETCDF_PROFILING='0'
PNETCDF_PROFILING_FALSE=''
PNETCDF_PROFILING_TRUE='#'
PNETCDF_RELEASE_DATE='March 12, 2024'
PNETCDF_RELEASE_DATE_FULL='2024-03-12'
PNETCDF_VERSION='1.12.3'
PNETCDF_VERSION_MAJOR='1'
PNETCDF_VERSION_MINOR='12'
PNETCDF_VERSION_PRE=''
PNETCDF_VERSION_SUB='3'
PNF_FILL_INT64='-9223372036854775806_8'
PNF_FILL_UINT64='18446744073709551614_8'
PNF_FILL_UINT='4294967295_8'
PNF_INT8_MODIFIER=''
PNF_X_INT8_MAX='9223372036854775807_8'
PNF_X_INT8_MIN='-9223372036854775807_8'
PNF_X_UINT8_MAX='18446744073709551615_8'
PNF_X_UINT_MAX='4294967295_8'
RANLIB='ranlib'
RELAX_COORD_BOUND='1'
RELAX_COORD_BOUND_FALSE='#'
RELAX_COORD_BOUND_TRUE=''
REPLACE_CXX_FUNC_MACRO_FALSE=''
REPLACE_CXX_FUNC_MACRO_TRUE='#'
RM='rm'
RUN_LARGE_FILE_TEST_FALSE=''
RUN_LARGE_FILE_TEST_TRUE='#'
SED='/bin/sed'
SED_I='/bin/sed -i'\'''\'''
SEEK_SET_REDEFINED_FALSE=''
SEEK_SET_REDEFINED_TRUE='#'
SEQ_CC='/usr/bin/gcc'
SET_MAKE=''
SHELL='/bin/bash'
SIZEOF_MPI_AINT_IS_4_FALSE=''
SIZEOF_MPI_AINT_IS_4_TRUE='#'
SIZEOF_MPI_OFFSET='8'
STRIP='strip'
TESTMPIRUN='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpiexec -n NP'
TESTOUTDIR='.'
TESTSEQRUN=''
UPPER_CASE_MOD_FALSE=''
UPPER_CASE_MOD_TRUE='#'
USE_MPIF_HEADER='use mpi, only: MPI_OFFSET_KIND'
VERSION='1.12.3'
ac_ct_AR='ar'
ac_ct_CC='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc'
ac_ct_CXX=''
ac_ct_DUMPBIN=''
ac_ct_F77=''
ac_ct_FC=''
ac_cv_c_bigendian='no'
ac_cv_mpi_compiler_base_MPICC=''
ac_cv_mpi_compiler_base_MPICXX=''
ac_cv_mpi_compiler_base_MPIF90=''
ac_empty=''
ac_mpi_prog_MPICC='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicc'
ac_mpi_prog_MPICXX='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpicxx'
ac_mpi_prog_MPIF77='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpifort'
ac_mpi_prog_MPIF90='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpif90'
ac_mpi_prog_TESTMPIRUN='/home/maxd/AOCC/opt/amd/ompi/openmpi-5.0.2_aocc-4.2.0/bin/mpiexec'
adios_config=''
adios_libdir=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
enable_adios='no'
enable_netcdf4='no'
enable_shared='no'
enable_static='yes'
exec_prefix='${prefix}'
has_fortran='yes'
has_mpicxx='yes'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
in_place_swap='auto'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/maxd/AOCC/Build/pnetcdf-1.12.3/scripts/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
nc_config=''
netcdf4_libdir=''
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/home/maxd/AOCC/opt/amd/lib/pnetcdf-1.12.3'
program_transform_name='s,x,x,'
psdir='${docdir}'
rm_cmd='yes'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

/* confdefs.h */
#define PACKAGE_NAME "PnetCDF"
#define PACKAGE_TARNAME "pnetcdf"
#define PACKAGE_VERSION "1.12.3"
#define PACKAGE_STRING "PnetCDF 1.12.3"
#define PACKAGE_BUGREPORT "parallel-netcdf at mcs.anl.gov"
#define PACKAGE_URL "https://parallel-netcdf.github.io"
#define PACKAGE "pnetcdf"
#define VERSION "1.12.3"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define ENABLE_CXX 1
#define ENABLE_FORTRAN 1
#define F77_NAME_LOWER_USCORE /**/
#define HAVE__BOOL 1
#define HAVE_STDBOOL_H 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_ACCESS 1
#define HAVE_TRUNCATE 1
#define HAVE_UNLINK 1
#define HAVE_STRCASECMP 1
#define HAVE_SEARCH_H 1
#define HAVE_TSEARCH 1
#define HAVE_TDELETE 1
#define SIZEOF_MPI_OFFSET 8
#define SIZEOF_MPI_AINT 8
#define ENABLE_REQ_AGGREGATION 1
#define HAVE_PTRDIFF_T 1
#define HAVE_USHORT 1
#define HAVE_UINT 1
#define SIZEOF_SIZE_T 8
#define SIZEOF_OFF_T 8
#define SIZEOF_CHAR 1
#define SIZEOF_SIGNED_CHAR 1
#define SIZEOF_UNSIGNED_CHAR 1
#define SIZEOF_SHORT 2
#define SIZEOF_UNSIGNED_SHORT_INT 2
#define SIZEOF_UNSIGNED_SHORT 2
#define SIZEOF_INT 4
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_LONG 8
#define SIZEOF_FLOAT 4
#define SIZEOF_DOUBLE 8
#define SIZEOF_LONG_LONG 8
#define SIZEOF_UNSIGNED_LONG_LONG 8
#define SIZEOF_PTRDIFF_T 8
#define SIZEOF_USHORT 2
#define SIZEOF_UINT 4
#define SIZEOF_MPI_FINT 4
#define NF_INT1_T integer*1
#define NF_INT2_T integer*2
#define NF_INT8_T integer*8
#define NF_INT1_IS_C_SIGNED_CHAR 1
#define NF_INT2_IS_C_SHORT 1
#define NF_INT8_IS_C_INT 1
#define NF_INT_IS_C_INT 1
#define NF_REAL_IS_C_FLOAT 1
#define NF_DOUBLEPRECISION_IS_C_DOUBLE 1
#define RELAX_COORD_BOUND 1

configure: exit 0


More information about the parallel-netcdf mailing list