Displaying 20 results from an estimated 500 matches similar to: "package config file for windows"
2006 Apr 11
1
[LLVMdev] make dist?
Hi,
> I hope this brief tutorial has helped. Feel free to ask questions.
> Further details can be found in Makefile.rules.
Although I don't think it uses automake, chapter 13 of
http://sources.redhat.com/autobook/autobook/autobook_toc.html may still
be useful since it gives a similar overview.
Cheers,
Ralph.
2008 Aug 12
3
aligned memory allocation in C
Hi,
I'm currently R porting SF Mersenne Twister algorithm of Matsumoto and
Saito. To get the full power of their code, I want to use their
fonction fill_array32 which need aligned memory. That is to say I need
to use the C function memalign on windows, posix_memalign on linux and
classic malloc on Mac OS. In 'writing R extenstion', they recommand to
use R_alloc function to
2008 Aug 12
3
aligned memory allocation in C
Hi,
I'm currently R porting SF Mersenne Twister algorithm of Matsumoto and
Saito. To get the full power of their code, I want to use their
fonction fill_array32 which need aligned memory. That is to say I need
to use the C function memalign on windows, posix_memalign on linux and
classic malloc on Mac OS. In 'writing R extenstion', they recommand to
use R_alloc function to
2008 Jul 18
1
system time - windows specific problem
Hi all,
I'm currently implementing quasi random generation (torus) on R
(package randtoolbox available on CRAN). Even if it is not a great
idea, I decided to use the machine time to initiate the seed. So when
the seed is not specified by the user, the pkg uses the time machine
time.
Hence the following R code should produce different uniform variates :
> for(i in
2017 May 09
2
registering Fortran routines in R packages
Dear list,
I?m trying to register Fortran routines in randtoolbox (in srt/init.c file), see https://r-forge.r-project.org/scm/viewvc.php/pkg/randtoolbox/src/init.c?view=markup&root=rmetrics.
Reading https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Registering-native-routines and looking at what is done in stats package, I first thought that the following code will do the job:
2017 May 10
1
registering Fortran routines in R packages
Have you tried using tools:::package_native_routine_registration_skeleton()? If you don't like its output, you can easily edit its results and still avoid most pitfalls.
Cheers, Jari Oksanen
________________________________________
From: R-devel <r-devel-bounces at r-project.org> on behalf of Berend Hasselman <bhh at xs4all.nl>
Sent: 10 May 2017 09:48
To: Christophe Dutang
Cc:
2009 Dec 20
0
new version of randtoolbox
Dear useRs,
We are happy to announce a new version of the randtoolbox* package
(version 1.09) on CRAN. The package is dedicated to Random Number
Generation and in a less exhaustive way to RNG tests. The package is
source-controlled at r-forge as part of the Rmetrics project http://r-forge.r-project.org/projects/rmetrics/
.
We invite you to take a look at the NEWS section to know the
2009 Dec 20
0
new version of randtoolbox
Dear useRs,
We are happy to announce a new version of the randtoolbox* package
(version 1.09) on CRAN. The package is dedicated to Random Number
Generation and in a less exhaustive way to RNG tests. The package is
source-controlled at r-forge as part of the Rmetrics project http://r-forge.r-project.org/projects/rmetrics/
.
We invite you to take a look at the NEWS section to know the
2018 Mar 13
2
64-bit integer type warning on windows
Dear list,
During the last two months, I spent a lot of time trying to remove the following warnings of my package randtoolbox:
congruRand.c:180:3: warning: ISO C does not support the 'I64' ms_scanf length modifier [-Wformat=]
sscanf(params[0], "%" PRIu64 "\n", &inp_mod);
Please see
2004 May 11
0
Re: [Xapian-commits] Changes in xapian/xapian-bindings/
On Tue, May 11, 2004 at 08:11:23PM +0100, Richard Boulton wrote:
> Also, change tests for non-zeroness of interpreter paths to tests
> for existence and executability of interpreter paths: this is
> relevant if configure is passed an interpreter path by the user
> which doesn't exist (as my debian packaging makefile just did).
A problem is that "test -x"
2017 May 09
0
registering Fortran routines in R packages
> On 9 May 2017, at 13:44, Christophe Dutang <dutangc at gmail.com> wrote:
>
> Dear list,
>
> I?m trying to register Fortran routines in randtoolbox (in srt/init.c file), see https://r-forge.r-project.org/scm/viewvc.php/pkg/randtoolbox/src/init.c?view=markup&root=rmetrics.
>
> Reading
2020 Feb 04
3
WERR_DNS_ERROR_NAME_DOES_NOT_EXIST when samba_dnsupdate tries to add to _msdcs
Thanks for your response, Rowland.
As far as newer versions of Debian/Samba, I actually started with Ubuntu 18.04, which had
Samba 4.7.
But I ran into another problem trying to use it, so I backed off to an older version that I was
hoping was more stable.
See: https://bugzilla.samba.org/show_bug.cgi?id=13298
Meanwhile, I did find out more about what was causing this error by looking at the
2009 Oct 10
2
[R-SIG-Mac] rnorm.halton
Hi all,
I need to transform classic 32bit Fortran code to 64bit Fortran code,
see the discussion [R-SIG-Mac] rnorm.halton. But I'm clearly a
beginner in Fortran...
Does someone already do this for his package?
From here, http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi?coll=linux&db=bks&fname=/SGI_Developer/Porting_Guide/ch03.html
, I identify the following changes
2017 May 10
3
registering Fortran routines in R packages
Thanks for your email.
I try to change the name in lowercase but it conflicts with a C implementation also named halton. So I rename the C function halton2() and sobol2() while the Fortran function are HALTON() and SOBOL() (I also try lower case in the Fortran code). Unfortunately, it does not help since I get
init.c:97:25: error: use of undeclared identifier 'halton_'; did you mean
2006 Apr 11
0
[LLVMdev] make dist?
Hi Tanya,
The first thing you need to understand is that there are multiple make
targets to support this feature. I'll briefly describe each here so you
have an overview and then delve into the details later.
* distdir - builds the distribution directory from which the
distribution will be packaged
* dist - builds each of the distribution tarballs (tar.gz,
2006 Apr 11
3
[LLVMdev] make dist?
Reid,
Could you explain in detail what make dist does? :) I'd like to see how it
can be integrated into the release process.
Thanks,
Tanya
2009 Jul 30
3
user supplied random number generators
?Random.user says (in svn trunk)
Optionally,
functions \code{user_unif_nseed} and \code{user_unif_seedloc} can be
supplied which are called with no arguments and should return pointers
to the number of seeds and to an integer array of seeds. Calls to
\code{GetRNGstate} and \code{PutRNGstate} will then copy this array to
and from \code{.Random.seed}.
And it offers as an example
void
2009 Dec 13
3
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
* Bergm (1.0)
Alberto Caimo
http://crantastic.org/packages/Bergm
Functions implementing Bayesian estimation for exponential random
graph models via exchange algorithm
Updated packages
----------------
lmtest (0.9-26), logcondens (1.3.5), MTSKNN (0.0-4), pmml (1.2.21),
r2lUniv (0.9.4), rattle (2.5.11), rgdal (0.6-23),
2009 Jun 25
0
ADS auth for squid
Hi,
I've already tried this in a squid list, but no response so maybe my
problem is related to my squid conf.
I'm setting up a squid proxy to auth against our 2003 ADS
I have ntlm working so it authenticates both transparently to the user
and using domain\username login.
My Problem is getting squid to auth with just the username not requiring
the domain\ part.
The docs say I need
2020 Feb 05
0
WERR_DNS_ERROR_NAME_DOES_NOT_EXIST when samba_dnsupdate tries to add to _msdcs
> > Should I jump on the bleeding edge with Samba 4.11 and
> Bind9 (version?)
Yes! Its not bleeding edge anymore ;-)..
4.11.0 thats bleeding edge, .6 not..
> > (I don't see any mention of the bugzilla bug getting addressed.)
> >
> > What versions of these would you recommend?
> > (fyi I am also planning to add dhcpd to this server to
> eventually phase