#!/pro/bin/perl use strict; use warnings; BEGIN { use Test::More; my $tests = 135; unless ($ENV{PERL_CORE}) { require Test::NoWarnings; Test::NoWarnings->import (); $tests++; } plan tests => $tests; } use Config::Perl::V qw( summary ); ok (my $conf = Config::Perl::V::plv2hash (), "Read perl -v block"); ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc ); is ($conf->{build}{osname}, $conf->{config}{osname}, "osname"); is ($conf->{build}{stamp}, "Aug 21 2022 08:56:37", "Build time"); is ($conf->{config}{version}, "5.37.3", "reconstructed \$Config{version}"); my $opt = Config::Perl::V::plv2hash ("")->{build}{options}; foreach my $o (sort qw( DEBUGGING HAS_TIMES MULTIPLICITY PERL_COPY_ON_WRITE PERL_DONT_CREATE_GVSV PERL_HASH_FUNC_SIPHASH13 PERL_HASH_USE_SBOX32 PERLIO_LAYERS PERL_MALLOC_WRAP PERL_OP_PARENT PERL_PRESERVE_IVUV PERL_TRACK_MEMPOOL PERL_USE_DEVEL PERL_USE_SAFE_PUTENV USE_64_BIT_ALL USE_64_BIT_INT USE_ITHREADS USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_LOCALE_TIME USE_LONG_DOUBLE USE_PERL_ATOF USE_PERLIO USE_REENTRANT_API USE_THREAD_SAFE_LOCALE )) { is ($conf->{build}{options}{$o}, 1, "Runtime option $o set"); delete $opt->{$o}; } foreach my $o (sort keys %$opt) { is ($conf->{build}{options}{$o}, 0, "Runtime option $o unset"); } eval { require Digest::MD5; }; my $md5 = $@ ? "0" x 32 : "ff4175ca52fccf9c03c33d34af942b0d"; ok (my $sig = Config::Perl::V::signature ($conf), "Get signature"); SKIP: { ord "A" == 65 or skip "ASCII-centric test", 1; is ($sig, $md5, "MD5"); } is_deeply ($conf->{build}{patches}, [ ], "No patches"); my %check = ( alignbytes => 16, api_version => 37, bincompat5005 => undef, # GONE, chainsawed byteorder => 12345678, cc => "cc", cccdlflags => "-fPIC", ccdlflags => "-Wl,-E", config_args => "-Dusedevel -Dusethreads -Duseithreads -Duse64bitall -Duselongdouble -desr -Dusedevel -Uinstallusrbinperl -Dprefix=/media/Tux/perls-t", gccversion => "12.1.1 20220812 [revision 6b7d570a5001bb79e34c0d1626a8c7f55386dac7]", gnulibc_version => "2.35", ivsize => 8, ivtype => "long", ld => "cc", lddlflags => "-shared -O2 -L/pro/local/lib -fstack-protector-strong", ldflags => "-L/pro/local/lib -fstack-protector-strong", libc => "/lib/../lib64/libc.so.6", lseektype => "off_t", osvers => "5.19.1-1-default", use64bitall => "define", use64bitint => "define", usemymalloc => "n", default_inc_excludes_dot => "define", ); is ($conf->{config}{$_}, $check{$_}, "reconstructed \$Config{$_}") for sort keys %check; ok (my $info = summary ($conf), "A summary"); ok (exists $info->{$_}, "Summary has $_") for qw( cc config_args usemymalloc default_inc_excludes_dot ); is ($info->{default_inc_excludes_dot}, "define", "This build has . NOT in INC"); __END__ Summary of my perl5 (revision 5 version 37 subversion 3) configuration: Platform: osname=linux osvers=5.19.1-1-default archname=x86_64-linux-thread-multi-ld uname='linux lx09 5.19.1-1-default #1 smp preempt_dynamic thu aug 11 11:32:52 utc 2022 (a5bf6c0) x86_64 x86_64 x86_64 gnulinux ' config_args='-Dusedevel -Dusethreads -Duseithreads -Duse64bitall -Duselongdouble -desr -Dusedevel -Uinstallusrbinperl -Dprefix=/media/Tux/perls-t' hint=recommended useposix=true d_sigaction=define useithreads=define usemultiplicity=define use64bitint=define use64bitall=define uselongdouble=define usemymalloc=n default_inc_excludes_dot=define Compiler: cc='cc' ccflags ='-D_REENTRANT -D_GNU_SOURCE -DDEBUGGING -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2' optimize='-O2' cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBUGGING -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/pro/local/include' ccversion='' gccversion='12.1.1 20220812 [revision 6b7d570a5001bb79e34c0d1626a8c7f55386dac7]' gccosandvers='' intsize=4 longsize=8 ptrsize=8 doublesize=8 byteorder=12345678 doublekind=3 d_longlong=define longlongsize=8 d_longdbl=define longdblsize=16 longdblkind=3 ivtype='long' ivsize=8 nvtype='long double' nvsize=16 Off_t='off_t' lseeksize=8 alignbytes=16 prototype=define Linker and Libraries: ld='cc' ldflags ='-L/pro/local/lib -fstack-protector-strong' libpth=/usr/local/lib /usr/x86_64-suse-linux/lib /usr/lib /data/pro/local/lib /usr/lib64 /usr/local/lib64 libs=-lpthread -lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat perllibs=-lpthread -lnsl -ldl -lm -lcrypt -lutil -lc libc=/lib/../lib64/libc.so.6 so=so useshrplib=false libperl=libperl.a gnulibc_version='2.35' Dynamic Linking: dlsrc=dl_dlopen.xs dlext=so d_dlsymun=undef ccdlflags='-Wl,-E' cccdlflags='-fPIC' lddlflags='-shared -O2 -L/pro/local/lib -fstack-protector-strong' Characteristics of this binary (from libperl): Compile-time options: DEBUGGING HAS_TIMES MULTIPLICITY PERLIO_LAYERS PERL_COPY_ON_WRITE PERL_DONT_CREATE_GVSV PERL_HASH_FUNC_SIPHASH13 PERL_HASH_USE_SBOX32 PERL_MALLOC_WRAP PERL_OP_PARENT PERL_PRESERVE_IVUV PERL_TRACK_MEMPOOL PERL_USE_DEVEL PERL_USE_SAFE_PUTENV USE_64_BIT_ALL USE_64_BIT_INT USE_ITHREADS USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_LOCALE_TIME USE_LONG_DOUBLE USE_PERLIO USE_PERL_ATOF USE_REENTRANT_API USE_THREAD_SAFE_LOCALE Built under linux Compiled at Aug 21 2022 08:56:37 %ENV: PERL6LIB="inst#/pro/3gl/CPAN/rakudo/install" @INC: /media/Tux/perls-t/lib/site_perl/5.37.3/x86_64-linux-thread-multi-ld /media/Tux/perls-t/lib/site_perl/5.37.3 /media/Tux/perls-t/lib/5.37.3/x86_64-linux-thread-multi-ld /media/Tux/perls-t/lib/5.37.3