Skip to content

Commit

Permalink
The warning about "Perl is not built as a dynamic library" was actual…
Browse files Browse the repository at this point in the history
…ly never reported, fix it.

And the newest parrot_config don't have a 'cc_hasjit' key if it's empty.
  • Loading branch information
Hongwe Qiu authored and jnthn committed Jan 16, 2011
1 parent a2833b9 commit bca8b6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configure.pl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ sub dubious {
$config{p5_ldopts} = ldopts(1); $config{p5_ldopts} = ldopts(1);
$config{p5_ccopts} = ccopts(1); $config{p5_ccopts} = ccopts(1);
$config{p5_perl} = $^X; $config{p5_perl} = $^X;
$config{cc_hasjit} //= '';


# Create the Makefile using the information we just got # Create the Makefile using the information we just got
create_makefile('Makefile' => %config); create_makefile('Makefile' => %config);
Expand Down Expand Up @@ -135,7 +136,7 @@ sub slurp {
-Dusemultiplicity configuration option (-Dusethreads implies this). -Dusemultiplicity configuration option (-Dusethreads implies this).
MULT MULT


dubious !$Perlconfig{useshrplib}, <<SHR; dubious $Perlconfig{useshrplib} eq 'false', <<SHR;
Your Perl is not built as a dynamic library. In the best case this will result Your Perl is not built as a dynamic library. In the best case this will result
in a bloated Blizkost library; other possible results include significantly in a bloated Blizkost library; other possible results include significantly
slower startup, increased per-process memory usage, and in the worst case slower startup, increased per-process memory usage, and in the worst case
Expand Down

0 comments on commit bca8b6c

Please sign in to comment.