search for: reedi

Displaying 13 results from an estimated 13 matches for "reedi".

Did you mean: reed
2011 Jul 29
2
[LLVMdev] Overly restrictive size argument to llvm.invariant.start
Why is it that @llvm.invariant.start requires the size argument to be a constant integer literal and does not accept constant expressions? For example the following IR: declare {}* @llvm.invariant.start(i64,i8*) define void @foo() { %1 = call {}* @llvm.invariant.start(i64 ptrtoint(i8* getelementptr(i8* %null, i32 1) to i64), i8* null) ret void } gives the following error from llvm-as:
2013 Oct 11
1
One user getting: "Primary group is 0 and contains 0 supplementary groups" on standalone server
Greetings, We are having some rights issues on Samba 3.6.18 running on Slackware64 14.0 (the official Slackware Package). One of our users is having access issues and I believe I have traced the problem to the following entry in the log.smbd: Primary group is 0 and contains 0 supplementary groups Issuing the groups command for this user returns the 8 Linux groups in which the user has
2008 Jun 25
1
Still no joy using "print command" with 3.0.30
Greetings once again, I am still having trouble with the "print command" option in 3.0.30. In our computer lab, we force CUPS to print the jobs on hold, using: print command = lp -H hold -d %p %s This worked well with the Slackware packages of Samba 3.0.28 and CUPS 1.1.23. When I upgraded Samba to 3.0.30, the jobs were no longer queued on hold, but printed immediately. To
2011 Jul 29
0
[LLVMdev] Overly restrictive size argument to llvm.invariant.start
Geoff Reedy wrote: > Why is it that @llvm.invariant.start requires the size argument to be a > constant integer literal and does not accept constant expressions? For > example the following IR: > > declare {}* @llvm.invariant.start(i64,i8*) > define void @foo() { > %1 = call {}* @llvm.invariant.start(i64 ptrtoint(i8* getelementptr(i8* > %null, i32 1) to i64), i8*
2011 Jul 21
0
[LLVMdev] Catching exceptions passed through a JIT ExecutionEngine
On Tue, Jul 12, 2011 at 07:25:16PM -0400, Peter Zion said > Hi All, > > I'm trying to catch an exception that is "passed through" an LLVM ExecutionEngine but I am unable to do so. Specifically, in C++ code, inside a try/catch block, I call a JITted function, which in turn calls back into my code. Everything works fine unless an exception is thrown; I would except the
2013 Mar 15
2
Icalendar.Parse(StringIO.new(aString)) complains about missing method, bytesize
I need to send an ics file to a web service, so however it gets there it will arrive as a string. Is there another way to begin Icalendar''s Parse than with a file? I''m currently sending the file using the curl command... curl -v --data-urlencode ics at invite.ics http://127.0.0.1:4567/ics2event I''ve tried curl''s --data-binary and sinatra''s
2011 Jul 12
5
[LLVMdev] Catching exceptions passed through a JIT ExecutionEngine
Hi All, I'm trying to catch an exception that is "passed through" an LLVM ExecutionEngine but I am unable to do so. Specifically, in C++ code, inside a try/catch block, I call a JITted function, which in turn calls back into my code. Everything works fine unless an exception is thrown; I would except the outermost try/catch(...) block to catch the exception thrown in my innermost
2015 Feb 28
0
[LLVMdev] Tool to convert scala to llvm-IR
Hi Vivek, At the moment there is only an unfinished prototype of LLVM backend by Geoff Reedy <http://greedy.github.io/scala-llvm/>. It's very much incomplete and is based on an outdated version of the Scala compiler. You might be glad to hear that we at LAMP/EPFL are starting a new research project in Scala <--> LLVM area soon. At the moment it's too early to provide any more
2008 Jun 23
0
Print Command not working in 3.0.30
Greetings, I'm having trouble with the "print command" setting in Samba 3.0.30. From what I can tell, the commands defined in the "print command" setting are never executed. Jobs sent the printers are process by CUPS, bypassing the defined print command. When the command: lp -H hold -d %p %s did not work, I created a script that copied the command line used to a
2013 Oct 11
0
Rights Issues - one user getting: "Primary group is 0 and contains 0 supplementary groups" on standalone server
Greetings, We are having some rights issues on Samba 3.6.18 running on Slackware64 14.0 (the official Slackware Package). One of our users is having access issues and I believe I have traced the problem to the following entry in the log.smbd: Primary group is 0 and contains 0 supplementary groups Issuing the groups command for this user returns the 8 Linux groups in which the user has
2013 Nov 25
0
Using Samba 3.6.20 as stand-alone server
Greetings, Is it possible to use Samba 3.6.20 as a stand-alone server? We do not have any Windows servers, and we have no domain or AD. Our goal is to use Samba with the Linux (Unix) permissions and avoid using ACLs. Can this be done? If so, what lines in the smb.conf would control this? Thanks! Stu... -- Stuart Reedy Working hard for a great university! stu at coe.uky.edu
2011 Jul 06
0
[LLVMdev] LLVM and managed languages
On Fri, Jul 01, 2011 at 11:05:44AM -0700, Talin said > So I've been using LLVM for about 4 years now, and I've posted a lot on this > list about specific issues. What I would like to do is step back for a > moment and give my "big picture" assessment of LLVM overall, particularly > with respect to developing a "managed" language like Java / C# or my own >
2011 Jul 01
10
[LLVMdev] LLVM and managed languages
So I've been using LLVM for about 4 years now, and I've posted a lot on this list about specific issues. What I would like to do is step back for a moment and give my "big picture" assessment of LLVM overall, particularly with respect to developing a "managed" language like Java / C# or my own language, Tart. Obviously, I feel that LLVM is the best choice out there,