Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: perlbrew/cpanm on 64 bit Ubuntu

by syphilis (Archbishop)
on Aug 04, 2013 at 05:44 UTC ( [id://1047767]=note: print w/replies, xml ) Need Help??


in reply to Re^2: perlbrew/cpanm on 64 bit Ubuntu
in thread perlbrew/cpanm on 64 bit Ubuntu

I don't think it is talking about the cpanm command line

That's right - it's talking about the perl Makefile.PL command line .... which is the command you would run if you wanted to build XML::LibXML "manually".
In that case you would cd to the top-level directory in the XML-LibXML source and run something like:
perl Makefile.PL INC="-I/usr/include/x86_64-linux-gnu" LIBS="-L/usr/li +b/x86_64-linux-gnu -lxml2 -lz -lm"
You would then follow that with make test then (assuming make test went satisfactorily) make install

I don't know how you'd incorporate that command line requirement into the automated cpanm procedure. (I'd just do it "manually".)

Alternatively, adding /usr/include/x86_64-linux-gnu to the CPATH environment variable and adding /usr/lib/x86_64-linux-gnu to the LIBRARY_PATH environment variable might also work - at least if you're using a gcc compiler:
export CPATH=/usr/include/x86_64-linux-gnu:$CPATH export LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:$LIBRARY_PATH
Cheers,
Rob

Replies are listed 'Best First'.
Re^4: perlbrew/cpanm on 64 bit Ubuntu
by szabgab (Priest) on Nov 29, 2013 at 05:12 UTC
    cpanm XML::LibXML --configure-args 'INC="-I/usr/include/x86_64-linux-g +nu" LIBS="-L/usr/lib/x86_64-linux-gnu -lxml2 -lz -lm" '
    tells cpanm to pass those parameters to perl Makefile.PL of XML::LibXML but not to its prereqs.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1047767]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (8)
As of 2024-03-28 12:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found