search for: foo20

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

Did you mean: foo2
2010 Jan 29
2
sieve script
...onversion. My script: --------------- if header :contains "from" ["user at domain1.tld", "user2 at domain2.tld", "user3 at domain3.tld"] { redirect "foo1 at bar.tld"; redirect "foo2 at bar.tld"; .... redirect "foo20 at bar.tld"; } else { keep; } --------------- Converter script: --------------- require ["fileinto","regex","envelope","vacation"]; if envelope :comparator "i;octet" :contains "From.*(user at domain1.tld|user2 at domain2.tld|user...
2004 May 31
1
Question about building library and BLAS
...versions. So in addition to these subroutines, there are other Lapack and Blas subroutines involved. There is no problem to compile and run these files using g77, such as the following to create car: g77 -mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 car isamax.f, sgefa.f sgesl.f foo1.f ... foo20.f -llapack -lblas By doing this, the procedure does not use subroutines isamax.f, sgefa.f sgesl.f in BLAS, as expected. In fact, there are problems to use these subroutines in BLAS, for some reason. Now what I want is to build an R library. The Makefile is the following: LIBNAME=car PKG_LIBS =...