This is an old post, but the real problem with the standalone compile you tried to do is that you used the wrong command, because you were mislead by Module::Build. When running ./Build, it prints out a command line it is using to compile the c files, but it prints it out incorrectly. When it runs the command, it bypassed the shell, which means that the quotes it shows are actually passed along to cc. As a shell command, it would be running the equivalent of:

cc -I/System/Library/Perl/5.18/darwin-thread-multi-2level/CORE "-DXS_V +ERSION=\"0.011\"" "-DVERSION=\"0.011\"" -c -arch x86_64 -arch i386 -g + -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -fstack-protect +or -Os -o lib/PerlIO/Layers.o lib/PerlIO/Layers.c

This means that the errors you saw in your standalone compile don't reflect whatever errors there were in a normal compile of the module. Any further diagnosis would require the output of a normal ./Build.


In reply to Re: PerlIO::Layers 0.011 fails to build in macOS 10.13.3 by Haarg
in thread PerlIO::Layers 0.011 fails to build in macOS 10.13.3 by perlboy_emeritus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.