Date: | Sun, 5 Nov 2017 22:06:17 -0800 |
Subject: | Long @INC gets replaced with executable |
To: | "perlbug [...] perl.org" <perlbug [...] perl.org> |
From: | Father Chrysostomos <sprout [...] cpan.org> |
The attached script sets PERL5LIB to a very long value, and then runs a perl one-liner with thousands of -I options. When I run it like this:
$ ./perl -Ilib /path/to/02fail.t
I get
./perl
./perl
./perl
./perl
...
etc., one for every entry that should have been in @INC. Instead, @INC is filled with the executable name.
Strangely, I can’t reproduce it if I put the PERL5LIB value and the -I switches in text files and run it like this:
$ PERL5LIB="`cat /tmp/lib.text`" ./perl -Ilib `cat /tmp/inc.text` -e 'print "$_\n" for @INC'
It gives me the correct @INC that I has expecting to see. My bash-fu is not very good. Maybe my command line is wrong. Maybe this is a heisenbug that depends on how stuff is laid out in memory. Maybe I should stop speculating.
$ ./perl -Ilib -V
Summary of my perl5 (revision 5 version 27 subversion 6) configuration:
Local Commit: 6361bd97c31b3021d24a400ed9f6f3b7877d84ef
Ancestor: 301bcfdaa73a979264d6ee1845c40043ddd464eb
Platform:
osname=darwin
osvers=12.5.0
archname=darwin-2level
uname='darwin pint.local 12.5.0 darwin kernel version 12.5.0: sun sep 29 13:33:47 pdt 2013; root:xnu-2050.48.12~1release_x86_64 x86_64 '
config_args='-Dusedevel -DDEBUGGING -Aoptimize=-O0 -des'
hint=recommended
useposix=true
d_sigaction=define
useithreads=undef
usemultiplicity=undef
use64bitint=define
use64bitall=define
uselongdouble=undef
usemymalloc=n
default_inc_excludes_dot=define
bincompat5005=undef
Compiler:
cc='cc'
ccflags ='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.8 -DDEBUGGING -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -I/opt/local/include -DPERL_USE_SAFE_PUTENV'
optimize='-O3 -O0 -g'
cppflags='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.8 -DDEBUGGING -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -I/opt/local/include'
ccversion=''
gccversion='4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.27)'
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='double'
nvsize=8
Off_t='off_t'
lseeksize=8
alignbytes=8
prototype=define
Linker and Libraries:
ld='cc'
ldflags =' -mmacosx-version-min=10.8 -fstack-protector -L/usr/local/lib -L/opt/local/lib'
libpth=/usr/local/lib /usr/bin/../lib/clang/4.2/lib /usr/lib /opt/local/lib
libs=-lpthread -ldbm -ldl -lm -lutil -lc
perllibs=-lpthread -ldl -lm -lutil -lc
libc=
so=dylib
useshrplib=false
libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs
dlext=bundle
d_dlsymun=undef
ccdlflags=' '
cccdlflags=' '
lddlflags=' -mmacosx-version-min=10.8 -bundle -undefined dynamic_lookup -L/usr/local/lib -L/opt/local/lib -fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options:
DEBUGGING
HAS_TIMES
PERLIO_LAYERS
PERL_COPY_ON_WRITE
PERL_DONT_CREATE_GVSV
PERL_MALLOC_WRAP
PERL_OP_PARENT
PERL_PRESERVE_IVUV
PERL_USE_DEVEL
PERL_USE_SAFE_PUTENV
USE_64_BIT_ALL
USE_64_BIT_INT
USE_LARGE_FILES
USE_LOCALE
USE_LOCALE_COLLATE
USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC
USE_LOCALE_TIME
USE_PERLIO
USE_PERL_ATOF
Locally applied patches:
6361bd97c31b3021d24a400ed9f6f3b7877d84ef
Built under darwin
Compiled at Nov 1 2017 13:14:28
@INC:
lib
/usr/local/lib/perl5/site_perl/5.27.6/darwin-2level
/usr/local/lib/perl5/site_perl/5.27.6
/usr/local/lib/perl5/5.27.6/darwin-2level
/usr/local/lib/perl5/5.27.6
/usr/local/lib/perl5/site_perl
Message body is not shown because sender requested not to inline it.