Displaying 6 results from an estimated 6 matches for "rand48".
Did you mean:
lrand48
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...
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
AutoR...
2005 Jan 21
2
[LLVMdev] making cygwin nightly builds available?
...icky, but I have it compiled. The
main problems are due to several bugs in mingw's sh.exe
implementation, which stops building libstdc++ and many others.
Solution: add correct include path to configure script, fix makefile
(gcc throws error, if get -I without any path), fix several config
bugs (rand48, some in libstdc++).
6. Add stubs for functions in the debugger support library (fork,
waitpid, etc.). I have implementation for some of that functions, but
not for all.
7. Add -lpsapi -limagehlp to ExtraLibs to all tools' makefiles.
....
\infty [Some dummy things, I've forgotten]
As resul...
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...
...1.78 ExternalFunctions.cpp
> --- lib/ExecutionEngine/Interpreter/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 s...
2005 Jan 14
1
[LLVMdev] Building the CFE I get this error: there are no arguments to `lrand48'
..."using std::_Distance" line
(or just "using namespace std".
Chris Lattner wrote:
> On Fri, 14 Jan 2005, Henrik Bach wrote:
>
>> when building the llvm cfe (3.4 derivative), for the mingw platform,
>> I get this error: 'error: there are no arguments to `lrand48' that
>> depend on a template parameter, so a declaration of `lrand48' must be
>> available'.
>
>
> Hi Henrik,
>
> We haven't modified the GCC configure script or build system, so I
> don't know what could have caused this. It's quite possibl...