Displaying 20 results from an estimated 10000 matches similar to: "trouble with tcltk (was RE: trouble compiling R on Irix )"
2002 Apr 18
1
trouble with tcltk (was RE: trouble compiling R on Irix)
Hi,
Thanks to Profs. Ripley and Tierney for their tips, I compiled zlib from
source and gotten further.
Here's where I get stuck, when it tries to compile the tcltk package:
ld32: FATAL 12 : Expecting n32 objects: /usr/local/lib/libtcl8.3.so is
n64.
Now I'm confused. Sounds like 32-bit vs. 64-bit problem. What can I do at
this point?
(This is on Irix.)
Regards,
Andy
2003 Jun 27
2
nls question
I'm running into problems trying to use the nls function to fit the some
data. I'm invoking nls using
nls(s~k/(a+r)^b, start=list(k=1, a=13, b=0.59))
but I get errors indicating that the step has been reduced below the
minimum step size or an inifinity is generated in numericDeriv. I've
tried to use a variety of starting values for a, b, k but get similar
errors.
Is there
2002 Jan 16
1
reading dates
Is there any simple way of reading dates from a file? I'm currently
reading dates in as characters and then converting them to POSIXlt objects.
However I would like to know if there is a way of having read.table or scan
convert a field to a date-time class.
--
------------------------------------------------------------------
Suchandra S. Thapa
s-thapa-11 at alumni.uchicago.edu
2002 Apr 18
1
trouble compiling R on Irix
Dear R-help,
I'm trying to compile R-1.4.1 on Irix, and run into the following error when
making R.bin:
The linker (ld32) complained that "gzeof", "gzgetc", "gztell", and "gzseek"
are unresolved symbols in connection.o. Are these supposed to be in libz.a?
My suspicion is that maybe the libz.a on this system is outdated. Any
hints?
TIA!
Andy
2002 Sep 27
1
R1.5.1,tcltk,IRIX
the built version of R (built using shared libraries) doesn't appear to
find tcl/tk:
Please help.
Details:
SGI configuration:
7.3.1.3m compilers from SGI
uname -aR = IRIX64 mendel 6.5 6.5.16f 04101930 IP35
We built R on an SGI system using the following configure script:
# explicitly choose vendor compilers for R rather than GNU
# optimise output to support highest level of performance
2004 Mar 17
5
build on Irix failed reg-tests
Dear R-devel,
Has anyone seen this problem? We tried building R-1.8.1 (and R-1.9.0 alpha
2004-03-17) on an Irix 6.5 box using
./configure CC="cc -64" F77="f77 -64" --with-tcltk=no --enable-R-shlib
make check failed because NA + 0 gave NaN instead of NA. I've tried both
32- and 64-bit build, with and without --enable-R-shlib. The same symptom
occur in all cases.
Any
1999 Feb 13
0
Quirks in telnet
I noticed a wierd quirk in telnet on redhat 5.2 that
seems to allow others to verify whether an account name exists
on a linux machine or not. If you telnet into a machine and
use an username that does not exist, you get four attempts
before the telnet session is closed. If the username exists
then you have three attempts before the session is closed.
I know that there are other ways to find
2003 Aug 20
0
libvorbis configure script fails on Irix
Hello,
I'm trying to compile libogg, libvorbis, libao, and vorbis-tools on an
SGI Octane running Irix6.5.22. libogg configures and compiles without
a problem. I installed it in usr/local/lib.
When I moved on to libvorbis trouble began. The configure script made
the following complaint:
checking for Ogg... 12269:./conftest: rld: Error: unresolvable symbol
in ./conftest:
2002 Apr 11
3
Help installing from Rpm
All,
I'm trying to install R-base on RedHat Linux 7.2.
Rpm complains that libreadline.4.1.so is needed; the problem is that I have
libreadline4.2.so.
What can I do to get around this?
-Scott
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2002 Jan 22
4
R-gnome
(Thanks for answers on my naif dual processor
question!).
I'm going to compile R-1.4.0 for linux (Suse 7.3)
and hesitate at including the gnome interface.
Do people that have tried the gnome
interface recommend it? How is R started
with this interface? If I build with the
--with-gnome option, will still have
the option of actually not using the interface
if I don't find it useful?
2007 Mar 23
2
openssh 4.6p1 bug / IRIX
hello,
little problem compiling openssh 4.6p1 on irix using mipspro 7.4.x.
c99 -o sshd sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o
sshpty.o sshlogin.o servconf.o serverloop.o auth.o auth1.o auth2.o
auth-options.o session.o auth-chall.o auth2-chall.o groupaccess.o
auth-skey.o auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o auth2-none.o
auth2-passwd.o auth2-pubkey.o
2002 Aug 14
1
How to mount WindowsNT disks onto Solaris workstation
I am writing this email from Wildlife Institute of India, an autonomous
institution of Ministry of Environment & Forests, Government of India.
Our institute is involved in the research, management and training for
the conservation of wildlife in India.
We have a GIS and Remote Sensing laboratory having four Sun workstations
on Solaris 7 and two Pentium 4 workstations on Windows NT 4.0 are
2003 Jun 27
1
R-help Digest, Vol 4, Issue 27 ( -Reply)
Hi,
I am out of town and will get back to you on the 13th of July.
Leo
>>> "r-help at stat.math.ethz.ch" 06/27/03 00:32 >>>
Send R-help mailing list submissions to
r-help at stat.math.ethz.ch
To subscribe or unsubscribe via the World Wide Web, visit
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
or, via email, send a message with subject or body
2003 Apr 29
1
polynomial fitting
I'm trying to find a way to fit a polynomial of degree n in x and y to
a set of x, y, and z data that I have and obtain the coefficients for
the terms of the fitted polynomial. However, when I try to use the
surf.ls function I'm getting odd results.
> x <- seq(0, 10, length=50)
> y <- x
> f <- function (x, y) {x^2 + y}
> library(spatial)
> test <-
2003 Sep 05
1
Installing R on Red Hat Linux, Tcl/Tk
Hi,
I've been trying to install R on Red Hat Linux 9 for some
potential users of my R/TclTk application. I tried using the
rpm for R 1.7.1 for Red Hat Linux 9. It told me that I needed:
libtcl8.3.so
so I looked for a binary release of Tcl 8.3.x on
http://www.tcl.tk/software/tcltk/8.3.html
but found that the link to the Tcl 8.3.x binaries pointed to
ActiveTcl 8.4.x . I couldn't see
2003 Sep 23
2
Typical R installation problem
Dear Peter,
I don't know if this is the proper way to ask for help installing R, but if
not, I presume you can pass this on to the appropriate place.
I'm trying to install the latest binary on Redhat 9, and keep getting the same
error message no matter what I try.
[root at localhost mhu]# rpm -i R-1.7.1-1.i386.rpm
warning: R-1.7.1-1.i386.rpm: V3 DSA signature: NOKEY, key ID
2005 Apr 15
0
IRIX, firewalls, configure
I have built R-2.0.1 on AIX64 V 6.5 on a machine that is intentionally
isolated from remotely connecting to the internet -- and we'd like to
keep it isolated!
I have not seen anything in the FAQ's or Install Manual about shutting
off or 'configuring out' the internet connectivity. ditto for
'./configure --help'
For some reason
> capabilities()
jpeg png
2001 Apr 03
0
openssh-2.5.2p2 - SGI - compiles but dumps core
SGI IRIX 6.5.9
gcc 2.95.2
gnu make
./configure
make
make install
/usr/include/string.h:67: warning: conflicting types for built-in function
`memcpy'
/usr/include/string.h:74: warning: conflicting types for built-in function
`memcmp'
/usr/include/string.h:95: warning: conflicting types for built-in function
`memset'
/usr/include/string.h:97: warning: conflicting types for built-in
2011 Jun 08
0
Compiling Samba with FAM support on Irix
Some weeks ago I asked for help because I got "relocation truncated to
fit: R_MIPS_GPREL16 against `.srdata'" error messages when trying to
compile Samba 3.5.8 including FAM support on SGI Irix 6.5.28 using gcc
3.4.6 .
A hint was found on this page:
<http://sourceware.org/ml/ecos-discuss/2000-04/msg00214.html>, which
explains the cause of the message and suggests to try
2009 Feb 25
2
[LLVMdev] linkage errors while buliding tblgen
Hi,
Trying to build llvm on irix mips with gcc 3.4.6 and receiving the following types of errors
ld32: ERROR 33 : Unresolved text symbol "std::basic_string<char, std::char_traits<char>, std:
:allocator<char> >::basic_string(std::basic_string<char, std::char_traits<char>, std::allocator
<char> > const&)" -- 1st referenced by