search for: foosrc

Displaying 2 results from an estimated 2 matches for "foosrc".

Did you mean: fosrc
2008 Aug 04
1
R init file and source()
...my problem with the following simplified contrast implemented in the bash shell (with R 2.7.1). 1. Works fine: allin at myrtle:~/Rfoo$ cat fooProfile1 # nothing here allin at myrtle:~/Rfoo$ cat doit.1 export RPROFILE="fooProfile1" R --no-save --no-init-file --no-restore-data --slave <fooSrc allin at myrtle:~/Rfoo$ cat fooSrc library(graphics) postscript("myfile.ps") allin at myrtle:~/Rfoo$ sh doit.1 (silently produces a well-formed but empty myfile.ps) 2. Doesn't work: allin at myrtle:~/Rfoo$ cat fooProfile2 source("fooSrc", verbose=TRUE, echo=TRUE) allin a...
2009 Oct 29
2
Makevars, cc files in multiple directories
Hello, In the src folder of my R package I have a.cc b.cc f/g/x.cc my Makevars.in has all: $(SHLIB) upon installing only, a.o and b.o is build and the final dll is comprised of a.o and b.o How can I instruct $(SHLIB) to pick up its source files from all subdirectories (or maybe a subset, though here it will be all) in src ? Much thanks Saptarshi