-
-
13 May 2003 10:32:35 UTC
- Distribution: Solaris-PerlGcc
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (3)
- Testers
- Kwalitee
- License: unknown
- Activity
24 month- Tools
- Download (332.67KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
perlgcc - Compile perl modules using gcc.
SYNOPSIS
perlgcc Makefile.PL; make
DESCRIPTION
When perl is built it saves the name of the compiler and any compiler flags in its configuration files, and then uses these saved settings when any additional modules are built. The perl 5.005_03 and perl 5.6.1 shipped with Solaris 8, 9 and 10 were built with the Forte compilers rather than gcc.
If add-on modules are built with the Forte compilers, everyting works as expected. However, if gcc is used to build add-on modules, the saved configuration is incorrect as it assumes that the Forte compiler will be present.
This command provides a set of perl configuration files that are configured to use gcc as the compiler rather than the Forte compiler. The default configuration files are not modified, instead a replacement set of files are transparently substituted for the duration of the perlgcc command.
Instead of invoking
perl Makefile.PL
to generate the makefile needed to compile a module,perlgcc Makefile.PL
should be used instead. All command-line arguments to perlgcc are passed unmodified to/usr/perl5/5.6.1/bin/perl
.If you use the CPAN.pm module, instead of invoking
perl -MCPAN -e shell
, you should useperlgcc -MCPAN -e shell
instead, and use as normal.ENVIRONMENT VARIABLES
PERL5LIB
This is modified to point to the location of the replacement perl configuration files.
LICENSING
This module is released under the perl Artistic license, see the file LICENSE in the distrubution tarball.
SEE ALSO
perl(1)
,perlrun(1)
.Module Install Instructions
To install ExtUtils::MakeMaker, copy and paste the appropriate command in to your terminal.
cpanm ExtUtils::MakeMaker
perl -MCPAN -e shell install ExtUtils::MakeMaker
For more information on module installation, please visit the detailed CPAN module installation guide.