[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

netcfd 3.4 in linux

This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.


  • Subject: netcfd 3.4 in linux
  • Date: Sat, 29 May 2004 17:59:23 -0500

To make it work in our system:
Linux ajax11 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 i686 i386 GNU/Linux

CPPFLAGS='-Df2cFortran -DNDEBUG'
CC=/usr/bin/gcc
CFLAGS=-O
FC=/usr/bin/g77
FFLAGS=-O
CXX=/usr/bin/g++

we had problem in the C++ compilation, and did the following:
ncvalues.cpp : we replace the 2 occurrences of the statement

   long save=os.flags();

with

   ostream::fmtflags save=os.flags();

(From Anne Fouilloux suggestions to NEC-SX6 with SUPER-UX)