Re: Building MoarVM on Solaris

2013-07-24 Thread Tobias Leich
Hi, at one point we are moving from libapr to libuv, so we would have to check if libuv's build scripts are usable too. But what speaks for having our own configure system: What if you already have libapr/libuv installed with their dev-packages? We would just link against that without the ability

Building MoarVM on Solaris

2013-07-24 Thread Andy Dougherty
[I am sending this to perl6-compiler list because I don't know where else to send it. Apologies if this is the wrong place.] I recently tried to build MoarVM on Solaris 11/x86 with Sun's compiler suite. After cloning moarvm and running 'perl Configure.pl' , I got the following message: Welcome

Re: [perl #118965] AutoReply: [BUG] Import of overlapping export groups

2013-07-24 Thread David Warring
Another failing example: use v6; class Test { sub foo is export(:foo) {42}; sub bar is export(:bar) {0x42}; sub baz is export(:foo, :bar) {0o42}; } % perl6 -e 'use Test :foo, :bar' ===SORRY!=== Cannot import symbol &baz from Test, because it already e

Re: [perl #118999] Lexical regexes declare methods that conflict with each other

2013-07-24 Thread Elizabeth Mattijsen
On Jul 24, 2013, at 10:01 AM, Rob Hoelz (via RT) wrote: > # New Ticket Created by Rob Hoelz > # Please include the string: [perl #118999] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org:443/rt3/Ticket/Display.html?id=118999 > > > > When creatin

[perl #119001] Passing a string that looks like an integer fails to match MAIN(Str)

2013-07-24 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #119001] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=119001 > If I define a MAIN sub with a Str parameter and pass an integer argument, the type c

[perl #118999] Lexical regexes declare methods that conflict with each other

2013-07-24 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #118999] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=118999 > When creating a lexical regex with the same name in two different contexts, Rakudo t