in reply to Building perl from source

Some kind of "64int" option ... use64bits

Replies are listed 'Best First'.
Re^2: Building perl from source
by Tux (Canon) on Sep 10, 2019 at 12:06 UTC

    Why give a link to the docs and than give a nonexisting example?

    $ perl -V:use.*64.* use64bitall='define'; use64bitint='define';

    Enjoy, Have FUN! H.Merijn
      Its in the docs i linked. No perl on me mobile

        The doc you mentioned is about the variables and preprocessor defines that are available after you perl has been built. The use64bit.U you see there is the name of the metaunit that is used in Configure during configuration to set the variables available through use Config; runtime.

        To see the arguments to use on the command-line, this documentation won't help you at all. In fact, https://perldoc.perl.org/ is not showing you those docs at all :/

        Worse, I did not see the wanted docs on https://dev.perl.org either.

        So, read this instead: INSTALL.


        Enjoy, Have FUN! H.Merijn