NetCDF: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 15: Line 15:
Compile the package:
Compile the package:


  cd src &&
  CFLAGS="-fPIC" ./configure --prefix=/usr &&
./configure --prefix=/usr &&
  make
  make


Line 29: Line 28:
Compile the package:
Compile the package:


cd src &&
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
  FC="gfortran ${BUILD32}" \
  CFLAGS="-fPIC" FC="gfortran ${BUILD32}" \
  ./configure --prefix=/usr &&
  ./configure --prefix=/usr &&
  make
  make
Line 43: Line 41:
Compile the package:
Compile the package:


cd src &&
  sed -i "s:/lib:&32:" macros.make.in &&
  sed -i "s:/lib:&32:" macros.make.in &&
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
  FC="gfortran ${BUILDN32}" \
  CFLAGS="-fPIC" FC="gfortran ${BUILDN32}" \
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
  make
  make
Line 58: Line 55:
Compile the package:
Compile the package:


cd src &&
  sed -i "s:/lib:&64:" macros.make.in &&
  sed -i "s:/lib:&64:" macros.make.in &&
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
  FC="gfortran ${BUILD64}" \
  CFLAGS="-fPIC" FC="gfortran ${BUILD64}" \
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
  make
  make
Line 82: Line 78:
|None
|None
|}
|}
[[Category:Science_Engineering]]

Latest revision as of 09:40, 18 October 2009

Download Source: ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.0.1.tar.gz

Introduction to NetCDF

NetCDF is a format developed at Unidata that was inspired by the CDF format from NASA. NetCDF stands for "Network Common Data Form" and is a self-describing data format, commonly used in scientific and engineering applications.

Project Homepage: http://www.unidata.ucar.edu/software/netcdf/

Dependencies

Non-Multilib

Compile the package:

CFLAGS="-fPIC" ./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
CFLAGS="-fPIC" FC="gfortran ${BUILD32}" \
./configure --prefix=/usr &&
make

Install the package:

make install

N32

Compile the package:

sed -i "s:/lib:&32:" macros.make.in &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
CFLAGS="-fPIC" FC="gfortran ${BUILDN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install

64Bit

Compile the package:

sed -i "s:/lib:&64:" macros.make.in &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
CFLAGS="-fPIC" FC="gfortran ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install

Contents

Installed Programs: ncgen, ncdump
Installed libraries: libnetcdf.a, libnetcdf_c++.a
Installed Directories: None
Retrieved from "?title=NetCDF&oldid=19587"