Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
204 views

What tools can help build an XS project?

I've recently started learning XS using perlxstut and the tutorial suggests that I create my module using the old h2xs tool to create an ExtUtils::MakeMaker-based project. However for pure Perl ...
4
votes
2answers
530 views

How do I override perl's compilation flags when building modules?

When building a Perl module ExtUtils::MakeMaker uses the flags defined in Config.pm (see perldoc Config) for values such as ccflags and ldflags. How do I override theses values (short of editing the ...
3
votes
2answers
85 views

How can I change the directory holding the test files in ExtUtils::Makemaker?

How can you change the default tests path in Makefile.PL from the default value t/*.t? There's an attribute mentioned in the documentation but it does not work. Anybody know how to that? Thanks!
1
vote
1answer
65 views

How to change default CFLAGS for MakeMaker

How do I get Perl MakeMaker to change the default value for CFLAGS that it inserts into Makefiles? Based on this post, I tried this: export CFLAGS=... then inside cpan, I confirmed it with ! ...
1
vote
1answer
43 views

What is the Module::Build equivalent to ExtUils::MakeMaker INST_SCRIPT?

I want to convert a project from use of ExtUtils::MakeMaker to Module::Build. As the Makefile.PL is mostly default and Module::Build::Convert did not work for me (see below) I want to convert it ...
1
vote
1answer
94 views

ExtUtils::MakeMaker including external *.mk and using defines within *.mk file for LIBS and INC parameters in WriteMakefile

I have a top level defines.mk file which lists certain directories and C libraries to include depending on the project like so. KERNEL_LIB = -lkdev DRIVER_LIB = -ldriver -lutil -linit $(KERNEL_LIB) ...
1
vote
3answers
295 views

How do I add multiple Perl modules to Makefile.PL?

Looking for some insight on how to add multiple PM files to the MakeMaker script? I see this documentation and all the examples look like one file is added, how do I add multiple files? use ...
1
vote
4answers
454 views

How do I start a new Perl module distribution?

I'm trying to set up a large-ish project, written in Perl. The IBM MakeMaker tutorial has been very helpful so far, but I don't understand how to link all the modules into the main program. In my ...
0
votes
3answers
691 views

Can't install new Perl modules using MakeMaker

Whether I use CPAN or install manually, every time I try to run "perl Makefile.PL" to build a makefile for a Perl module, I get the following error: ERROR from evaluation of Makefile.PL: Can't locate ...
0
votes
2answers
134 views

MakeMaker: make test vs make dist

Let's say I've created a directory using module-starter, and written several additional modules and tests since. make test would then run all tests in t/ on all modules in lib/, however make dist ...