Displaying 4 results from an estimated 4 matches for "lle_x_drand48".
2004 Oct 27
0
[LLVMdev] Re: Patch for missing rand48 on win32
Morten Ofstad wrote:
>> Hi,
>>
>> There's no HAVE_RAND48 symbol provided by autoconf. You'll have to
>> add the appropriate check to autoconf/configure.ac before we can take
>> this patch.
I installed autoconf with cygwin now and I think I've managed to do this
right now -- there are some strange problems with running the
AutoRegen.sh script, so I
2004 Oct 26
2
[LLVMdev] Re: Patch for missing rand48 on win32
> Hi,
>
> There's no HAVE_RAND48 symbol provided by autoconf. You'll have to add
> the appropriate check to autoconf/configure.ac before we can take this
> patch.
Sorry I forgot to mention I didn't make any changes to the configure
script. The problem is that I can't test these things since I'm not on a
Unix platform, and I'm not even using the
2004 Oct 25
2
[LLVMdev] Visual C patches - forgot to attach to last mail...
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: diff.txt
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041025/d290c6e0/attachment.txt>
2004 Oct 25
0
[LLVMdev] Visual C patches - forgot to attach to last mail...
...erpreter/ExternalFunctions.cpp 1 Sep 2004
> 22:55:35 -0000 1.78
> +++ lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp 25 Oct 2004
> 08:29:28 -0000
> @@ -213,6 +213,8 @@
> return GV;
> }
>
> +#ifdef HAVE_RAND48
> +
> // double drand48()
> GenericValue lle_X_drand48(FunctionType *M, const
> vector<GenericValue> &Args) {
> assert(Args.size() == 0);
> @@ -236,6 +238,16 @@
> return GenericValue();
> }
>
> +#endif
> [etc.]
Hi,
There's no HAVE_RAND48 symbol provided by autoconf. You'll have to add
the appropria...