search for: startring

Displaying 20 results from an estimated 26 matches for "startring".

Did you mean: starting
2005 Sep 12
1
ptr_R_EditFile, R_WriteConsole, and R_ShowMessage
Hi! I have an application embedding R. For that of course, it is great, that since R 2.1.0 the pointers in Rinterface.h allow me to override some callbacks, easily. However, after implementing/overriding a couple of those, I'm a bit confused about when exactly they get called. So, here are a few specific questions: ptr_R_EditFile: I can find exactly one point in the R-sources where
2003 Oct 18
1
libR.dylib on OS X
If one installs the CLI and RAqua versions, by saying both "make install" and "make install-aqua", then packages that use libR.dylib get their symbols from /Applications/StartR.app/RAqua.app/Contents/Frameworks/libR.dylib and not from /usr/local/lib/R/bin/libR.dylib. That's unfortunate, because the first is likely to change, and the second is not. For instance, what
2004 Feb 17
2
Macintosh (PR#6593)
Full_Name: David Steinsaltz Version: 1.8.1 OS: Mac 10.3.2 Submission from: (NULL) (216.175.92.195) A new installation of R on a new computer running OS 10.3.2 simply wouldn't start. When I tried to start it from the command line, I got the message dyld: /Applications/StartR.app/RAqua.app/Contents/MacOS/RAqua can't open library: /usr/local/lib/libreadline.4.3.dylib (No such file or
2003 Dec 05
2
R OS X panther? (PR#5529)
I have just used the RAqua.pkg to install R, and it doesn't work! I have Mac OS X 10.3, and the old version of R works OK, but the .pkg thing installed, and then when I double-click on the "StartR" application nothing happens. Nothing at all, no little icon bobbing up and down in the dock, just nothing. What have I done wrong? I didn't have to install the other packages
2003 Dec 11
2
Failed installation on Mac OSX 10.3 (PR#5697)
I've installed R 1.8.1 on OSX 10.3 (Panther) using the RAqua.pkg and all indications were that the installation was successful. However, after double clicking the R icon in the Applications folder, nothing appears to happen. The following message appears on the console: Mac OS X Version 10.3 (Build 7B85) 2003-12-11 08:45:31 -0500 prefs written dyld:
2003 Dec 11
2
Failed installation on Mac OSX 10.3 (PR#5697)
I've installed R 1.8.1 on OSX 10.3 (Panther) using the RAqua.pkg and all indications were that the installation was successful. However, after double clicking the R icon in the Applications folder, nothing appears to happen. The following message appears on the console: Mac OS X Version 10.3 (Build 7B85) 2003-12-11 08:45:31 -0500 prefs written dyld:
2004 Mar 30
2
RAqua and gcc
Hi, I've recently purchased PowerBookG4 (panther) and installed RAqua 1.8.1. I also installed gcc version 3.3 through Xcode tools. But, for some reason, I'm having a hard time getting gcc work with R. For example, I get the following error while installing Hmisc package. I would appreciate any suggestion to fix this problem. Thanks Kosuke * Installing *source* package
2003 Nov 05
0
R 1.8 and MacOS X 10.3
It would seem that R 1.8 doesn't like the version of libiconv that Panther has installed. Can we compile this for Aqua ourselves or will there be a binary for we who upgrade sooner rather than later? [ludwig:~] gall% R dyld: mkdir version mismatch for library: /usr/local/lib/libiconv.2.dylib (compatibility version of user: 5.0.0 greater than library's version: 4.0.0)
2003 Dec 19
1
won't install properly on Mac 10.3.2
R version 1.8.1, Mac OS X 10.3.2 I have tried searching for this problem and its fix, but to no avail. -Everything seems to download and unpack fine. I double click on StartR, however, and it just winks and fails. Any thoughts? Thanks in advance, Hank Dr. Martin Henry H. Stevens, Assistant Professor 338 Pearson Hall Botany Department Miami University Oxford, OH 45056 Office: (513) 529-4206
2004 Nov 18
1
R will not start - missing library? (PR#7377)
Full_Name: Adam Hausknecht Version: 2.0.1 OS: Mac OS 10.3.6 Submission from: (NULL) (129.44.182.8) The following message was reported in the console: "dyld: /Applications/StartR.app/RAqua.app/Contents/MacOS/RAqua can't open library: /usr/local/lib/libreadline.4.3.dylib (No such file or directory, errno = 2)" 1. I have tried reinstalling R 2.0.1 several times but this does not
2006 Jun 16
1
R in ConTeXt
In case there are users of the TeX macro package ConTeXt on this list, they may be interested to know that it is now possible to include R code in a ConTeXt document and have the code evaluated while compiling. The inverse of Sweave, as it were. The advantage is that there is then only one file to keep track of (.tex vs .rnw and .tex), while a drawback is speed, since each code snippet is
2004 Nov 15
2
Problems installing packages on MacOS with R 2.00
Dear all, I have a problem installing a package required by Hmisc on MacOS 10.3.5 with R 2.00. g77 -fno-common -g -O2 -c avas.f -o avas.o g77 -fno-common -g -O2 -c rlsmo.f -o rlsmo.o gcc -bundle -flat_namespace -undefined suppress -L/usr/local/lib -o acepack.so ace.o avas.o rlsmo.o -L/usr/local/lib -L/usr/local/lib/gcc/powerpc-apple-darwin6.8/3.4.2
2003 Aug 13
4
RAqua
Small things, mostly. 1. Buildproblem. Well-known and annoying. Build fails if debugging is on (which is the default) because Debugging.h breaks devQuartz.c compiles. If debugging is switched off on the command line or in the environment, then devQuartz.c builds, but aquaconsole.c does not compile, because it needs Debugging.h. I do not want to edit Apple system files, and not files in the R
2013 Sep 02
0
[LLVMdev] Error on running ToyVM
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::Thread*); mainStartPtr = (vmkitThreadfptr)(&mainStart);
2013 Sep 05
0
[LLVMdev] Error on running ToyVM (included in vmkit)
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::Thread*); mainStartPtr = (vmkitThreadfptr)(&mainStart);
2015 Mar 23
0
Question about hangup - Asterisk v11.15.0
...x 2.5 installation, we thought that problem could came from Elastix so we set our own dialplan for incoming calls: same = n,Set(__phonesToRing=SIP/118&SIP/119&SIP/122&SIP/123&SIP/124&SIP/125&SIP/126&SIP/127&SIP/128&SIP/129&SIP/130&SIP/132) same = n(startRing),Answer() same = n,Dial(${phonesToRing},,it) ;no voicemail or forward => ring indefenitely same = n,Hangup Incoming call give for instance in logs: [2015-03-23 11:07:20] VERBOSE[1342][C-00000e85] app_dial.c: -- SIP/126-000043d8 is ringing [2015-03-23 11:07:21] VER...
2003 Dec 11
0
Failed R installation under Mac OSX 10.3
Dear R list, I've installed R 1.8.1 on OSX 10.3 (Panther) using the RAqua.pkg and all indications were that the installation was successful. However, after double clicking the R icon in the Applications folder, nothing appears to happen. The following message appears on the console: Mac OS X Version 10.3 (Build 7B85) 2003-12-11 08:45:31 -0500 prefs written dyld:
2004 Mar 19
0
osx/fink: cannot do "R INSTALL" (library mixup)
Hello friends. I've just switched from linux to osx, and I'm liking it, except now that I'm getting down to brass tacks, and needing to install some R packages, I'm at a roadblock. I'm hoping someone can help. My R is installed from a .dmg, and resides as follows: $ which R /usr/local/bin/R The problem is that I cannot build packages. For example, see the below (which
2006 May 24
1
Problem with Statistics::R Save plots
[This email is either empty or too large to be displayed at this time]
2003 Nov 30
2
R as OS X Framework
After the recent discussion about future direction of the Mac OS X port, I was toying with the idea to make R a proper Mac OS X framework. There are several advantages: OS X locates frameworks automatically, therefore any program wishing to link against R has only to specify "-framework R" at link time. Furthermore versioning is supported, i.e. if a program is linked against R 1.7.1