YAML-Syck v1.31 Perl 5 v5.28.1 darwin-2level

Status
Pass
From
Karen Etheridge
Dist
YAML-Syck v1.31
Platform
Perl 5 v5.28.1 darwin-2level
Date
2019-03-02 21:21:15
ID
1c74afb6-3d31-11e9-a637-79cb84650c76
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language.  See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org


--
Dear TODDR,

This is a computer-generated report for YAML-Syck-1.31
on perl 5.28.1, created by App::cpanminus::reporter 0.17 (1.7044).

Thank you for uploading your work to CPAN.  Congratulations!
All tests were successful.

Sections of this report:

    * Tester comments
    * Program output
    * Prerequisites
    * Environment and other context

------------------------------
TESTER COMMENTS
------------------------------

Additional comments from tester:

none provided

------------------------------
PROGRAM OUTPUT
------------------------------

Output from '':

Building and testing YAML-Syck-1.31
Running Mkbootstrap for Syck ()
chmod 644 "Syck.bs"
"/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Syck.bs blib/arch/auto/YAML/Syck/Syck.bs 644
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   bytecode.c
bytecode.re:315:21: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
                    free( qstr );
                    ^
bytecode.re:326:38: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
                    sycklval->name = S_ALLOC_N( char, qidx + strlen( lvl->domain ) );
                                     ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
