Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Inline::C and Packaged Distributions

by diotalevi (Canon)
on Sep 29, 2005 at 20:20 UTC ( [id://496228]=note: print w/replies, xml ) Need Help??


in reply to Inline::C and Packaged Distributions

Start by searching for anything demerphq has written about Inline::C. He's figured out a good formula. It seems to run thusly: use Inline::C to generate your XS and then include *that* but don't have your distribution code use Inline::C. The idea here is that you can then include Windows as a target and your users won't need to have a C compiler handy - you can have precompiled it for them. If you give a compiler-less Windows user an Inline::C program, you've left them SOL.

Replies are listed 'Best First'.
Re^2: Inline::C and Packaged Distributions
by demerphq (Chancellor) on Sep 30, 2005 at 20:34 UTC

    Yep, thats pretty much what I do. I tend to do Inline::C only as a dev stage because I found using Inline::C for installable modules to be unreliable. Inline::MakeMaker doesnt seem to do the job very well. But the XS produced by Inline::C will install fine, although there are a few nits, but they are easy to work around.

    Another reason in favour of distrubuting XS and not the Inline original is that places like ActiveState can then make a PPM that will install fine on Windows boxes that dont have compilers handy. Being able to get somebody else to provide binaries for you is pretty handy.

    A last minor comment: there is actually nothing but convention (and respect for the mirrors) preventing you from including the required precompiled binaries for the platforms where they might be needed directly in the CPAN distro. So for instance you can build a CPAN distro that contains only the .dll and not the XS. Of course this has the disadvantage that if the user is not on the version of perl that you built the binary for that it wont work. But still its an option worth considering, especially if you are releasing inhouse or whatever.

    ---
    $world=~s/war/peace/g

      I'm curious about the mechanics of your procedure. It sounds like, right before packaging your distribution you must remove or comment-out the Inline::C-related code from your modules. Have I got this right? If so, have you automatated this step?

      the lowliest monk

        Yeah, I comment out the inline stuff and do it all by hand. And no i havent automated the process as Ive not needed to use it that often. Basically the idea is to use Inline as a bridge to help you grok XS, and once thats done you just use XS because its easier to distribute.

        IOW: Inline::C is easier to develop, but XS is easier to deploy.

        ---
        $world=~s/war/peace/g

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (4)
As of 2024-03-29 14:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found