summaryrefslogtreecommitdiff
path: root/lib/ExtUtils
diff options
context:
space:
mode:
authorGisle Aas <gisle@activestate.com>2006-03-22 13:37:19 +0000
committerGisle Aas <gisle@activestate.com>2006-03-22 13:37:19 +0000
commita90be0136120263e3a9bbc095158abaa7ae2eeb5 (patch)
tree1aa0971e0f34431b59c082b0de264feb893eb6d4 /lib/ExtUtils
parent44033ed42cc1ad96343150c1a8e7fccf587c2f1f (diff)
downloadperl-a90be0136120263e3a9bbc095158abaa7ae2eeb5.tar.gz
Adjust docs to reflect that DynaLoader, as of change 27549,
is part of libperl. p4raw-id: //depot/perl@27566
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r--lib/ExtUtils/Embed.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm
index 2d6470efe9..79bca4dfe2 100644
--- a/lib/ExtUtils/Embed.pm
+++ b/lib/ExtUtils/Embed.pm
@@ -425,7 +425,7 @@ rather than print it to STDOUT.
perl -MExtUtils::Embed -e ldopts
-This will print arguments for linking with B<libperl.a>, B<DynaLoader> and
+This will print arguments for linking with B<libperl> and
extensions found in B<$Config{static_ext}>. This includes libraries
found in B<$Config{libs}> and the first ModuleName.a library
for each extension that is found by searching B<@INC> or the path
@@ -439,17 +439,8 @@ are picked up from the B<extralibs.ld> file in the same directory.
This will do the same as the above example, along with printing additional arguments for linking with the B<Socket> extension.
-
- perl -MExtUtils::Embed -e ldopts -- DynaLoader
-
-
-This will print arguments for linking with just the B<DynaLoader> extension
-and B<libperl.a>.
-
-
perl -MExtUtils::Embed -e ldopts -- -std Msql -- -L/usr/msql/lib -lmsql
-
Any arguments after the second '--' token are additional linker
arguments that will be examined for potential conflict. If there is no
conflict, the additional arguments will be part of the output.