Perl 6 language and compiler development | Logs at colabti.org/irclogger/irclogger_log/perl6-dev | For toolchain/installation stuff see #perl6-toolchain | For MoarVM see #moarvm
Set by Zoffix on 27 July 2018.
vrurg Why $*PERL is being initialized in CORE? It more naturally belongs to a comp_unit... 00:20
Geth rakudo: vrurg++ created pull request #3117:
Modules with 'no precompilation' can be use'd inside EVALs again
00:39
roast: vrurg++ created pull request #565:
Tests for Rakudo issue 3116
00:45
rakudo: 842318cff6 | (Vadim Belman)++ | 2 files
Modules with 'no precompilation' can be use'd inside EVALs again

Setting wasn't loading for modules inside EVAL causing compilation to fail as no CORE symbols were available.
rakudo/rakudo#3116 rakudo/rakudo#3113
01:57
synopsebot RAKUDO#3116 [open]: github.com/rakudo/rakudo/issues/3116 [BLOCKER][WIP][regression] [WIP] 'no precompilation' is broken inside EVAL
synopsebot RAKUDO#3113 [open]: github.com/rakudo/rakudo/issues/3113 [BLOCKER] [WIP] Blin 2019-08-08
rakudo: a7302f0a42 | (Vadim Belman)++ (committed using GitHub Web editor) | 2 files
Merge pull request #3117 from vrurg/rakudo_issue_3116

Modules with 'no precompilation' can be use'd inside EVALs again
roast: 836eb38d4d | (Vadim Belman)++ | 2 files
Add test for 'use' inside EVAL

As EVAL is a pretty special case of compilation, additional testing is needed.
rakudo/rakudo#3116 rakudo/rakudo#3114
synopsebot RAKUDO#3114 [open]: github.com/rakudo/rakudo/issues/3114 Flapping segfault in this program
roast: 3d6e5d0396 | (Vadim Belman)++ | 4 files
Test for cross-version imports.

Check for all version and use/require combinations. Modules must report back their respective language version/revision independent of the default or of the importing code ones.
rakudo/rakudo#3116
roast: 381974e9fa | (Vadim Belman)++ (committed using GitHub Web editor) | 6 files
Merge pull request #565 from vrurg/rakudo_issue_3116

Tests for Rakudo issue 3116
Geth ¦ problem-solving: AlexDaniel assigned to rba Issue pl6anet.org will be discontinued breaking "Recent Blog Posts" on perl6.org github.com/perl6/problem-solving/issues/86 09:49
¦ problem-solving: AlexDaniel assigned to maettu Issue pl6anet.org will be discontinued breaking "Recent Blog Posts" on perl6.org github.com/perl6/problem-solving/issues/86
AlexDaniel bisectable6: sub foo($i) { my $i } 11:25
bisectable6 AlexDaniel, Bisecting by exit code (old=2015.12 new=a7302f0). Old exit code: 0
AlexDaniel, bisect log: gist.github.com/d8fa85158e8d6d185c...7dfeffd65a
AlexDaniel, (2019-01-02) github.com/rakudo/rakudo/commit/42...54cdaf5187
vrurg bisectable6: package P { our regex r { .+ } };say 'match' ~~ P::r; 16:02
bisectable6 vrurg, On both starting points (old=2015.12 new=a7302f0) the exit code is 1 and the output is identical as well
vrurg, Output on both points: «Too few positionals passed; expected 1 argument but got 0␤ in regex r at /tmp/trUwLk7qYT line 1␤ in block <unit> at /tmp/trUwLk7qYT line 1␤␤»
vrurg So, it's not a regression.
cygx o/ 17:32
so, I'm taking a shot at freezing dependencies
as far as I can see, there's no way to get bytecode out of a CompUnit Rakudo object
cygx the best I can do is hope that it's a CompUnit::Repository::FileSystem and poke into that 17:33
timotimo i think freezing the bytecode isn't a good choice when freezing dependencies, since a change in rakudo version for example would invalidate the bytecode 18:08
and freezing the entirety of rakudo could be a bit more difficult 18:09
cygx timotimo: the eventual goal is to create single-file executables statically linking moarvm, embedding bytecode for the script, the setting and all dependencies 18:19
timotimo oh wow
cygx one can dream ;) 18:21
timotimo spaghettispeed my friend 18:22
Geth rakudo: vrurg self-assigned Conflicting use statement does not produce an error, but fails dynamic compilation. github.com/rakudo/rakudo/issues/3075
636ddcdb54 | (Aleks-Daniel Jakimenko-Aleksejev)++ | README.md

It's still jnthn doing the things, but now everything is done via the problem-solving repo so the pumpking concept is no longer there.
18:31
MasterDuke cygx: have you seem pamplemousse's GSoC project? 19:25
cygx MasterDuke: yes, I have 19:30
haven't take a closer look yet (as in, I've read some blog posts, but no code)
gfldex m: constant r = regex r { 'useless' }; 19:50
camelia Potential difficulties:
Useless declaration of a has-scoped method in mainline (did you mean 'my regex r'?)
at <tmp>:1
------> 3constant r = regex 7⏏5r { 'useless' };
gfldex this looks like a useless warning :->
m: constant r = regex { 'useless' };
camelia ( no output )
cygx first step, figuring out what gets loaded: gist.github.com/cygx/fb5bd40b09f16...b4c638d704 20:55
rakudo: 15e0601078 | (Aleks-Daniel Jakimenko-Aleksejev)++ | README.md
Remove trailing whitespace