Displaying 9 results from an estimated 9 matches for "have_rand48".
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...
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...
...-u -r1.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...
2004 Oct 19
0
[LLVMdev] How to solve missing srand48/lrand48/drand48?
Morten,
have a look at the
http://mail.cs.uiuc.edu/pipermail/llvmdev/2004-September/002235.html
thread...
On Oct 19, 2004, at 2:40 PM, Morten Ofstad wrote:
> These calls are in ExternalCalls.cpp, they are platform dependent
> calls, so maybe llvm should consider including it's own implementation
> of a random number generator? For the time being I just replaced with
> calls
2004 Oct 19
3
[LLVMdev] How to solve missing srand48/lrand48/drand48?
These calls are in ExternalCalls.cpp, they are platform dependent calls,
so maybe llvm should consider including it's own implementation of a
random number generator? For the time being I just replaced with calls
to srand and rand like Paolo also did, but it needs to be fixed...
m.
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote:
[ brutal-snip ]
...
> [ TODO#S: Before doing a 2nd build (and in a 3rd run using more
> optimized binaries) ]
>
> How do I anable LTO via CMAKE?
>
>
> LLVM_ENALBLE_LTO=On
>
[ v4 of my build-script attached ]
Hi Chris,
thanks for the response!
That seems to work (see below).
$ cd
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a
/lot/ of errors like this (strangely I hit none of these in check-llvm,
only in check-clang):
Any ideas?
==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes
at address 0x631000014800
==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...bol pread
HAVE_PREAD:INTERNAL=1
//Have library pthread
HAVE_PTHREAD_GETSPECIFIC:INTERNAL=1
//Have include pthread.h
HAVE_PTHREAD_H:INTERNAL=1
//Have library pthread
HAVE_PTHREAD_MUTEX_LOCK:INTERNAL=1
//Have library pthread
HAVE_PTHREAD_RWLOCK_INIT:INTERNAL=1
//are srand48/lrand48/drand48 available?
HAVE_RAND48:INTERNAL=1
//Have symbol drand48
HAVE_RAND48_DRAND48:INTERNAL=1
//Have symbol lrand48
HAVE_RAND48_LRAND48:INTERNAL=1
//Have symbol srand48
HAVE_RAND48_SRAND48:INTERNAL=1
//Have symbol readdir
HAVE_READDIR:INTERNAL=1
//Have symbol realpath
HAVE_REALPATH:INTERNAL=1
//Have include rpc/xdr.h
HAVE_RPC_X...