in reply to Re: Building perl from source
in thread Building perl from source

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

Replies are listed 'Best First'.
Re^3: Building perl from source
by Anonymous Monk on Sep 10, 2019 at 22:36 UTC
    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