Climate Models on Ubuntu

Part 1: Model E

I felt a bit over my head attempting to port CESM, so I asked a grad student, who had done his Master’s on climate modelling, for help. He looked at the documentation, scratched his head, and suggested I start with NASA’s Model E instead, because it was easier to install. And was it ever! We had it up and running within an hour or so. It was probably so much easier because Model E comes with gfortran support, while CESM only has scripts written for commercial compilers like Intel or PGI.

Strangely, when using Model E, no matter what dates the rundeck sets for the simulation start and end, the subsequently generated I file always has December 1, 1949 as the start date and December 2, 1949 as the end date. We edited the I files after they were created, which seemed to fix the problem, but it was still kind of weird.

I set up Model E to run a ten-year simulation with fixed atmospheric concentration (really, I just picked a rundeck at random) over the weekend. It took it about 3 days to complete, so just over 7 hours per year of simulation time…not bad for a 32-bit desktop!

However, I’m having some weird problems with the output – after configuring the model to output files in NetCDF format and opening them in Panoply, only the file with all the sea ice variables worked. All the others either gave a blank map (array full of N/A’s) or threw errors when Panoply tried to read them. Perhaps the model isn’t enjoying having the I file edited?

Part 2: CESM

After exploring Model E, I felt like trying my hand at CESM again. Steve managed to port it onto his Macbook last year, and took detailed notes. Editing the scripts didn’t seem so ominous this time!

The CESM code can be downloaded using Subversion (instructions here) after a quick registration. Using the Ubuntu Software Center, I downloaded some necessary packages: libnetcdf-dev, mpich2, and torque-scheduler. I already had gfortran, which is sort of essential.

I used the Porting via user defined machine files method to configure the model for my machine, using the Hadley scripts as a starting point. Variables for the config_machines.xml are explained in Appendix D through H of the user’s guide (links in chapter 7). Mostly, you’re just pointing to folders where you want to store data and files. Here are a few exceptions:

  • DOUT_L_HTAR: I stuck with "TRUE", as that was the default.
  • CCSM_CPRNC: this tool already exists in the CESM source code, in /models/atm/cam/tools/cprnc.
  • BATCHQUERY and BATCHSUBMIT: the Hadley entry had “qstat” and “qsub”, respectively, so I Googled these terms to find out which batch submission software they referred to (Torque, which is freely available in the torque-scheduler package) and downloaded it so I could keep the commands the same!
  • GMAKE_J: this determines how many processors to commit to a certain task, and I wasn’t sure how many this machine had, so I just put “1”.
  • MAX_TASKS_PER_NODE: I chose "8", which the user’s guide had mentioned as an example.
  • MPISERIAL_SUPPORT: the default is “FALSE”.

The only file that I really needed to edit was Macros.<machine name>. The env_machopts.<machine name> file ended up being empty for me. I spent a while confused by the modules declarations, which turned out to refer to the Environment Modules software. Once I realized that, for this software to be helpful, I would have to write five or six modulefiles in a language I didn’t know, I decided that it probably wasn’t worth the effort, and took these declarations out. I left mkbatch.<machine name> alone, except for the first line which sets the machine, and then turned my attention to Macros.

“Getting this to work will be an iterative process”, the user’s guide says, and it certainly was (and still is). It’s never a good sign when the installation guide reminds you to be patient! Here is the sequence of each iteration:

  1. Edit the Macros file as best I can.
  2. Open up the terminal, cd to cesm1_0/scripts, and create a new case as follows: ./create_newcase -case test -res f19_g16 -compset X -mach <machine name>
  3. If this works, cd to test, and run configure: ./configure -case
  4. If all is well, try to build the case: ./test.<machine name>.build
  5. See where it fails and read the build log file it refers to for ideas as to what went wrong. Search on Google for what certain errors mean. Do some other work for a while, to let the ideas simmer.
  6. Set up for the next case: ./test.<machine name>.clean_build , cd .., and rm -rf test. This clears out old files so you can safely build a new case with the same name.
  7. See step 1.

I wasn’t really sure what the program paths were, as I couldn’t find a nicely contained folder for each one (like Windows has in “Program Files”), but I soon stumbled upon a nice little trick: look up the package on Ubuntu Package Manager, and click on “list of files” under the Download section. That should tell you what path the program used as its root.

I also discovered that setting FC and CC to gfortran and gcc, respectively, in the Macros file will throw errors. Instead, leave the variables as mpif90 and mpicc, which are linked to the GNU compilers. For example, when I type mpif90 in the terminal, the result is gfortran: no input files, just as if I had typed gfortran. For some reason, though, the errors go away.

As soon as I made it past building the mct and pio libraries, the build logs for each component (eg atm, ice) started saying gmake: command not found. This is one of the pitfalls of Ubuntu: it uses the command make for the same program that basically every other Unix-based OS calls gmake. So I needed to find and edit all the scripts that called gmake, or generated other scripts that called it, and so on. “There must be a way to automate this,” I thought, and from this article I found out how. In the terminal, cd to the CESM source code folder, and type the following:

grep -lr -e 'gmake' * | xargs sed -i 's/gmake/make/g'

You should only have to do this once. It’s case sensitive, so it will leave the xml variable GMAKE_J alone.

Then I turned my attention to compiler flags, which Steve chronicled quite well in his notes (see link above). I made most of the same changes that he did, except I didn’t need to change -DLINUX to -DDarwin. However, I needed some more compiler flags still. In the terminal, man gfortran brings up a list of all the options for gfortran, which was helpful.

The ccsm build log had hundreds of undefined reference errors as soon as it started to compile fortran. The way I understand it, many of the fortran files reference each other, but gfortran likes to append underscores to user-defined variables, and then it can’t find the file the variable is referencing! You can suppress this using the flag -fno-underscoring.

Now I am stuck on a new error. It looks like the ccsm script is almost reaching the end, as it’s using ld, the gcc linking mechanism, to tie all the files together. Then the build log says:

/usr/bin/ld: seq_domain_mct.o(.debug_info+0x1c32): unresolvable R_386_32 relocation against symbol 'mpi_fortran_argv_null'
/usr/bin/ld: final link failed: Nonrepresentable section on output
collect2: ld returned 1 exit status

I’m having trouble finding articles on the internet about similar errors, and the gcc and ld manpages are so long that trying every compiler flag isn’t really an option. Any ideas?

Update: Fixed it! In scripts/ccsm_utils/Build/Makefile, I changed LD := $(F90) to LD := gcc -shared. The build was finally successful! Now off to try and run it…

The good thing is that, since I re-started this project a few days ago, I haven’t spent very long stuck on any one error. I’m constantly having problems, but I move through them pretty quickly! In the meantime, I’m learning a lot about the model and how it fits everything together during installation. I’ve also come a long way with Linux programming in general. Considering that when I first installed Ubuntu a few months ago, and sheepishly called my friend to ask where to find the command line, I’m quite proud of my progress!

I hope this article will help future Ubuntu users install CESM, as it seems to have a few quirks that even Mac OS X doesn’t experience (eg make vs gmake). For the rest of you, apologies if I have bored you to tears!

