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.
Eirh-Yu Hsie, >Date: Thu, 7 Dec 1995 10:59:28 -0700 >From: address@hidden (Eirh-Yu Hsie) >Organization: NOAA >Subject: Re: 951206: netCDF 2.4 >Keywords: 199512061703.AA12237 In the above message you wrote: > I suppose they are in jackets.o: > > meiyu:[496]% ar -t ./libnetcdf.a > array.o > attr.o > cdf.o > dim.o > file.o > iarray.o > error.o > globdef.o > putget.o > putgetg.o > sharray.o > string.o > var.o > xdrposix.o > jackets.o They *should* be. You can verify their existence via the nm(1) and grep(1) utilities. For example, the following verifies the existance of the FORTRAN interface functions on our SunOS 5 system: $ nm -r /upc/netcdf/lib/libnetcdf.a | grep FUNC | grep GLOB | grep jackets [20] | 624| 24|FUNC |GLOB |0 |2 |jackets.o:ncpopt_ [21] | 664| 24|FUNC |GLOB |0 |2 |jackets.o:ncgopt_ [23] | 704| 140|FUNC |GLOB |0 |2 |jackets.o:nccre_ [25] | 864| 140|FUNC |GLOB |0 |2 |jackets.o:ncopn_ [27] | 1024| 80|FUNC |GLOB |0 |2 |jackets.o:ncddef_ [29] | 1120| 76|FUNC |GLOB |0 |2 |jackets.o:ncdid_ [31] | 1216| 152|FUNC |GLOB |0 |2 |jackets.o:ncvdef_ [33] | 1384| 76|FUNC |GLOB |0 |2 |jackets.o:ncvid_ [35] | 1480| 52|FUNC |GLOB |0 |2 |jackets.o:nctlen_ [37] | 1552| 52|FUNC |GLOB |0 |2 |jackets.o:ncclos_ [39] | 1624| 52|FUNC |GLOB |0 |2 |jackets.o:ncredf_ [41] | 1696| 52|FUNC |GLOB |0 |2 |jackets.o:ncendf_ [43] | 1768| 104|FUNC |GLOB |0 |2 |jackets.o:ncinq_ [45] | 1888| 52|FUNC |GLOB |0 |2 |jackets.o:ncsnc_ [47] | 1960| 52|FUNC |GLOB |0 |2 |jackets.o:ncabor_ [49] | 2032| 140|FUNC |GLOB |0 |2 |jackets.o:ncdinq_ [51] | 2192| 80|FUNC |GLOB |0 |2 |jackets.o:ncdren_ [53] | 2288| 220|FUNC |GLOB |0 |2 |jackets.o:ncvinq_ [55] | 2528| 212|FUNC |GLOB |0 |2 |jackets.o:ncvpt1_ [57] | 2760| 212|FUNC |GLOB |0 |2 |jackets.o:ncvp1c_ [58] | 2992| 232|FUNC |GLOB |0 |2 |jackets.o:ncvpt_ [60] | 3240| 288|FUNC |GLOB |0 |2 |jackets.o:ncvptc_ [61] | 3544| 360|FUNC |GLOB |0 |2 |jackets.o:ncvptg_ [63] | 3920| 360|FUNC |GLOB |0 |2 |jackets.o:ncvpgc_ [64] | 4296| 204|FUNC |GLOB |0 |2 |jackets.o:ncvgt1_ [66] | 4520| 212|FUNC |GLOB |0 |2 |jackets.o:ncvg1c_ [67] | 4752| 248|FUNC |GLOB |0 |2 |jackets.o:ncvgt_ [69] | 5016| 352|FUNC |GLOB |0 |2 |jackets.o:ncvgtc_ [70] | 5384| 372|FUNC |GLOB |0 |2 |jackets.o:ncvgtg_ [72] | 5776| 372|FUNC |GLOB |0 |2 |jackets.o:ncvggc_ [73] | 6168| 80|FUNC |GLOB |0 |2 |jackets.o:ncvren_ [75] | 6264| 96|FUNC |GLOB |0 |2 |jackets.o:ncapt_ [77] | 6376| 180|FUNC |GLOB |0 |2 |jackets.o:ncaptc_ [80] | 6576| 88|FUNC |GLOB |0 |2 |jackets.o:ncainq_ [82] | 6680| 144|FUNC |GLOB |0 |2 |jackets.o:ncagt_ [84] | 6840| 224|FUNC |GLOB |0 |2 |jackets.o:ncagtc_ [85] | 7080| 92|FUNC |GLOB |0 |2 |jackets.o:ncacpy_ [87] | 7192| 136|FUNC |GLOB |0 |2 |jackets.o:ncanam_ [89] | 7344| 100|FUNC |GLOB |0 |2 |jackets.o:ncaren_ [91] | 7464| 80|FUNC |GLOB |0 |2 |jackets.o:ncadel_ [93] | 7560| 56|FUNC |GLOB |0 |2 |jackets.o:ncsfil_ What does your system show? -------- Steve Emmerson <address@hidden>