bytecode.re:326:38: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
bytecode.re:469:6: warning: implicitly declaring library function 'realloc' with type 'void *(void *, unsigned long)' [-Wimplicit-function-declaration]
        {   CAT(str, cap, idx, tok[0]);
            ^
bytecode.re:122:17: note: expanded from macro 'CAT'
                S_REALLOC_N( s, char, c ); \
                ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
bytecode.re:469:6: note: include the header <stdlib.h> or explicitly provide a declaration for 'realloc'
bytecode.re:122:17: note: expanded from macro 'CAT'
                S_REALLOC_N( s, char, c ); \
                ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
bytecode.re:442:29: warning: implicit declaration of function 'strtod' is invalid in C99 [-Wimplicit-function-declaration]
                int total = strtod( count, NULL );
                            ^
4 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   emitter.c
emitter.c:32:18: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
    char *buff = S_ALLOC_N(char, len * 4 / 3 + 6);
                 ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
emitter.c:32:18: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
emitter.c:149:5: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
    S_FREE( name );
    ^
./syck.h:82:19: note: expanded from macro 'S_FREE'
#define S_FREE(n) free(n); n = NULL;
                  ^
emitter.c:213:9: warning: implicitly declaring library function 'realloc' with type 'void *(void *, unsigned long)' [-Wimplicit-function-declaration]
        S_REALLOC_N( e->levels, SyckLevel, e->lvl_capa );
        ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
emitter.c:213:9: note: include the header <stdlib.h> or explicitly provide a declaration for 'realloc'
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
emitter.c:835:36: warning: passing 'unsigned char *' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
            syck_emitter_write( e, src + i, 1 );
                                   ^~~~~~~
emitter.c:290:49: note: passing argument to parameter 'str' here
syck_emitter_write( SyckEmitter *e, const char *str, long len )
                                                ^
4 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   gram.c
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   handler.c
handler.c:93:17: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
                S_FREE( a );
                ^
./syck.h:82:19: note: expanded from macro 'S_FREE'
#define S_FREE(n) free(n); n = NULL;
                  ^
handler.c:149:17: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
    char *uri = S_ALLOC_N( char, type_len + 14 );
                ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
handler.c:149:17: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
2 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   implicit.c
implicit.re:36:31: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
    if ( n->type_id != NULL ) S_FREE( n->type_id );
                              ^
./syck.h:82:19: note: expanded from macro 'S_FREE'
#define S_FREE(n) free(n); n = NULL;
                  ^
implicit.re:178:21: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
        {   char *domain = S_ALLOC_N( char, ( YYCURSOR - type_id ) + 15 );
                           ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
implicit.re:178:21: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
2 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   node.c
node.c:20:9: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
    s = S_ALLOC( SyckNode );
        ^
./syck.h:80:30: note: expanded from macro 'S_ALLOC'
#define S_ALLOC(type) (type*)malloc(sizeof(type))
                             ^
node.c:20:9: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:80:30: note: expanded from macro 'S_ALLOC'
#define S_ALLOC(type) (type*)malloc(sizeof(type))
                             ^
node.c:36:9: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
        S_FREE( n->type_id );
        ^
./syck.h:82:19: note: expanded from macro 'S_FREE'
#define S_FREE(n) free(n); n = NULL;
                  ^
node.c:211:9: warning: implicitly declaring library function 'realloc' with type 'void *(void *, unsigned long)' [-Wimplicit-function-declaration]
        S_REALLOC_N( m->keys, SYMID, m->capa );
        ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
node.c:211:9: note: include the header <stdlib.h> or explicitly provide a declaration for 'realloc'
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
3 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   syck_.c
syck_.c:26:5: warning: implicitly declaring library function 'abort' with type 'void (void) __attribute__((noreturn))' [-Wimplicit-function-declaration]
    abort();
    ^
syck_.c:26:5: note: include the header <stdlib.h> or explicitly provide a declaration for 'abort'
syck_.c:35:17: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
    char *new = S_ALLOC_N( char, len + 1 );
                ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
syck_.c:35:17: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
syck_.c:244:5: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
    S_FREE( p->levels[0].domain );
    ^
./syck.h:82:19: note: expanded from macro 'S_FREE'
#define S_FREE(n) free(n); n = NULL;
                  ^
syck_.c:366:9: warning: implicitly declaring library function 'realloc' with type 'void *(void *, unsigned long)' [-Wimplicit-function-declaration]
        S_REALLOC_N( p->levels, SyckLevel, p->lvl_capa );
        ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
syck_.c:366:9: note: include the header <stdlib.h> or explicitly provide a declaration for 'realloc'
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
4 warnings generated.
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   syck_st.c
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   token.c
token.re:528:22: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned long)' [-Wimplicit-function-declaration]
        char *qstr = S_ALLOC_N( char, qcapa );
                     ^
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
token.re:528:22: note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
./syck.h:79:34: note: expanded from macro 'S_ALLOC_N'
#define S_ALLOC_N(type,n) (type*)malloc(sizeof(type)*(n))
                                 ^
token.re:565:29: warning: implicitly declaring library function 'realloc' with type 'void *(void *, unsigned long)' [-Wimplicit-function-declaration]
                            QUOTECAT(qstr, qcapa, qidx, ' ');
                            ^
token.re:94:17: note: expanded from macro 'QUOTECAT'
                S_REALLOC_N( s, char, c ); \
                ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
token.re:565:29: note: include the header <stdlib.h> or explicitly provide a declaration for 'realloc'
token.re:94:17: note: expanded from macro 'QUOTECAT'
                S_REALLOC_N( s, char, c ); \
                ^
./syck.h:81:46: note: expanded from macro 'S_REALLOC_N'
#define S_REALLOC_N(var,type,n) (var)=(type*)realloc((char*)(var),sizeof(type)*(n))
                                             ^
token.re:789:30: warning: implicit declaration of function 'strtol' is invalid in C99 [-Wimplicit-function-declaration]
                        ch = strtol( chr_text, NULL, 16 );
                             ^
token.re:790:25: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration]
                        free( chr_text );
                        ^
