Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix configure.pl6 on rakudo-j
Sadly $*VM.config keys are not standardized among backends.
  • Loading branch information
niner committed Aug 30, 2016
1 parent 865e918 commit dd99758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.pl6
Expand Up @@ -15,7 +15,7 @@ sub configure() {
or die "\nPlease install the Filter::Simple Perl 5 module!\n";

my %vars;
%vars<CC> = $*VM.config<cc>;
%vars<CC> = $*VM.config<cc> // $*VM.config<nativecall.cc> // 'cc';
%vars<p5helper> = p5helper().Str;
%vars<perlopts> = run(<perl -MExtUtils::Embed -e ccopts -e ldopts>, :out).out.lines.join('');
%vars<perl6> = $*EXECUTABLE;
Expand Down

0 comments on commit dd99758

Please sign in to comment.