_v#
Print the full perl -V report to STDOUT.
Synopsis#
use Config;
Config::_V();
What you get back#
Nothing. Side effects only: a multi-section dump covering the
myconfig summary, compile-time options (sorted), the host OS,
the compile-date line, every PERL*/PPERL* entry in %ENV, and
the contents of @INC.
Examples#
## Equivalent of the command-line `pperl -V`:
use Config;
Config::_V();
Edge cases#
Output goes to the OS
STDOUTdirectly; Perl-levelSTDOUTredirection withlocal *STDOUTdoes not affect it.@INCentries are written verbatim, including any non-UTF-8 bytes.
Differences from upstream#
Lines describing the compiler and compile date reflect pperl’s Rust-based build.
%ENVprobe includesPPERL*in addition toPERL*so pperl-aware environments are visible in the dump.