mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
835511eaeb
re: github netcdf-c issue #271 This occurs for several reasons, including: 1. using H5Aopen_name instead of H5Aexists to test if attribute exists. 2. using H5Eset_auto instead of H5Eset_auto2. There are probably others that will have to be extinguished as encountered. p.s Hope I did not overdo this and kill too much.
34 lines
830 B
Plaintext
34 lines
830 B
Plaintext
# Test c output
|
|
T=tst_misc
|
|
#CMD=valgrind --leak-check=full
|
|
CMD=gdb --args
|
|
|
|
#PAR=1
|
|
|
|
CFLAGS=-Wall -Wno-unused-variable -Wno-unused-function -g -O0 -I.. -I../include
|
|
|
|
ifdef PAR
|
|
CC=mpicc
|
|
#CC=/usr/local/bin/mpicc
|
|
LDFLAGS=../liblib/.libs/libnetcdf.a -L/usr/local/lib -lhdf5_hl -lhdf5 -lz -ldl -lcurl -lpnetcdf -lmpich -lm
|
|
else
|
|
CC=gcc
|
|
#LDFLAGS=../liblib/.libs/libnetcdf.a -L/usr/local/lib -lhdf5_hl -lhdf5 -lz -lm -lcurl
|
|
LDFLAGS=../liblib/.libs/libnetcdf.a -L/usr/local/lib -lhdf5_hl -lhdf5 -lz -ldl -lm -lcurl
|
|
endif
|
|
|
|
# cd .. ; ${MAKE} all
|
|
|
|
LLP=/usr/local/lib:${LD_LIBRARY_PATH}
|
|
|
|
all:: cmp
|
|
export LD_LIBRARY_PATH=${LLP}; export CFLAGS; export LDFLAGS; \
|
|
${CMD} ./t
|
|
|
|
cmp::
|
|
export LD_LIBRARY_PATH=${LLP}; export CFLAGS; export LDFLAGS; \
|
|
${CC} -o t ${CFLAGS} ${T}.c ${SRC} ${LDFLAGS}; \
|
|
|
|
cpp::
|
|
${CC} -E ${CFLAGS} ${T}.c > ${T}.txt
|