4 warnings generated.
"/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin/perl" "/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/ExtUtils/xsubpp"  -typemap '/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/ExtUtils/typemap'  Syck.xs > Syck.xsc
mv Syck.xsc Syck.c
cc -c  -I. -fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV -O3   -DVERSION=\"1.31\" -DXS_VERSION=\"1.31\"  "-I/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE"   Syck.c
In file included from Syck.xs:5:
./perl_syck.h:838:13: warning: 15 enumeration values not handled in switch: 'SVt_NULL', 'SVt_IV', 'SVt_NV'... [-Wswitch]
    switch (SvTYPE(sv)) {
            ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
./perl_syck.h:838:13: note: add missing switch cases
    switch (SvTYPE(sv)) {
            ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
In file included from Syck.xs:8:
./perl_syck.h:838:13: warning: 15 enumeration values not handled in switch: 'SVt_NULL', 'SVt_IV', 'SVt_NV'... [-Wswitch]
    switch (SvTYPE(sv)) {
            ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
./perl_syck.h:838:13: note: add missing switch cases
    switch (SvTYPE(sv)) {
            ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
In file included from Syck.xs:8:
./perl_syck.h:910:17: warning: 11 enumeration values not handled in switch: 'SVt_NULL', 'SVt_IV', 'SVt_NV'... [-Wswitch]
        switch (SvTYPE(SvRV(sv))) {
                ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
./perl_syck.h:910:17: note: add missing switch cases
        switch (SvTYPE(SvRV(sv))) {
                ^
/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level/CORE/sv.h:352:20: note: expanded from macro 'SvTYPE'
#define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
                        ^
3 warnings generated.
rm -f blib/arch/auto/YAML/Syck/Syck.bundle
cc  -mmacosx-version-min=10.12 -bundle -undefined dynamic_lookup -L/opt/local/lib -fstack-protector-strong  bytecode.o emitter.o gram.o handler.o implicit.o node.o syck_.o syck_st.o token.o Syck.o  -o blib/arch/auto/YAML/Syck/Syck.bundle  \
	      \
	  
chmod 755 blib/arch/auto/YAML/Syck/Syck.bundle
Manifying 2 pod documents
"/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Syck.bs blib/arch/auto/YAML/Syck/Syck.bs 644
PERL_DL_NONLAZY=1 "/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/1-basic.t ................. ok
t/11-loadfile.t ............. ok
t/12-dumpfile.t ............. ok
t/4-perl_tag_scheme.t ....... ok
t/3-objects.t ............... ok
t/json-circular-ref.t ....... ok
t/2-scalars.t ............... ok
t/json-crlf.t ............... ok
t/json-dumpinto.t ........... ok
t/json-basic.t .............. ok
t/json-empty.t .............. ok
t/json-indent.t ............. ok
t/json-newline.t ............ ok
t/json-minus.t .............. ok
t/json-loadfile.t ........... ok
t/json-null.t ............... ok
t/json-numbers.t ............ ok
t/json-refs.t ............... ok
t/leak.t .................... ok
t/json-singlequote.t ........ ok
t/manifest.t ................ skipped: Author tests not required for installation
t/load-blessed.t ............ ok
t/yaml-alias.t .............. ok
t/meta.t .................... ok
t/yaml-dumpinto.t ........... ok
t/yaml-blessed-ref.t ........ ok
t/yaml-implicit-warnings.t .. ok
t/yaml-str-colon-first.t .... ok
t/yaml-tie.t ................ ok
t/yaml-utf.t ................ ok
All tests successful.
Files=30, Tests=620,  1 wallclock secs ( 0.18 usr  0.09 sys +  3.02 cusr  0.47 csys =  3.76 CPU)
Result: PASS

------------------------------
PREREQUISITES
------------------------------

Prerequisite modules loaded:

    No requirements found

------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------

Environment variables:

    HARNESS_OPTIONS = j6:c
    LANG = en_CA.UTF-8
    NO_NETWORK_TESTING = 1
    PATH = /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin:/Volumes/amaretto/Users/ether/bin:/Volumes/amaretto/Users/ether/git/misc/install/jaeger/bin:/Volumes/amaretto/Users/ether/git/misc/install/generic/bin:/opt/local/bin:/opt/local/sbin:/Volumes/amaretto/Users/ether/git/git-hub/lib:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/share/git-core/contrib/workdir
    PERL5LIB = /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/lib/perl5
    PERLBREW_HOME = /Volumes/amaretto/Users/ether/.perlbrew
    PERLBREW_LIB = std
    PERLBREW_MANPATH = /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/man:/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/man
    PERLBREW_PATH = /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin
    PERLBREW_PERL = 28.1
    PERLBREW_ROOT = /Volumes/amaretto/Users/ether/perl5/perlbrew
    PERLBREW_SHELLRC_VERSION = 0.86
    PERLBREW_VERSION = 0.86
    PERLDOC = -oman
    PERLDOC_PAGER = less -sicMr
    PERL_AUTOINSTALL_PREFER_CPAN = 1
    PERL_INSTALL_QUIET = 1
    PERL_LOCAL_LIB_ROOT = /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std
    PERL_MB_OPT = --install_base /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std
    PERL_MM_OPT = INSTALL_BASE=/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std
    PERL_USE_UNSAFE_INC = 0
    SHELL = /bin/bash
    TERM = xterm-color

Perl special variables (and OS-specific diagnostics, for MSWin32):

    EGID = 20 20 12 61 79 80 81 98 701 33 100 204 395 398 399
    EUID = 502
    EXECUTABLE_NAME = /Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin/perl
    GID = 20 20 12 61 79 80 81 98 701 33 100 204 395 398 399
    UID = 502

Perl module toolchain versions installed:

    Module              Have    
    ------------------- --------
    CPAN                2.20    
    CPAN::Meta          2.150010
    Cwd                 3.74    
    ExtUtils::CBuilder  0.280230
    ExtUtils::Command   7.34    
    ExtUtils::Install   2.14    
    ExtUtils::MakeMaker 7.34    
    ExtUtils::Manifest  1.70    
    ExtUtils::ParseXS   3.39    
    File::Spec          3.74    
    JSON                4.02    
    JSON::PP            2.97001 
    Module::Build       0.4224  
    Module::Signature   n/a     
    Parse::CPAN::Meta   2.150010
    Test::Harness       3.42    
    Test::More          1.302141
    YAML                1.27    
    YAML::Syck          1.31    
    version             0.9923  


--

Summary of my perl5 (revision 5 version 28 subversion 1) configuration:
   
  Platform:
    osname=darwin
    osvers=16.7.0
    archname=darwin-2level
    uname='darwin jaeger 16.7.0 darwin kernel version 16.7.0: wed oct 10 20:06:00 pdt 2018; root:xnu-3789.73.24~1release_x86_64 x86_64 '
    config_args='-de -Dprefix=/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1 -Dman1dir=none -Dman3dir=none -Aeval:scriptdir=/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin'
    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.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include -DPERL_USE_SAFE_PUTENV'
    optimize='-O3'
    cppflags='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.12 -fno-strict-aliasing -pipe -fstack-protector-strong -I/opt/local/include'
    ccversion=''
    gccversion='4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)'
    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.12 -fstack-protector-strong -L/opt/local/lib'
    libpth=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib /usr/lib /opt/local/lib
    libs=-lpthread -lgdbm -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.12 -bundle -undefined dynamic_lookup -L/opt/local/lib -fstack-protector-strong'


Characteristics of this binary (from libperl): 
  Compile-time options:
    HAS_TIMES
    PERLIO_LAYERS
    PERL_COPY_ON_WRITE
    PERL_DONT_CREATE_GVSV
    PERL_MALLOC_WRAP
    PERL_OP_PARENT
    PERL_PRESERVE_IVUV
    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:
    Devel::PatchPerl 1.52
  Built under darwin
  Compiled at Dec  1 2018 11:10:45
  %ENV:
    PERL5LIB="/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/lib/perl5"
    PERLBREW_HOME="/Volumes/amaretto/Users/ether/.perlbrew"
    PERLBREW_LIB="std"
    PERLBREW_MANPATH="/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/man:/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/man"
    PERLBREW_PATH="/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/bin:/Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/bin"
    PERLBREW_PERL="28.1"
    PERLBREW_ROOT="/Volumes/amaretto/Users/ether/perl5/perlbrew"
    PERLBREW_SHELLRC_VERSION="0.86"
    PERLBREW_VERSION="0.86"
    PERLDOC="-oman"
    PERLDOC_PAGER="less -sicMr"
    PERL_AUTOINSTALL_PREFER_CPAN="1"
    PERL_INSTALL_QUIET="1"
    PERL_LOCAL_LIB_ROOT="/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std"
    PERL_MB_OPT="--install_base /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std"
    PERL_MM_OPT="INSTALL_BASE=/Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std"
    PERL_USE_UNSAFE_INC="0"
  @INC:
    /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/lib/perl5/darwin-2level
    /Volumes/amaretto/Users/ether/.perlbrew/libs/28.1@std/lib/perl5
    /Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/site_perl/5.28.1/darwin-2level
    /Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/site_perl/5.28.1
    /Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1/darwin-2level
    /Volumes/amaretto/Users/ether/perl5/perlbrew/perls/28.1/lib/5.28.1