Displaying 20 results from an estimated 125 matches for "melis".
Did you mean:
zelis
2009 May 27
2
[LLVMdev] CMake build maturity
Paul Melis <llvm at assumetheposition.nl> writes:
> It seems that the llvm-config generated when building through CMake does
> not contain -lpthread on my 32-bit Core2Duo Gentoo Linux system (even
> though I configured with LLVM_ENABLE_PTHREADS). I get missing symbols
> during linking of e....
2009 May 27
0
[LLVMdev] CMake build maturity
Hi Oscar,
Óscar Fuentes wrote:
> Paul Melis <llvm at assumetheposition.nl> writes:
>
> [snip]
>
> Thanks! Fixed.
>
> BTW, bug reports are welcome.
>
It seems that the llvm-config generated when building through CMake does
not contain -lpthread on my 32-bit Core2Duo Gentoo Linux system (even
though I configure...
2009 Aug 31
7
[LLVMdev] Build(s) broken? (was: Re: Buildbots: Apology and Explanation)
Paul Melis wrote:
> Jim Grosbach wrote:
>>
>> On Aug 30, 2009, at 10:18 AM, Paul Melis wrote:
>>
>>> Hello,
>>>
>>> Bill Wendling wrote:
>>>> Before we had buildbots, a random patch would break the system. It
>>>> would sometimes take a w...
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...
2009 Jun 01
0
[LLVMdev] CMake build maturity
Óscar Fuentes wrote:
> Paul Melis <llvm at assumetheposition.nl> writes:
>
>
>> It seems that the llvm-config generated when building through CMake does
>> not contain -lpthread on my 32-bit Core2Duo Gentoo Linux system (even
>> though I configured with LLVM_ENABLE_PTHREADS). I get missing symbols
&...
2009 Aug 31
2
[LLVMdev] Build(s) broken?
Paul Melis wrote:
> Paul Melis wrote:
>
>> Jim Grosbach wrote:
>>
>>> On Aug 30, 2009, at 10:18 AM, Paul Melis wrote:
>>>
>>>
>>>> Hello,
>>>>
>>>> Bill Wendling wrote:
>>>>
>>>>>...
2009 Aug 30
3
[LLVMdev] Build(s) broken? (was: Re: Buildbots: Apology and Explanation)
On Aug 30, 2009, at 10:18 AM, Paul Melis wrote:
> Hello,
>
> Bill Wendling wrote:
>> Before we had buildbots, a random patch would break the system. It
>> would sometimes take a whole day to determine which patch broke it.
> I see the buildbots are currently showing no problem on 32-bit linux
> but
> I get...
2009 Aug 31
0
[LLVMdev] Build(s) broken? (was: Re: Buildbots: Apology and Explanation)
On Aug 31, 2009, at 6:48 AM, Paul Melis wrote:
> Paul Melis wrote:
>> Jim Grosbach wrote:
>>>
>>> On Aug 30, 2009, at 10:18 AM, Paul Melis wrote:
>>>
>>>> Hello,
>>>>
>>>> Bill Wendling wrote:
>>>>> Before we had buildbots, a random patch would break...
2009 Aug 31
0
[LLVMdev] Build(s) broken? (was: Re: Buildbots: Apology and Explanation)
Jim Grosbach wrote:
>
> On Aug 30, 2009, at 10:18 AM, Paul Melis wrote:
>
>> Hello,
>>
>> Bill Wendling wrote:
>>> Before we had buildbots, a random patch would break the system. It
>>> would sometimes take a whole day to determine which patch broke it.
>> I see the buildbots are currently showing no problem on 32-bit...
2009 Aug 30
0
[LLVMdev] Build(s) broken? (was: Re: Buildbots: Apology and Explanation)
...dom patch would break the system. It
> would sometimes take a whole day to determine which patch broke it.
I see the buildbots are currently showing no problem on 32-bit linux but
I get the following build error with TOT (out-of-source autoconf build):
[...]
make[1]: Leaving directory `/home/melis/c/llvm-svn-release/tools'
make[1]: Entering directory `/home/melis/c/llvm-svn-release/runtime'
make[2]: Entering directory
`/home/melis/c/llvm-svn-release/runtime/libprofile'
llvm[2]: Compiling BasicBlockTracing.ll to BasicBlockTracing.bc for
Release build (bytecode)
/home/melis/c/llvm-...
2009 Jun 01
2
[LLVMdev] CMake build maturity
Paul Melis wrote:
> Óscar Fuentes wrote:
>
>> Paul Melis <llvm at assumetheposition.nl> writes:
>>
>>
>>
>>> It seems that the llvm-config generated when building through CMake does
>>> not contain -lpthread on my 32-bit Core2Duo Gentoo Linux sy...
2009 Aug 28
5
[LLVMdev] Buildbots: Apology and Explanation
I need to apologize to many of you, especially Gabor, for my vitriol
over buildbot breakages. I get very enraged by breakages that occur
over long periods of time. Here's an attempt to explain why I fly off
the handle at these.
Before we had buildbots, a random patch would break the system. It
would sometimes take a whole day to determine which patch broke it. I
came up with the
2009 Sep 15
3
[LLVMdev] C API linking problem
Hello all,
Does anyone have any inside why I can't get the below simple C API test to
link? This is on a 32-bit Gentoo Linux system and LLVM TOT which was
compiled with enable-optimized, gcc is 4.3.2.
15:26|melis at juggle2:~/c/llvmpy> cat t.c
#include "llvm-c/Core.h"
int main()
{
LLVMContextRef ctx;
ctx = LLVMContextCreate();
return 0;
}
15:29|melis at juggle2:~/c/llvmpy> llvm-config --cflags --ldflags --libs all
-I/home/melis/llvm/include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMI...
2009 Sep 02
1
[LLVMdev] LangRef description of 'add nsw' doesn't match reality
...t
<result> = nsw add <ty> <op1>, <op2> ; yields {ty}:result
<result> = nuw nsw add <ty> <op1>, <op2> ; yields {ty}:result
But llvm-as does not accept that sequence, only ... = add nsw ... (which
is also what llvm-gcc generates). E.g.
16:29|melis at juggle2:~> cat add.ll | grep nsw
%2 = nsw add i32 %1, 1 ; <i32> [#uses=1]
16:29|melis at juggle2:~> llvm-as add.ll
llvm-as: add.ll:14:8: error: expected instruction opcode
%2 = nsw add i32 %1, 1 ; <i32> [#uses=1]
^
16...
2008 May 22
3
dos application
Hi,
By few months I have some troubles with a network dos application.
Precisely application, randomly, get errors referring to access denied
to any shared files or path not found and crash.
I would ask you what kind of parameters I have to set in my "smb.conf"
file (Samba v. 3.0.24), to make it more compatible with DOS 6.22.
Many thanks.
Marco.
Marco Meli (IT Dept.)
GKN SINTER
2005 May 16
2
Question about ACL.
Hi, I running samba-3.0.13-1 connect to W2k3, attr-2.4.19 and acl-2.2.27-1.
I've a strange problem with ACL settings, following the data structure.I
would that user1 could read/write only his personal folder, user1 belongs to
domain users and can reach the user folder but he can't see his personal
folder. I have tried to run setfacl -b (remove all ACL entries) and setup
them again, format
2005 May 23
1
Problem browsing share with W2k and XP.
Hi,
I cant' see all folders I need when I browse share by W2k or XP
Professional client?
With W9x it browse correctly.
I hope I've reported all you need to understand my situation:
Samba-3.0.14a on RH9 joined to Windows Server 2003 and configured with
Kerberos.
Following my smb.conf.
[global]
netbios name = MILLX03
os level = 16
wins server =
2009 Sep 15
0
[LLVMdev] C API linking problem
"Paul Melis" <llvm at assumetheposition.nl> writes:
> 15:29|melis at juggle2:~/c/llvmpy> gcc -W -Wall -o blah `llvm-config --cflags
> --ldflags --libs all` t.c
> /tmp/ccs4MbKp.o: In function `main':
> t.c:(.text+0x21): undefined reference to `LLVMContextCreate'
> collect2:...
2009 Dec 01
1
[LLVMdev] Troubles with llvm.gcroot and exception handling
...with LLVM's GC support and am struggling with the
following. I have a little test snippet (a .ll file with IR) that uses
llvm.gcroot to mark a GC root, but when I compile it to assembly with
llc, followed by generating an executable with gcc I get an error
related to exception handling:
22:40|melis at juggle2:~/projects/llvm_gc> cat root.ll
%obj = type { i8*, i8, i8 }
declare void @llvm.gcroot(i8**, i8*) nounwind
declare i8* @malloc(i32) nounwind
define i32 @main() nounwind gc "shadow-stack" {
entry:
%ptr = alloca %obj*
%ptr_i8 = bitcast %obj** %ptr to i8**
call voi...
2002 Mar 15
3
Printing problems with Win2000
Hi all,
I have set in smb.conf:
workgroup = "NAMEWORKGROUP"
security = DOMAIN
encrypt passwords = yes
password server = "NAMESERVER"
in this way I do not have problems for autenticate my win2000 and win9x
users by my NT Domain Controller, and share a linux directory, but is
not the same for the printers:
while with the win9x accounts I be able to connect a network printer,
with