********>Bugfix 34: Author: Roberto Gomperts Date: 03/13/2007 Programs: sander Description: The netcdf routines require some special flags when compiled on a SGI Altix machine. Fix: Apply the following patches to src/configure ------------------------------------------------------------------------------ *** configure Tue Mar 13 16:07:01 2007 --- configure Tue Mar 13 16:07:43 2007 *************** *** 355,360 **** --- 355,361 ---- fppflags="$fppflags " freeformat_flag='-FR' fflags=" -w95 -ftz " + static_flag='-i-static' if [ $verbose = "yes" ]; then verbosity='-vec_report3 -opt_report -opt_report_level max -opt_report_phase all -V -v' fi *************** *** 1237,1245 **** echo " ------ Configuring the netCDF libraries: --------" echo "" cd netcdf/src;env FC="$fc" FFLAGS="$fncflags" F90FLAGS="$f90ncflags" \ CXX="" CC="$cc" CFLAGS="$cflags" CPPFLAGS="-DNDEBUG" \ ! ./configure;cd ../.. fppflags="$fppflags -DBINTRAJ" cppflags="$cppflags -DBINTRAJ -I../netcdf/include" else --- 1238,1248 ---- echo " ------ Configuring the netCDF libraries: --------" echo "" + netcdfflag= + if [ $arch == 'sgi_altix' ] ; then netcdfflag="--enable-64bit"; fi cd netcdf/src;env FC="$fc" FFLAGS="$fncflags" F90FLAGS="$f90ncflags" \ CXX="" CC="$cc" CFLAGS="$cflags" CPPFLAGS="-DNDEBUG" \ ! ./configure $netcdfflag;cd ../.. fppflags="$fppflags -DBINTRAJ" cppflags="$cppflags -DBINTRAJ -I../netcdf/include" else ------------------------------------------------------------------------------ Temporary workarounds: none