search for: tryf

Displaying 5 results from an estimated 5 matches for "tryf".

Did you mean: try
2001 Dec 12
1
RE: [R] Rcmd SHLIB problem
Yes, changing line 67 of SHLIB as Uwe suggested worked: C:\TEMP>Rcmd SHLIB tryf.f make[1]: `libR.a' is up to date. rm -f -f tryf.a ar cr tryf.a *.o ranlib tryf.a ------- Building tryf.dll from tryf.a -------- echo LIBRARY tryf > tryf.def echo EXPORTS >> tryf.def nm tryf.a > Defs sed -n '/^........ [BCDRT] _/s/^........ [BCDRT] _/ /p' Defs >> tryf....
2001 Dec 12
0
RE: [R] Rcmd SHLIB problem
...ber 12, 2001 8:54 AM > To: Liaw, Andy > Cc: 'Uwe Ligges'; R-devel > Subject: Re: [Rd] RE: [R] Rcmd SHLIB problem > > > On Wed, 12 Dec 2001, Liaw, Andy wrote: > > > Yes, changing line 67 of SHLIB as Uwe suggested worked: > > > > C:\TEMP>Rcmd SHLIB tryf.f > > make[1]: `libR.a' is up to date. > > rm -f -f tryf.a > > ar cr tryf.a *.o > > ranlib tryf.a > > ------- Building tryf.dll from tryf.a -------- > > echo LIBRARY tryf > tryf.def > > echo EXPORTS >> tryf.def > > nm tryf.a > Defs &gt...
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help, I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4: C:\TEMP>Rcmd SHLIB tryf.o make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. C:\TEMP>Rcmd SHLIB tryf.f make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. I compiled R from source,...
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help, I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4: C:\TEMP>Rcmd SHLIB tryf.o make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. C:\TEMP>Rcmd SHLIB tryf.f make[1]: `libR.a' is up to date. make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop. I compiled R from source,...
2010 Nov 25
1
[LLVMdev] calling c-function with a vector
Hi all, I have the following problem: I want to call a function from llvm (tryf in the following) which takes a vector as an argument. The function tryf is a c-function and should output the whole vector. But I only get 0.0. Looks like a problem with how the arguments are passed. I havn't found anything in the docs about how vectors are passed. Any help would be appreciate...