Displaying 5 results from an estimated 5 matches for "xdr_int".
Did you mean:
xdr_in
2001 Jul 06
4
How to build R-1.3.0 under HP-UX 11.00
...t.o summary.o unique.o util.o
version.o vfonts.o xxxpr.o ../unix/libunix.a ../appl/libappl.a
../nmath/libnmath.a -L/opt/f2c/lib/ -lm -ldld -L/usr/local/li
b -ltermcap -lm
/usr/bin/ld: Unsatisfied symbols:
xdr_double (code)
xdr_string (code)
xdrstdio_create (code)
xdr_bytes (code)
xdr_int (code)
i_len (code)
d_sign (code)
collect2: ld returned 1 exit status
*** Error exit code 1
Do you know what to do? I have set FLIBS = -L/opt/f2c/lib -ln; previously
FLIBS = /opt/f2c/lib -ln and it is not good.
Best regards
Kris
PS. Sorry my english.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2001 Jul 06
4
How to build R-1.3.0 under HP-UX 11.00
...t.o summary.o unique.o util.o
version.o vfonts.o xxxpr.o ../unix/libunix.a ../appl/libappl.a
../nmath/libnmath.a -L/opt/f2c/lib/ -lm -ldld -L/usr/local/li
b -ltermcap -lm
/usr/bin/ld: Unsatisfied symbols:
xdr_double (code)
xdr_string (code)
xdrstdio_create (code)
xdr_bytes (code)
xdr_int (code)
i_len (code)
d_sign (code)
collect2: ld returned 1 exit status
*** Error exit code 1
Do you know what to do? I have set FLIBS = -L/opt/f2c/lib -ln; previously
FLIBS = /opt/f2c/lib -ln and it is not good.
Best regards
Kris
PS. Sorry my english.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2010 Jun 01
0
Compiling Samba 3.0.37 --with-afs (Steve Linehan)
...nclude/rpc/xdr.h:292: error: previous declaration of ?xdr_long? was
here
/usr/include/rx/xdr_prototypes.h:45: error: conflicting types for
?xdr_u_long?
/usr/include/rpc/xdr.h:293: error: previous declaration of ?xdr_u_long? was
here
/usr/include/rx/xdr_prototypes.h:46: error: conflicting types for ?xdr_int?
/usr/include/rpc/xdr.h:290: error: previous declaration of ?xdr_int? was
here
/usr/include/rx/xdr_prototypes.h:47: error: conflicting types for
?xdr_u_int?
/usr/include/rpc/xdr.h:291: error: previous declaration of ?xdr_u_int? was
here
/usr/include/rx/xdr_prototypes.h:48: error: conflicting types...
2001 Jul 09
0
ODP: Re: How to build R-1.3.0 under HP-UX 11.00
...vfonts.o xxxpr.o ../unix/libunix.a ../appl/libappl.a
> ../nmath/libnmath.a -L/opt/f2c/lib/ -lm -ldld -L/usr/local/li
> b -ltermcap -lm
> /usr/bin/ld: Unsatisfied symbols:
> xdr_double (code)
> xdr_string (code)
> xdrstdio_create (code)
> xdr_bytes (code)
> xdr_int (code)
> i_len (code)
> d_sign (code)
> collect2: ld returned 1 exit status
> *** Error exit code 1
>
> Do you know what to do? I have set FLIBS = -L/opt/f2c/lib -ln; previously
> FLIBS = /opt/f2c/lib -ln and it is not good.
>
> Best regards
> Kris
>
> PS...
2009 Dec 16
2
What is the fastest way to see what are in an RData file?
Currently, I load the RData file then ls() and str(). But loading the file
takes too long if the file is big. Most of the time, I only interested what
the variables are in the the file and the attributes of the variables (like
if it is a data.frame, matrix, what are the colnames/rownames, etc.)
I'm wondering if there is any facility in R to help me avoid loading the
whole file.