Advertisement

13 thoughts on “Climate Models on Ubuntu

  1. Hi, Kate. I am about to keep you company, with my third attempt to get this beast running, in my case on a Red Hat cluster. I have been resisting getting started. This is really my most unfavorite part of the whole business, getting a new model running.

    You can see my previous attempt starting here: http://aardvarknoplay.blogspot.com/2010/12/after-much-moaning.html

    I do kvetch and moan a lot when I do this stuff. Your calm perseverance is something of an inspiration to me, though you’d expect me to be used to it by now. And while I encourage keeping a log in a public place so people can learn from each other, I think it’s worthwhile to start another blog for the purpose because the general readership won’t be interested.

    I doubt I’ll be blogging on model installation much more, it isn’t the main part of my job. I am mostly looking at the code for models. Running them is mostly just for fun, as well as getting a feel for the output and user interface. -Kate

    Are you planning to use the T31 resolution? Probably on a small machine that would be best.

    “It’s never a good sign when the installation guide reminds you to be patient!” +1 QOTW

  2. gmake vs. make: I found the following advice:

    sudo ln -s `which make` /usr/local/bin/gmake

    after which gmake should work too

    Yes, I tried that first, but for some reason it didn’t work! Typing “gmake” into the terminal still brought up “command not found”. -Kate

  3. I think mpif90 and mpicc are the message passing libriaries used and f90 is probably the one that knows how to send messages to fortran processes. Looking at MPI docs might help explain ‘mpi_fortran_argv_null’

  4. Kate:

    Seems you’re having fun! :) Personally I think software porting isn’t really something that should be OS novices. So essentially you’re diving into the deep end.

    In scripts/ccsm_utils/Build/Makefile, I changed LD := $(F90) to LD := gcc -shared.

    A more proper fix would be to instead use `gcc -fPIC -shared’, and also change all the compilation commands that produce .o files destined to go into shared library to read `gcc -fPIC’ instead of just `gcc’.

    This’ll produce shared libraries containing position-independent code (PIC); the advantage of PIC is that if two separate processes load the same shared library, there’ll only need to be one copy of the library (not two) in physical memory.

    — frank

  5. Kate:

    About the underscores/no-underscores thing, I can think of three reasons for the mismatch:

    (1) you compiled part of the code with one underscoring convention, and another with a different underscoring convention;
    (2) you used a precompiled Fortran library built for a different underscoring convention;
    (3) the Fortran model code interfaces with code not written in Fortran, e.g. C or assembly language.

    Generally, if all the code were written in Fortran, then it should be unnecessary for you to specify any underscoring convention either way. You should be able to expect all existing libraries to be compiled with the same convention, either all will be compiled with underscores (everyone uses `_mpi_fortran_argv_null’), or all will be compiled without underscores (everyone uses `mpi_fortran_argv_null’).

    (I’ve not yet looked at the ModelE code myself. But perhaps I should!)

    It is very, very nice. Very clean and easy to understand and execute. Especially compared to CESM, which is now finding imaginary syntax errors in the run files… -Kate

    — frank

  6. Hi,

    I’m trying to port the CESM 1.0.3 to a RedHat cluster, but I’ve run into an error that I’m not sure how to resolve.

    pio_msg_callbacks.F90:200.7:

    case(mpi_integer)
    1
    pio_msg_callbacks.F90:207.7:

    case(mpi_real4)
    2
    Error: CASE label at (1) overlaps with CASE label at (2)

    If you’ve run across this error in your work and could offer any advice it would be greatly appreciated.

    Thank you,
    Aaron

    • I haven’t come across that particular error, but if I were you I would take a look at your Macros file. When the error is with mct or pio, it usually means that your environment variables are incorrect. Double check your paths to MPI and NetCDF, and play around with some compiler flags. Good luck, and let us know if you figure it out!

      Kate

      • Thanks! I never found the source of that error, but I downloaded the libopenmpi-dev package, and used the mpif90.openmpi and mpicc.openmpi commands for FC and CC and everything built successfully.
        Aaron

  7. Mon Oct 15 00:41:02 IST 2012 /home/kishore/Desktop/cesm1/scratch/test/run/ccsm.bldlog.121015-004024 ————————————————————————- Building a single executable version of CCSM ————————————————————————- cat: Srcfiles: No such file or directory /home/kishore/Desktop/cesm1/scripts/test/Tools/mkSrcfiles > /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Srcfiles cp -f /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Filepath /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Deppath /home/kishore/Desktop/cesm1/scripts/test/Tools/mkDepends Deppath Srcfiles > /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Depends mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_diag_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_rearr_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_ocnocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2s_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2o_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_avdata_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_hist_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2a_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmice_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_iceocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_snoglc_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmlnd_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_domain_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_rest_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2l_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_frac_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_flux_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_lndlnd_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_iceice_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_glcglc_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_rofrof_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmatm_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_rofocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_snosno_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2g_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2i_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/ccsm_driver.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -o /home/kishore/Desktop/cesm1/scratch/test/run/ccsm.exe ccsm_driver.o map_atmatm_mct.o map_atmice_mct.o map_atmlnd_mct.o map_atmocn_mct.o map_glcglc_mct.o map_iceice_mct.o map_iceocn_mct.o map_lndlnd_mct.o map_ocnocn_mct.o map_rofocn_mct.o map_rofrof_mct.o map_snoglc_mct.o map_snosno_mct.o mrg_x2a_mct.o mrg_x2g_mct.o mrg_x2i_mct.o mrg_x2l_mct.o mrg_x2o_mct.o mrg_x2s_mct.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_rearr_mod.o seq_rest_mod.o -L/home/kishore/Desktop/cesm1/scratch/test/lib -latm -llnd -lice -locn -lglc -L/home/kishore/Desktop/cesm1/scratch/test/lib -lcsm_share -lmct -lmpeu -lpio -L/usr/lib -lnetcdf -L/usr/lib/mpich2/lib -lmpi -lmpi -lz /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_finalizef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1368: undefined reference to `gptlfinalize’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_barrierf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:791: undefined reference to `gptlstart’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_disablef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:714: undefined reference to `gptldisable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_enablef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:678: undefined reference to `gptlenable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_prf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:984: undefined reference to `gptlpr_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1010: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1049: undefined reference to `gptlpr_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:970: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:950: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_perf_setopts’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:336: undefined reference to `gptldisable’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:338: undefined reference to `gptlenable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_initf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1309: undefined reference to `gptlsetutr’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1316: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1320: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1328: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1331: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1334: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o):/home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1337: more undefined references to `gptlsetoption’ follow /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_initf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1344: undefined reference to `gptlinitialize’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1281: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1272: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1275: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1278: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_barrierf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:801: undefined reference to `gptlstop’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_stopf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:642: undefined reference to `gptlstop’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_startf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:614: undefined reference to `gptlstart’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_stampf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:587: undefined reference to `gptlstamp’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mct_mod.o): In function `__shr_mct_mod_MOD_shr_mct_smatreaddnc’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:446: undefined reference to `nf_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:447: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:450: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:451: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:452: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:453: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:454: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:455: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:477: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:479: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:480: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:499: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:501: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:502: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:458: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:459: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:460: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:461: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:462: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:463: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:464: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:465: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:500: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:478: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:594: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:595: undefined reference to `nf_get_vara_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:596: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:598: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:599: undefined reference to `nf_get_vara_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:600: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:602: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:603: undefined reference to `nf_get_vara_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:604: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:682: undefined reference to `nf_close’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mct_mod.o): In function `__shr_mct_mod_MOD_shr_mct_smatreadnc’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:105: undefined reference to `nf_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:112: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:113: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:114: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:115: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:116: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:117: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:140: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:141: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:142: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:154: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:155: undefined reference to `nf_get_var_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:156: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:165: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:166: undefined reference to `nf_get_var_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:167: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:174: undefined reference to `nf_close’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:107: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mem_mod.o): In function `__shr_mem_mod_MOD_shr_mem_getusage’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:93: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mem_mod.o): In function `__shr_mem_mod_MOD_shr_mem_init’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:57: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:60: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:62: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_scam_mod.o): In function `__shr_scam_mod_MOD_shr_scam_getcloselatlon’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:117: undefined reference to `__netcdf_MOD_nf90_inquire’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:132: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:145: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:163: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:174: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:193: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_scam_mod.o): In function `__shr_scam_mod_MOD_shr_scam_checksurface’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:321: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:328: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:332: undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_stream_mod.o): In function `__shr_stream_mod_MOD_shr_stream_readtcoord’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1441: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1443: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1445: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1448: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1450: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1459: undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1461: undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1478: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1480: undefined reference to `__netcdf_MOD_nf90_close’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1463: undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `shr_ncread_handleerr’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1504: undefined reference to `__netcdf_MOD_nf90_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_close’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1464: undefined reference to `__netcdf_MOD_nf90_close’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_open’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1423: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_field4dg’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1165: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1167: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1182: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1185: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1316: undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1318: undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_dimsizename’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:473: undefined reference to `__netcdf_MOD_nf90_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:475: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimsizes’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:383: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:385: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:389: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:395: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimsizeid’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:310: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:312: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:315: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:317: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimnum’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:201: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:203: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_varexists’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:147: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_copy_att’: nf_mod.F90:(.text+0x33c): undefined reference to `__netcdf_MOD_nf90_copy_att’ nf_mod.F90:(.text+0x375): undefined reference to `__netcdf_MOD_nf90_copy_att’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_def_var_md’: nf_mod.F90:(.text+0x51c): undefined reference to `__netcdf_MOD_nf90_def_var_manydims’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_def_dim’: nf_mod.F90:(.text+0x7e7): undefined reference to `__netcdf_MOD_nf90_def_dim’ nf_mod.F90:(.text+0x825): undefined reference to `__netcdf_MOD_nf90_def_dim’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_redef’: nf_mod.F90:(.text+0x954): undefined reference to `__netcdf_MOD_nf90_redef’ nf_mod.F90:(.text+0x973): undefined reference to `__netcdf_MOD_nf90_redef’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_enddef’: nf_mod.F90:(.text+0xa47): undefined reference to `__netcdf_MOD_nf90_enddef’ nf_mod.F90:(.text+0xa7a): undefined reference to `__netcdf_MOD_nf90_enddef’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimlen’: nf_mod.F90:(.text+0xb3e): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ nf_mod.F90:(.text+0xb7e): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimname’: nf_mod.F90:(.text+0xd40): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ nf_mod.F90:(.text+0xd7f): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimid’: nf_mod.F90:(.text+0xf54): undefined reference to `__netcdf_MOD_nf90_inq_dimid’ nf_mod.F90:(.text+0xf8b): undefined reference to `__netcdf_MOD_nf90_inq_dimid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_varnatts_vid’: nf_mod.F90:(.text+0x12bf): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ nf_mod.F90:(.text+0x1363): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_vardimid_vid’: nf_mod.F90:(.text+0x1654): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ nf_mod.F90:(.text+0x171c): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_vartype_vid’: nf_mod.F90:(.text+0x1af0): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o):nf_mod.F90:(.text+0x1b94): more undefined references to `__netcdf_MOD_nf90_inquire_variable’ follow /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_varid_vid’: nf_mod.F90:(.text+0x2387): undefined reference to `__netcdf_MOD_nf90_inq_varid’ nf_mod.F90:(.text+0x23be): undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_attname_vid’: nf_mod.F90:(.text+0x2584): undefined reference to `__netcdf_MOD_nf90_inq_attname’ nf_mod.F90:(.text+0x25c2): undefined reference to `__netcdf_MOD_nf90_inq_attname’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_attlen_vid’: nf_mod.F90:(.text+0x27e0): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ nf_mod.F90:(.text+0x282e): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_att_vid’: nf_mod.F90:(.text+0x2a3a): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ nf_mod.F90:(.text+0x2a87): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inquire’: nf_mod.F90:(.text+0x2d94): undefined reference to `__netcdf_MOD_nf90_inquire’ nf_mod.F90:(.text+0x2de3): undefined reference to `__netcdf_MOD_nf90_inquire’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pio_utils.o): In function `__pio_utils_MOD_check_netcdf’: pio_utils.F90:(.text+0x233): undefined reference to `__netcdf_MOD_nf90_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_double’: pionfatt_mod.F90:(.text+0x11e): undefined reference to `__netcdf_MOD_nf90_get_att_eightbytereal’ pionfatt_mod.F90:(.text+0x252): undefined reference to `__netcdf_MOD_nf90_get_att_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_int’: pionfatt_mod.F90:(.text+0x4c6): undefined reference to `__netcdf_MOD_nf90_get_att_fourbyteint’ pionfatt_mod.F90:(.text+0x5fa): undefined reference to `__netcdf_MOD_nf90_get_att_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_real’: pionfatt_mod.F90:(.text+0x86e): undefined reference to `__netcdf_MOD_nf90_get_att_fourbytereal’ pionfatt_mod.F90:(.text+0x9a2): undefined reference to `__netcdf_MOD_nf90_get_att_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_int’: pionfatt_mod.F90:(.text+0xb6f): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbyteint’ pionfatt_mod.F90:(.text+0xc1c): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_double’: pionfatt_mod.F90:(.text+0xd70): undefined reference to `__netcdf_MOD_nf90_get_att_one_eightbytereal’ pionfatt_mod.F90:(.text+0xe1d): undefined reference to `__netcdf_MOD_nf90_get_att_one_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_real’: pionfatt_mod.F90:(.text+0xf71): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbytereal’ pionfatt_mod.F90:(.text+0x101e): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_text’: pionfatt_mod.F90:(.text+0x11ce): undefined reference to `__netcdf_MOD_nf90_get_att_text’ pionfatt_mod.F90:(.text+0x1289): undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_int’: pionfatt_mod.F90:(.text+0x199f): undefined reference to `__netcdf_MOD_nf90_put_att_fourbyteint’ pionfatt_mod.F90:(.text+0x19f2): undefined reference to `__netcdf_MOD_nf90_put_att_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_double’: pionfatt_mod.F90:(.text+0x1b75): undefined reference to `__netcdf_MOD_nf90_put_att_eightbytereal’ pionfatt_mod.F90:(.text+0x1bc8): undefined reference to `__netcdf_MOD_nf90_put_att_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_real’: pionfatt_mod.F90:(.text+0x1d4b): undefined reference to `__netcdf_MOD_nf90_put_att_fourbytereal’ pionfatt_mod.F90:(.text+0x1d9e): undefined reference to `__netcdf_MOD_nf90_put_att_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_int’: pionfatt_mod.F90:(.text+0x1e6f): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbyteint’ pionfatt_mod.F90:(.text+0x1e9e): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_double’: pionfatt_mod.F90:(.text+0x1f6a): undefined reference to `__netcdf_MOD_nf90_put_att_one_eightbytereal’ pionfatt_mod.F90:(.text+0x1f99): undefined reference to `__netcdf_MOD_nf90_put_att_one_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_real’: pionfatt_mod.F90:(.text+0x2065): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbytereal’ pionfatt_mod.F90:(.text+0x2094): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_text’: pionfatt_mod.F90:(.text+0x216b): undefined reference to `__netcdf_MOD_nf90_put_att_text’ pionfatt_mod.F90:(.text+0x21a1): undefined reference to `__netcdf_MOD_nf90_put_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_int’: pionfput_mod.F90:(.text+0x34da): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ pionfput_mod.F90:(.text+0x377f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_int’: pionfput_mod.F90:(.text+0x4256): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ pionfput_mod.F90:(.text+0x44d0): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_int’: pionfput_mod.F90:(.text+0x4f5b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ pionfput_mod.F90:(.text+0x51b6): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_int’: pionfput_mod.F90:(.text+0x5bf5): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ pionfput_mod.F90:(.text+0x5e31): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_int’: pionfput_mod.F90:(.text+0x681e): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ pionfput_mod.F90:(.text+0x6a3b): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_double’: pionfput_mod.F90:(.text+0x756a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ pionfput_mod.F90:(.text+0x780f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_double’: pionfput_mod.F90:(.text+0x82e6): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ pionfput_mod.F90:(.text+0x8560): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_double’: pionfput_mod.F90:(.text+0x8feb): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ pionfput_mod.F90:(.text+0x9246): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_double’: pionfput_mod.F90:(.text+0x9c85): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ pionfput_mod.F90:(.text+0x9ec1): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_double’: pionfput_mod.F90:(.text+0xa8ae): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ pionfput_mod.F90:(.text+0xaacb): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_real’: pionfput_mod.F90:(.text+0xb5fa): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ pionfput_mod.F90:(.text+0xb89f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_real’: pionfput_mod.F90:(.text+0xc376): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ pionfput_mod.F90:(.text+0xc5f0): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_real’: pionfput_mod.F90:(.text+0xd07b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ pionfput_mod.F90:(.text+0xd2d6): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_real’: pionfput_mod.F90:(.text+0xdd15): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ pionfput_mod.F90:(.text+0xdf51): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_real’: pionfput_mod.F90:(.text+0xe93e): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ pionfput_mod.F90:(.text+0xeb5b): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_text’: pionfput_mod.F90:(.text+0xf6d0): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ pionfput_mod.F90:(.text+0xf981): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_text’: pionfput_mod.F90:(.text+0x1049e): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ pionfput_mod.F90:(.text+0x10724): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_text’: pionfput_mod.F90:(.text+0x111f5): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ pionfput_mod.F90:(.text+0x1145c): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_text’: pionfput_mod.F90:(.text+0x11ee1): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ pionfput_mod.F90:(.text+0x12129): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_text’: pionfput_mod.F90:(.text+0x12b5c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ pionfput_mod.F90:(.text+0x12d85): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_int’: pionfput_mod.F90:(.text+0x14a4d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ pionfput_mod.F90:(.text+0x14b6a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_int’: pionfput_mod.F90:(.text+0x15056): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ pionfput_mod.F90:(.text+0x15148): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_int’: pionfput_mod.F90:(.text+0x155a9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ pionfput_mod.F90:(.text+0x15678): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_int’: pionfput_mod.F90:(.text+0x15a64): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ pionfput_mod.F90:(.text+0x15b10): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_int’: pionfput_mod.F90:(.text+0x15e7c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ pionfput_mod.F90:(.text+0x15f09): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_int’: pionfput_mod.F90:(.text+0x160ca): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ pionfput_mod.F90:(.text+0x16106): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_double’: pionfput_mod.F90:(.text+0x1666d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ pionfput_mod.F90:(.text+0x1678a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_double’: pionfput_mod.F90:(.text+0x16c76): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ pionfput_mod.F90:(.text+0x16d68): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_double’: pionfput_mod.F90:(.text+0x171c9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ pionfput_mod.F90:(.text+0x17298): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_double’: pionfput_mod.F90:(.text+0x17684): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ pionfput_mod.F90:(.text+0x17730): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_double’: pionfput_mod.F90:(.text+0x17a9c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ pionfput_mod.F90:(.text+0x17b29): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_double’: pionfput_mod.F90:(.text+0x17cea): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ pionfput_mod.F90:(.text+0x17d26): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_real’: pionfput_mod.F90:(.text+0x1828d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ pionfput_mod.F90:(.text+0x183aa): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_real’: pionfput_mod.F90:(.text+0x18896): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ pionfput_mod.F90:(.text+0x18988): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_real’: pionfput_mod.F90:(.text+0x18de9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ pionfput_mod.F90:(.text+0x18eb8): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_real’: pionfput_mod.F90:(.text+0x192a4): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ pionfput_mod.F90:(.text+0x19350): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_real’: pionfput_mod.F90:(.text+0x196bc): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ pionfput_mod.F90:(.text+0x19749): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_real’: pionfput_mod.F90:(.text+0x1990a): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ pionfput_mod.F90:(.text+0x19946): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_text’: pionfput_mod.F90:(.text+0x19f02): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ pionfput_mod.F90:(.text+0x1a02b): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_text’: pionfput_mod.F90:(.text+0x1a570): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ pionfput_mod.F90:(.text+0x1a66e): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_text’: pionfput_mod.F90:(.text+0x1ab3b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ pionfput_mod.F90:(.text+0x1ac1a): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_text’: pionfput_mod.F90:(.text+0x1b06f): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ pionfput_mod.F90:(.text+0x1b12f): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_text’: pionfput_mod.F90:(.text+0x1b507): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ pionfput_mod.F90:(.text+0x1b5a8): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_text’: pionfput_mod.F90:(.text+0x1b88a): undefined reference to `nf_put_vars_text_’ pionfput_mod.F90:(.text+0x1b987): undefined reference to `nf_put_vars_text_’ pionfput_mod.F90:(.text+0x1baff): undefined reference to `nf_put_vars_text_’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_int’: pionfput_mod.F90:(.text+0x1c22f): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ pionfput_mod.F90:(.text+0x1c2a7): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_double’: pionfput_mod.F90:(.text+0x1c801): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ pionfput_mod.F90:(.text+0x1c879): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_real’: pionfput_mod.F90:(.text+0x1cdd3): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ pionfput_mod.F90:(.text+0x1ce4b): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_text’: pionfput_mod.F90:(.text+0x1d3d8): undefined reference to `__netcdf_MOD_nf90_put_var_text’ pionfput_mod.F90:(.text+0x1d46f): undefined reference to `__netcdf_MOD_nf90_put_var_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_int’: pionfget_mod.F90:(.text+0x1959): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbyteint’ pionfget_mod.F90:(.text+0x1a4f): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_int’: pionfget_mod.F90:(.text+0x1e3b): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbyteint’ pionfget_mod.F90:(.text+0x1efd): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_int’: pionfget_mod.F90:(.text+0x2231): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbyteint’ pionfget_mod.F90:(.text+0x22d3): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_int’: pionfget_mod.F90:(.text+0x2591): undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ pionfget_mod.F90:(.text+0x2618): undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_1d_int’: pionfget_mod.F90:(.text+0x2881): undefined reference to `__netcdf_MOD_nf90_get_var_1d_fourbyteint’ pionfget_mod.F90:(.text+0x28f2): undefined reference to `__netcdf_MOD_nf90_get_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_0d_int’: pionfget_mod.F90:(.text+0x2a87): undefined reference to `__netcdf_MOD_nf90_get_var_fourbyteint’ pionfget_mod.F90:(.text+0x2abc): undefined reference to `__netcdf_MOD_nf90_get_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_double’: pionfget_mod.F90:(.text+0x2e4b): undefined reference to `__netcdf_MOD_nf90_get_var_5d_eightbytereal’ pionfget_mod.F90:(.text+0x2f41): undefined reference to `__netcdf_MOD_nf90_get_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_double’: pionfget_mod.F90:(.text+0x332d): undefined reference to `__netcdf_MOD_nf90_get_var_4d_eightbytereal’ pionfget_mod.F90:(.text+0x33ef): undefined reference to `__netcdf_MOD_nf90_get_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_double’: pionfget_mod.F90:(.text+0x3723): undefined reference to `__netcdf_MOD_nf90_get_var_3d_eightbytereal’ pionfget_mod.F90:(.text+0x37c5): undefined reference to `__netcdf_MOD_nf90_get_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_double’: pionfget_mod.F90:(.text+0x3a83): undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ pionfget_mod.F90:(.text+0x3b0a): undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_1d_double’: pionfget_mod.F90:(.text+0x3d73): undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ pionfget_mod.F90:(.text+0x3de4): undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_0d_double’: pionfget_mod.F90:(.text+0x3f79): undefined reference to `__netcdf_MOD_nf90_get_var_eightbytereal’ pionfget_mod.F90:(.text+0x3fae): undefined reference to `__netcdf_MOD_nf90_get_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_real’: pionfget_mod.F90:(.text+0x433d): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbytereal’ pionfget_mod.F90:(.text+0x4433): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_real’: pionfget_mod.F90:(.text+0x481f): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbytereal’ pionfget_mod.F90:(.text+0x48e1): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_real’: pionfget_mod.F90:(.text+0x4c15): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbytereal’ pionfget_mod.F90:(.text+0x4cb7): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_real’: pionfget_mod.F90:(.t
  8. Mon Oct 15 00:41:02 IST 2012 /home/kishore/Desktop/cesm1/scratch/test/run/ccsm.bldlog.121015-004024 ————————————————————————- Building a single executable version of CCSM ————————————————————————- cat: Srcfiles: No such file or directory /home/kishore/Desktop/cesm1/scripts/test/Tools/mkSrcfiles > /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Srcfiles cp -f /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Filepath /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Deppath /home/kishore/Desktop/cesm1/scripts/test/Tools/mkDepends Deppath Srcfiles > /home/kishore/Desktop/cesm1/scratch/test/ccsm/obj/Depends mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_diag_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_rearr_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_ocnocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2s_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2o_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_avdata_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_hist_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2a_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmice_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_iceocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_snoglc_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmlnd_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_domain_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_rest_mod.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2l_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_frac_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/seq_flux_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_lndlnd_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_iceice_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_glcglc_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_rofrof_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_atmatm_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_rofocn_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/map_snosno_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2g_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/mrg_x2i_mct.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -c -I. -I/usr/include -lnetcdf -I/usr/include -I/usr/lib/openmpi/include -I. -I/home/kishore/Desktop/cesm1/scripts/test/SourceMods/src.drv -I/home/kishore/Desktop/cesm1/models/drv/driver -I/home/kishore/Desktop/cesm1/scratch/test/lib/include -DMCT_INTERFACE -DHAVE_MPI -DGLC_NEC_10 -DLINUX -DSEQ_ -DFORTRANUNDERSCORE -DNO_R16 -DNO_SHR_VMATH -g -fno-underscoring -fno-range-check -O2 -FR /home/kishore/Desktop/cesm1/models/drv/driver/ccsm_driver.F90 f951: warning: command line option ‘-F R’ is valid for C/C++/ObjC/ObjC++ but not for Fortran [enabled by default] mpif90.openmpi -o /home/kishore/Desktop/cesm1/scratch/test/run/ccsm.exe ccsm_driver.o map_atmatm_mct.o map_atmice_mct.o map_atmlnd_mct.o map_atmocn_mct.o map_glcglc_mct.o map_iceice_mct.o map_iceocn_mct.o map_lndlnd_mct.o map_ocnocn_mct.o map_rofocn_mct.o map_rofrof_mct.o map_snoglc_mct.o map_snosno_mct.o mrg_x2a_mct.o mrg_x2g_mct.o mrg_x2i_mct.o mrg_x2l_mct.o mrg_x2o_mct.o mrg_x2s_mct.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_rearr_mod.o seq_rest_mod.o -L/home/kishore/Desktop/cesm1/scratch/test/lib -latm -llnd -lice -locn -lglc -L/home/kishore/Desktop/cesm1/scratch/test/lib -lcsm_share -lmct -lmpeu -lpio -L/usr/lib -lnetcdf -L/usr/lib/mpich2/lib -lmpi -lmpi -lz /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_finalizef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1368: undefined reference to `gptlfinalize’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_barrierf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:791: undefined reference to `gptlstart’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_disablef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:714: undefined reference to `gptldisable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_enablef’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:678: undefined reference to `gptlenable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_prf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:984: undefined reference to `gptlpr_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1010: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1049: undefined reference to `gptlpr_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:970: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:950: undefined reference to `gptlpr_summary_file’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_perf_setopts’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:336: undefined reference to `gptldisable’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:338: undefined reference to `gptlenable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_initf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1309: undefined reference to `gptlsetutr’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1316: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1320: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1328: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1331: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1334: undefined reference to `gptlsetoption’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o):/home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1337: more undefined references to `gptlsetoption’ follow /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_initf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1344: undefined reference to `gptlinitialize’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1281: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1272: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1275: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:1278: undefined reference to `gptlevent_name_to_code’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_barrierf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:801: undefined reference to `gptlstop’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_stopf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:642: undefined reference to `gptlstop’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_startf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:614: undefined reference to `gptlstart’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(perf_mod.o): In function `__perf_mod_MOD_t_stampf’: /home/kishore/Desktop/cesm1/models/utils/timing/perf_mod.F90:587: undefined reference to `gptlstamp’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mct_mod.o): In function `__shr_mct_mod_MOD_shr_mct_smatreaddnc’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:446: undefined reference to `nf_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:447: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:450: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:451: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:452: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:453: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:454: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:455: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:477: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:479: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:480: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:499: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:501: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:502: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:458: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:459: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:460: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:461: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:462: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:463: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:464: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:465: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:500: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:478: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:594: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:595: undefined reference to `nf_get_vara_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:596: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:598: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:599: undefined reference to `nf_get_vara_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:600: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:602: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:603: undefined reference to `nf_get_vara_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:604: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:682: undefined reference to `nf_close’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mct_mod.o): In function `__shr_mct_mod_MOD_shr_mct_smatreadnc’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:105: undefined reference to `nf_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:112: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:113: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:114: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:115: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:116: undefined reference to `nf_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:117: undefined reference to `nf_inq_dimlen’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:140: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:141: undefined reference to `nf_get_var_double’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:142: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:154: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:155: undefined reference to `nf_get_var_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:156: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:165: undefined reference to `nf_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:166: undefined reference to `nf_get_var_int’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:167: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:174: undefined reference to `nf_close’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mct_mod.F90:107: undefined reference to `nf_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mem_mod.o): In function `__shr_mem_mod_MOD_shr_mem_getusage’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:93: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_mem_mod.o): In function `__shr_mem_mod_MOD_shr_mem_init’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:57: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:60: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_mem_mod.F90:62: undefined reference to `gptlget_memusage’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_scam_mod.o): In function `__shr_scam_mod_MOD_shr_scam_getcloselatlon’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:117: undefined reference to `__netcdf_MOD_nf90_inquire’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:132: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:145: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:163: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:174: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:193: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_scam_mod.o): In function `__shr_scam_mod_MOD_shr_scam_checksurface’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:321: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:328: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_scam_mod.F90:332: undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_stream_mod.o): In function `__shr_stream_mod_MOD_shr_stream_readtcoord’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1441: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1443: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1445: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1448: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1450: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1459: undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1461: undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1478: undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1480: undefined reference to `__netcdf_MOD_nf90_close’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_stream_mod.F90:1463: undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `shr_ncread_handleerr’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1504: undefined reference to `__netcdf_MOD_nf90_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_close’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1464: undefined reference to `__netcdf_MOD_nf90_close’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_open’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1423: undefined reference to `__netcdf_MOD_nf90_open’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_field4dg’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1165: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1167: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1182: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1185: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1316: undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:1318: undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_dimsizename’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:473: undefined reference to `__netcdf_MOD_nf90_inq_dimid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:475: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimsizes’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:383: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:385: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:389: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:395: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimsizeid’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:310: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:312: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:315: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:317: undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_vardimnum’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:201: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:203: undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libcsm_share.a(shr_ncread_mod.o): In function `__shr_ncread_mod_MOD_shr_ncread_varexists’: /home/kishore/Desktop/cesm1/models/csm_share/shr/shr_ncread_mod.F90:147: undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_copy_att’: nf_mod.F90:(.text+0x33c): undefined reference to `__netcdf_MOD_nf90_copy_att’ nf_mod.F90:(.text+0x375): undefined reference to `__netcdf_MOD_nf90_copy_att’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_def_var_md’: nf_mod.F90:(.text+0x51c): undefined reference to `__netcdf_MOD_nf90_def_var_manydims’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_def_dim’: nf_mod.F90:(.text+0x7e7): undefined reference to `__netcdf_MOD_nf90_def_dim’ nf_mod.F90:(.text+0x825): undefined reference to `__netcdf_MOD_nf90_def_dim’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_redef’: nf_mod.F90:(.text+0x954): undefined reference to `__netcdf_MOD_nf90_redef’ nf_mod.F90:(.text+0x973): undefined reference to `__netcdf_MOD_nf90_redef’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_enddef’: nf_mod.F90:(.text+0xa47): undefined reference to `__netcdf_MOD_nf90_enddef’ nf_mod.F90:(.text+0xa7a): undefined reference to `__netcdf_MOD_nf90_enddef’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimlen’: nf_mod.F90:(.text+0xb3e): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ nf_mod.F90:(.text+0xb7e): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimname’: nf_mod.F90:(.text+0xd40): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ nf_mod.F90:(.text+0xd7f): undefined reference to `__netcdf_MOD_nf90_inquire_dimension’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inq_dimid’: nf_mod.F90:(.text+0xf54): undefined reference to `__netcdf_MOD_nf90_inq_dimid’ nf_mod.F90:(.text+0xf8b): undefined reference to `__netcdf_MOD_nf90_inq_dimid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_varnatts_vid’: nf_mod.F90:(.text+0x12bf): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ nf_mod.F90:(.text+0x1363): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_vardimid_vid’: nf_mod.F90:(.text+0x1654): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ nf_mod.F90:(.text+0x171c): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_vartype_vid’: nf_mod.F90:(.text+0x1af0): undefined reference to `__netcdf_MOD_nf90_inquire_variable’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o):nf_mod.F90:(.text+0x1b94): more undefined references to `__netcdf_MOD_nf90_inquire_variable’ follow /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_varid_vid’: nf_mod.F90:(.text+0x2387): undefined reference to `__netcdf_MOD_nf90_inq_varid’ nf_mod.F90:(.text+0x23be): undefined reference to `__netcdf_MOD_nf90_inq_varid’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_attname_vid’: nf_mod.F90:(.text+0x2584): undefined reference to `__netcdf_MOD_nf90_inq_attname’ nf_mod.F90:(.text+0x25c2): undefined reference to `__netcdf_MOD_nf90_inq_attname’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_attlen_vid’: nf_mod.F90:(.text+0x27e0): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ nf_mod.F90:(.text+0x282e): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_inq_att_vid’: nf_mod.F90:(.text+0x2a3a): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ nf_mod.F90:(.text+0x2a87): undefined reference to `__netcdf_MOD_nf90_inquire_attribute’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(nf_mod.o): In function `__nf_mod_MOD_pio_inquire’: nf_mod.F90:(.text+0x2d94): undefined reference to `__netcdf_MOD_nf90_inquire’ nf_mod.F90:(.text+0x2de3): undefined reference to `__netcdf_MOD_nf90_inquire’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pio_utils.o): In function `__pio_utils_MOD_check_netcdf’: pio_utils.F90:(.text+0x233): undefined reference to `__netcdf_MOD_nf90_strerror’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_double’: pionfatt_mod.F90:(.text+0x11e): undefined reference to `__netcdf_MOD_nf90_get_att_eightbytereal’ pionfatt_mod.F90:(.text+0x252): undefined reference to `__netcdf_MOD_nf90_get_att_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_int’: pionfatt_mod.F90:(.text+0x4c6): undefined reference to `__netcdf_MOD_nf90_get_att_fourbyteint’ pionfatt_mod.F90:(.text+0x5fa): undefined reference to `__netcdf_MOD_nf90_get_att_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_1d_real’: pionfatt_mod.F90:(.text+0x86e): undefined reference to `__netcdf_MOD_nf90_get_att_fourbytereal’ pionfatt_mod.F90:(.text+0x9a2): undefined reference to `__netcdf_MOD_nf90_get_att_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_int’: pionfatt_mod.F90:(.text+0xb6f): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbyteint’ pionfatt_mod.F90:(.text+0xc1c): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_double’: pionfatt_mod.F90:(.text+0xd70): undefined reference to `__netcdf_MOD_nf90_get_att_one_eightbytereal’ pionfatt_mod.F90:(.text+0xe1d): undefined reference to `__netcdf_MOD_nf90_get_att_one_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_real’: pionfatt_mod.F90:(.text+0xf71): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbytereal’ pionfatt_mod.F90:(.text+0x101e): undefined reference to `__netcdf_MOD_nf90_get_att_one_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_get_att_text’: pionfatt_mod.F90:(.text+0x11ce): undefined reference to `__netcdf_MOD_nf90_get_att_text’ pionfatt_mod.F90:(.text+0x1289): undefined reference to `__netcdf_MOD_nf90_get_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_int’: pionfatt_mod.F90:(.text+0x199f): undefined reference to `__netcdf_MOD_nf90_put_att_fourbyteint’ pionfatt_mod.F90:(.text+0x19f2): undefined reference to `__netcdf_MOD_nf90_put_att_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_double’: pionfatt_mod.F90:(.text+0x1b75): undefined reference to `__netcdf_MOD_nf90_put_att_eightbytereal’ pionfatt_mod.F90:(.text+0x1bc8): undefined reference to `__netcdf_MOD_nf90_put_att_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_1d_real’: pionfatt_mod.F90:(.text+0x1d4b): undefined reference to `__netcdf_MOD_nf90_put_att_fourbytereal’ pionfatt_mod.F90:(.text+0x1d9e): undefined reference to `__netcdf_MOD_nf90_put_att_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_int’: pionfatt_mod.F90:(.text+0x1e6f): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbyteint’ pionfatt_mod.F90:(.text+0x1e9e): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_double’: pionfatt_mod.F90:(.text+0x1f6a): undefined reference to `__netcdf_MOD_nf90_put_att_one_eightbytereal’ pionfatt_mod.F90:(.text+0x1f99): undefined reference to `__netcdf_MOD_nf90_put_att_one_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_real’: pionfatt_mod.F90:(.text+0x2065): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbytereal’ pionfatt_mod.F90:(.text+0x2094): undefined reference to `__netcdf_MOD_nf90_put_att_one_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfatt_mod.o): In function `__pionfatt_mod_MOD_put_att_text’: pionfatt_mod.F90:(.text+0x216b): undefined reference to `__netcdf_MOD_nf90_put_att_text’ pionfatt_mod.F90:(.text+0x21a1): undefined reference to `__netcdf_MOD_nf90_put_att_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_int’: pionfput_mod.F90:(.text+0x34da): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ pionfput_mod.F90:(.text+0x377f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_int’: pionfput_mod.F90:(.text+0x4256): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ pionfput_mod.F90:(.text+0x44d0): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_int’: pionfput_mod.F90:(.text+0x4f5b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ pionfput_mod.F90:(.text+0x51b6): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_int’: pionfput_mod.F90:(.text+0x5bf5): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ pionfput_mod.F90:(.text+0x5e31): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_int’: pionfput_mod.F90:(.text+0x681e): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ pionfput_mod.F90:(.text+0x6a3b): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_double’: pionfput_mod.F90:(.text+0x756a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ pionfput_mod.F90:(.text+0x780f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_double’: pionfput_mod.F90:(.text+0x82e6): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ pionfput_mod.F90:(.text+0x8560): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_double’: pionfput_mod.F90:(.text+0x8feb): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ pionfput_mod.F90:(.text+0x9246): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_double’: pionfput_mod.F90:(.text+0x9c85): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ pionfput_mod.F90:(.text+0x9ec1): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_double’: pionfput_mod.F90:(.text+0xa8ae): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ pionfput_mod.F90:(.text+0xaacb): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_real’: pionfput_mod.F90:(.text+0xb5fa): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ pionfput_mod.F90:(.text+0xb89f): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_real’: pionfput_mod.F90:(.text+0xc376): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ pionfput_mod.F90:(.text+0xc5f0): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_real’: pionfput_mod.F90:(.text+0xd07b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ pionfput_mod.F90:(.text+0xd2d6): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_real’: pionfput_mod.F90:(.text+0xdd15): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ pionfput_mod.F90:(.text+0xdf51): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_real’: pionfput_mod.F90:(.text+0xe93e): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ pionfput_mod.F90:(.text+0xeb5b): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_5d_text’: pionfput_mod.F90:(.text+0xf6d0): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ pionfput_mod.F90:(.text+0xf981): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_4d_text’: pionfput_mod.F90:(.text+0x1049e): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ pionfput_mod.F90:(.text+0x10724): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_3d_text’: pionfput_mod.F90:(.text+0x111f5): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ pionfput_mod.F90:(.text+0x1145c): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_2d_text’: pionfput_mod.F90:(.text+0x11ee1): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ pionfput_mod.F90:(.text+0x12129): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_vara_1d_text’: pionfput_mod.F90:(.text+0x12b5c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ pionfput_mod.F90:(.text+0x12d85): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_int’: pionfput_mod.F90:(.text+0x14a4d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ pionfput_mod.F90:(.text+0x14b6a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_int’: pionfput_mod.F90:(.text+0x15056): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ pionfput_mod.F90:(.text+0x15148): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_int’: pionfput_mod.F90:(.text+0x155a9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ pionfput_mod.F90:(.text+0x15678): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_int’: pionfput_mod.F90:(.text+0x15a64): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ pionfput_mod.F90:(.text+0x15b10): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_int’: pionfput_mod.F90:(.text+0x15e7c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ pionfput_mod.F90:(.text+0x15f09): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_int’: pionfput_mod.F90:(.text+0x160ca): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ pionfput_mod.F90:(.text+0x16106): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_double’: pionfput_mod.F90:(.text+0x1666d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ pionfput_mod.F90:(.text+0x1678a): undefined reference to `__netcdf_MOD_nf90_put_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_double’: pionfput_mod.F90:(.text+0x16c76): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ pionfput_mod.F90:(.text+0x16d68): undefined reference to `__netcdf_MOD_nf90_put_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_double’: pionfput_mod.F90:(.text+0x171c9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ pionfput_mod.F90:(.text+0x17298): undefined reference to `__netcdf_MOD_nf90_put_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_double’: pionfput_mod.F90:(.text+0x17684): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ pionfput_mod.F90:(.text+0x17730): undefined reference to `__netcdf_MOD_nf90_put_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_double’: pionfput_mod.F90:(.text+0x17a9c): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ pionfput_mod.F90:(.text+0x17b29): undefined reference to `__netcdf_MOD_nf90_put_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_double’: pionfput_mod.F90:(.text+0x17cea): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ pionfput_mod.F90:(.text+0x17d26): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_real’: pionfput_mod.F90:(.text+0x1828d): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ pionfput_mod.F90:(.text+0x183aa): undefined reference to `__netcdf_MOD_nf90_put_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_real’: pionfput_mod.F90:(.text+0x18896): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ pionfput_mod.F90:(.text+0x18988): undefined reference to `__netcdf_MOD_nf90_put_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_real’: pionfput_mod.F90:(.text+0x18de9): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ pionfput_mod.F90:(.text+0x18eb8): undefined reference to `__netcdf_MOD_nf90_put_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_real’: pionfput_mod.F90:(.text+0x192a4): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ pionfput_mod.F90:(.text+0x19350): undefined reference to `__netcdf_MOD_nf90_put_var_2d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_real’: pionfput_mod.F90:(.text+0x196bc): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ pionfput_mod.F90:(.text+0x19749): undefined reference to `__netcdf_MOD_nf90_put_var_1d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_real’: pionfput_mod.F90:(.text+0x1990a): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ pionfput_mod.F90:(.text+0x19946): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_5d_text’: pionfput_mod.F90:(.text+0x19f02): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ pionfput_mod.F90:(.text+0x1a02b): undefined reference to `__netcdf_MOD_nf90_put_var_5d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_4d_text’: pionfput_mod.F90:(.text+0x1a570): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ pionfput_mod.F90:(.text+0x1a66e): undefined reference to `__netcdf_MOD_nf90_put_var_4d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_3d_text’: pionfput_mod.F90:(.text+0x1ab3b): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ pionfput_mod.F90:(.text+0x1ac1a): undefined reference to `__netcdf_MOD_nf90_put_var_3d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_2d_text’: pionfput_mod.F90:(.text+0x1b06f): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ pionfput_mod.F90:(.text+0x1b12f): undefined reference to `__netcdf_MOD_nf90_put_var_2d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_1d_text’: pionfput_mod.F90:(.text+0x1b507): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ pionfput_mod.F90:(.text+0x1b5a8): undefined reference to `__netcdf_MOD_nf90_put_var_1d_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var_0d_text’: pionfput_mod.F90:(.text+0x1b88a): undefined reference to `nf_put_vars_text_’ pionfput_mod.F90:(.text+0x1b987): undefined reference to `nf_put_vars_text_’ pionfput_mod.F90:(.text+0x1baff): undefined reference to `nf_put_vars_text_’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_int’: pionfput_mod.F90:(.text+0x1c22f): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ pionfput_mod.F90:(.text+0x1c2a7): undefined reference to `__netcdf_MOD_nf90_put_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_double’: pionfput_mod.F90:(.text+0x1c801): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ pionfput_mod.F90:(.text+0x1c879): undefined reference to `__netcdf_MOD_nf90_put_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_real’: pionfput_mod.F90:(.text+0x1cdd3): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ pionfput_mod.F90:(.text+0x1ce4b): undefined reference to `__netcdf_MOD_nf90_put_var_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfput_mod.o): In function `__pionfput_mod_MOD_put_var1_text’: pionfput_mod.F90:(.text+0x1d3d8): undefined reference to `__netcdf_MOD_nf90_put_var_text’ pionfput_mod.F90:(.text+0x1d46f): undefined reference to `__netcdf_MOD_nf90_put_var_text’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_int’: pionfget_mod.F90:(.text+0x1959): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbyteint’ pionfget_mod.F90:(.text+0x1a4f): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_int’: pionfget_mod.F90:(.text+0x1e3b): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbyteint’ pionfget_mod.F90:(.text+0x1efd): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_int’: pionfget_mod.F90:(.text+0x2231): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbyteint’ pionfget_mod.F90:(.text+0x22d3): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_int’: pionfget_mod.F90:(.text+0x2591): undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ pionfget_mod.F90:(.text+0x2618): undefined reference to `__netcdf_MOD_nf90_get_var_2d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_1d_int’: pionfget_mod.F90:(.text+0x2881): undefined reference to `__netcdf_MOD_nf90_get_var_1d_fourbyteint’ pionfget_mod.F90:(.text+0x28f2): undefined reference to `__netcdf_MOD_nf90_get_var_1d_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_0d_int’: pionfget_mod.F90:(.text+0x2a87): undefined reference to `__netcdf_MOD_nf90_get_var_fourbyteint’ pionfget_mod.F90:(.text+0x2abc): undefined reference to `__netcdf_MOD_nf90_get_var_fourbyteint’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_double’: pionfget_mod.F90:(.text+0x2e4b): undefined reference to `__netcdf_MOD_nf90_get_var_5d_eightbytereal’ pionfget_mod.F90:(.text+0x2f41): undefined reference to `__netcdf_MOD_nf90_get_var_5d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_double’: pionfget_mod.F90:(.text+0x332d): undefined reference to `__netcdf_MOD_nf90_get_var_4d_eightbytereal’ pionfget_mod.F90:(.text+0x33ef): undefined reference to `__netcdf_MOD_nf90_get_var_4d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_double’: pionfget_mod.F90:(.text+0x3723): undefined reference to `__netcdf_MOD_nf90_get_var_3d_eightbytereal’ pionfget_mod.F90:(.text+0x37c5): undefined reference to `__netcdf_MOD_nf90_get_var_3d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_double’: pionfget_mod.F90:(.text+0x3a83): undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ pionfget_mod.F90:(.text+0x3b0a): undefined reference to `__netcdf_MOD_nf90_get_var_2d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_1d_double’: pionfget_mod.F90:(.text+0x3d73): undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ pionfget_mod.F90:(.text+0x3de4): undefined reference to `__netcdf_MOD_nf90_get_var_1d_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_0d_double’: pionfget_mod.F90:(.text+0x3f79): undefined reference to `__netcdf_MOD_nf90_get_var_eightbytereal’ pionfget_mod.F90:(.text+0x3fae): undefined reference to `__netcdf_MOD_nf90_get_var_eightbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_5d_real’: pionfget_mod.F90:(.text+0x433d): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbytereal’ pionfget_mod.F90:(.text+0x4433): undefined reference to `__netcdf_MOD_nf90_get_var_5d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_4d_real’: pionfget_mod.F90:(.text+0x481f): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbytereal’ pionfget_mod.F90:(.text+0x48e1): undefined reference to `__netcdf_MOD_nf90_get_var_4d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_3d_real’: pionfget_mod.F90:(.text+0x4c15): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbytereal’ pionfget_mod.F90:(.text+0x4cb7): undefined reference to `__netcdf_MOD_nf90_get_var_3d_fourbytereal’ /home/kishore/Desktop/cesm1/scratch/test/lib/libpio.a(pionfget_mod.o): In function `__pionfget_mod_MOD_get_var_2d_real’: pionfget_mod.F90:(.t

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.