search for: foo_res

Displaying 4 results from an estimated 4 matches for "foo_res".

Did you mean: foo_reg
2008 Mar 31
1
Compile dll in Windows XP
...quot; I receive the following message in my Command prompt: making foo.d from foo.c make: [foo.d] Error 255 (ignored) cat: foo.d: No such file or directory make: [makeMakedeps] Error 1 (ignored) windres --preprocessor = "gcc-sjlj -E -xc -DRC_INVOKED" -I C:/Progra~1/R/R-26~1.2/ include -i foo_res.rc -o foo_res.o c:\MinGW\bin\windres.exe: unknown format type 'C:/PROGRA~1/R/R-26~1.2/include' c:\MinGW\bin\windres.exe: supported formats: rc res coff make: ***[foo_res.o] Error 1 Could someone please help me with what's going wrong? Thank you in advance. *-*-*-*-*-*-*-*-*-*-*-*-*-*...
2008 Dec 10
1
Linking a library with init(argc,argv) function
Hi, I would like to embed the LibMesh library in R. I have already linked C++ code and build libraries as it is explained in the R-extension manual with trivial examples : dyn.load(paste("/home/default/LibFooR",.Platform$dynlib.ext,sep="")) I am facing a difficulty with loading a library depending on a library (libMesh) which needs an initialization function
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
2009 Mar 24
1
[PATCH] "Include" option for ssh configs
Hello, Attached is a patch to add support for an "include" file in ssh configs. It is written against openssh-5.2p1. ## ~/.ssh/config Include ~/.ssh/config.contrib ## end - Leading ~/ expands to $HOME according to getpwuid_r?. - Leading ~username expands to $HOME for username according to getpwnam_r. - Fallbacks to /home/$USER are implemented for when struct passwd.pw_dir is NULL?