The makemaker tag has no wiki summary.
1
vote
0answers
42 views
How to specify destination directory in Makefile.PL
I am using ExtUtils::MakeMaker; to generate makefile. It runs gcc on my cpp files but copies my object files to current directory. How do i specify the destination folder where my .o files will be ...
2
votes
0answers
26 views
Invoking gcc -pthread under ExtUtils::MakeMaker
What's the right way to specify compilation and linking with -pthread (not -lpthread) in a Makefile.PL?
It's my understanding that gcc ought to be invoked with -pthread when building against ...
2
votes
2answers
75 views
Statically Linking DBD::Pg (against libpq.so) but Dynamically Against Perl?
I'm trying to build DBD::Pg on a linux host via the Makefile.PL; my requirements are such that I must be able to dynamically link against perl, but statically link against libpq.so (since it may not ...
1
vote
1answer
41 views
Man pages with MakeMaker
I wrote some man pages which I'd like to install from a MakeMaker.
I'd like to control where they're installed using environment variables like INSTALLSITEMAN1DIR* environment variables.
Where in ...
1
vote
1answer
112 views
Install scripts in alternate directory using ExtUtils::MakeMaker
I have an ExtUtils::MakeMaker makefile that installs two scripts script1 and script2. I do this using the line
EXE_FILES => ['usr/sbin/script1',
'usr/sbin/script2', ],
in ...
4
votes
2answers
112 views
How to specify test prerequisites in the ExtUtils::MakeMaker Makefile.PL
PREREQ_PM specifies the runtime prerequisites, but how to specify which modules are required to run the test cases?
Should I use BUILD_REQUIRES for this?
0
votes
1answer
348 views
XCode 4.x do not include Perl MakeMaker. brew failed - Asks for Perl file.
I am trying to install node.js following instructions.
Just installed Homebrew. I tried this.
brew install git -v
But get this error message: make[2]: * No rule to make target '...config.h', ...
1
vote
1answer
139 views
How to tell MakeMaker to build XS files in a subdirectory?
I've got a largish project to which I've just added some XS code, and I'd like to keep the top-level directory as clean as possible. I want to put the XS file and typemap et al. into a subdirectory, ...
1
vote
1answer
678 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
88 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 ...
0
votes
3answers
2k 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
280 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 ...
1
vote
1answer
160 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)
...
6
votes
3answers
399 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 ...
1
vote
3answers
461 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 ...
4
votes
2answers
947 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
4answers
1k 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 ...
3
votes
2answers
92 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!