Displaying 20 results from an estimated 125 matches for "meli".
Did you mean:
mei
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 configur...
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...
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:
>>>>
>>>>&g...
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 ge...
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-bi...
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 s...
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_LIM...
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]
^
1...
2008 May 22
3
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 METALS
Via Verdi, 82
Cernusco S/N I-20063 (MI) - Italy
Tel: +39 02 929051 (452) (252)
Fax: +39 02 9230690
Email: marco.meli@gknsintermetals.com
P Before printing, think about the Environment
2005 May 16
2
Question about ACL.
...smbclient //smbserver/data -Uuser1%*** , I can see the user1
personal folder and it works I expected. Why it works with smbclient but not
with Winodws client? And what can I do to found the problem?
/data [domain users r-x]
/user [domain users r-x]
/user1 [user1 rwx]
Thanks. Marco.
Marco Meli
IT Dept.
> GKN SINTER METALS
> Via Verdi, 82
> Cernusco s/N
> I-20063 (MI) / Italy
> % +39 02-929051452
> Fax: +39 02-9230690
Email: <<mailto:marco.meli@gknsintermetals.com
<mailto:marco.meli@gknsintermetals.com> >>
2005 May 23
1
Problem browsing share with W2k and XP.
...other::---
default:user::rwx
default:user:dtomasoni:rwx
default:group::---
default:mask::rwx
default:other::---
User have to see their own folders and nobody others.
Could be any parameter to set in smb.conf or it's probably something set in
W3K Server?
Thanks a lot.
Marco.
Marco Meli
IT Dept.
> GKN SINTER METALS
> Via Verdi, 82
> Cernusco s/N
> I-20063 (MI) / Italy
> % +39 02-929051452
> Fax: +39 02-9230690
Email: <<mailto:marco.meli@gknsintermetals.com
<mailto:marco.meli@gknsintermetals.com> >>
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 vo...
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