Displaying 8 results from an estimated 8 matches for "tryacquir".
Did you mean:
tryacquire
2009 May 22
0
[LLVMdev] CMake build maturity [was: Re: Arm port]
...-svn-build/
%> ccmake ../llvm-svn
# Basically only tweak the install prefix in ccmake, configure, generate
%> make
...
[ 2%] Built target LLVMSupport
[ 3%] Built target LLVMSystem
Linking CXX executable ../../bin/tblgen
../../lib/libLLVMSystem.a(Mutex.cpp.o): In function
`llvm::sys::Mutex::tryacquire()':
Mutex.cpp:(.text+0x3f): undefined reference to `pthread_mutex_trylock'
../../lib/libLLVMSystem.a(Mutex.cpp.o): In function
`llvm::sys::Mutex::Mutex(bool)':
Mutex.cpp:(.text+0x1bb): undefined reference to `pthread_mutexattr_init'
Mutex.cpp:(.text+0x216): undefined reference to `...
2009 May 22
5
[LLVMdev] Arm port
Chuck Robey <chuckr at telenix.org> writes:
>> Doesn't CMake support the BSD toolchain?
>
> OK, I checked the llvm-2.5 Makefiles. They have constructs in them
> which cannot be used in any BSD Makefile (such as the form of
> conditionals: ifndef is a GNU Makeism), and won't run on any BSD Make.
> I know BSD Make and GNU Make well enough, but I doon't know
2009 May 27
0
[LLVMdev] CMake build maturity
...h I configured with LLVM_ENABLE_PTHREADS). I get missing symbols
during linking of e.g. the JIT tutorial code:
12:20|melis at juggle2:~> c++ -g tut2.cpp `llvm-config --cxxflags --ldflags
--libs core` -o tut2
/home/melis/llvm-cmake/lib/libLLVMSystem.a(Mutex.cpp.o): In function
`llvm::sys::Mutex::tryacquire()':
/home/melis/c/llvm-svn/lib/System/Mutex.cpp:144: undefined reference to
`pthread_mutex_trylock'
/home/melis/llvm-cmake/lib/libLLVMSystem.a(Mutex.cpp.o): In function
`Mutex':
/home/melis/c/llvm-svn/lib/System/Mutex.cpp:69: undefined reference to
`pthread_mutexattr_init'
/home/me...
2010 Feb 17
0
[LLVMdev] Work in progress patch to bug 2606
In thinking about this we could use a Mutex::tryacquire(...) (non-recursive), around JIT::runJITOnFunctionUnlocked(...)'s
while loop, and use your JITEmitter:: getLazyFunctionStub(...) suggestion in place of forceEmitFunctionStub(...). Is the lock
attempt too heavy, even if it is implemented with atomics? I'll implement this when I have time....
2009 May 22
2
[LLVMdev] CMake build maturity
Paul Melis <llvm at assumetheposition.nl> writes:
> Hi, just chiming in here...
>
> Óscar Fuentes wrote:
>> [...]
>>
>> This is a simple guide for using cmake with LLVM:
>>
>> http://www.llvm.org/docs/CMake.html
>>
>> The makefiles distributed with LLVM have nothing to do with cmake.
>>From the few times I tried building LLVM with
2010 Feb 17
3
[LLVMdev] Work in progress patch to bug 2606
Hi Olivier,
Thanks for responding! I get to learn this way.
On Feb 17, 2010, at 12:50, Olivier Meurant wrote:
> Hi Garrison,
>
> I am not a specialist of the code but here is my 2 cents:
>
> - I like the idea that in lazy-mode the call (in module or not) is treated by a stub (like every calls).
If we go further with this, I'll have to add test cases for lazy mode. I kind
2012 Sep 24
0
[LLVMdev] llvm-config!
Reza Sheykhi <hajishey at msu.edu> writes:
> I got the following answers:
>
> which perl
> /usr/bin/perl
>
> which llvm-config
> /usr/local/bin/llvm-config
>
> which llvm-as
> /usr/local/bin/llvm-as
>
> /usr/bin/llvm-confing --version
> bash: /usr/bin/llvm-confing: No such file or directory
Uh, there is a typo on the command above, it should be
2012 Sep 24
2
[LLVMdev] llvm-config!
I got the following answers:
which perl
/usr/bin/perl
which llvm-config
/usr/local/bin/llvm-config
which llvm-as
/usr/local/bin/llvm-as
/usr/bin/llvm-confing --version
bash: /usr/bin/llvm-confing: No such file or directory
/usr/local/bin/llvm-config --version
2.8
Quoting Óscar Fuentes <ofv at wanadoo.es>:
> Reza Sheykhi <hajishey at msu.edu> writes:
>
>> Thank you