perl library for C++

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peng Yu

    perl library for C++

    Hi,

    I'm wondering what is best perl library for C++.

    I found http://www.perl.org/tpc/1998/User_Applicatio ns/When%20the%20ST L%20Isn't%20Eno ugh/paper.html

    But that is too old. I'm wondering what is the most popular one now.

    Thanks,
    Peng
  • Ivan Novick

    #2
    Re: perl library for C++

    On Jul 2, 11:50 am, Peng Yu <PengYu...@gmai l.comwrote:
    Hi,
    >
    I'm wondering what is best perl library for C++.
    >
    I foundhttp://www.perl.org/tpc/1998/User_Applicatio ns/When%20the%20ST L%20Isn...
    >
    But that is too old. I'm wondering what is the most popular one now.
    >
    Thanks,
    Peng
    What is it you want to do: http://en.wikipedia.org/wiki/XS_(Perl) is a
    standard package included with perl for interfacing with C/C++.

    Ivan Novick

    Comment

    • Sherman Pendley

      #3
      Re: perl library for C++

      Peng Yu <PengYu.UT@gmai l.comwrites:
      I'm wondering what is best perl library for C++.
      For what? Embedding Perl in your C++ app, or extending Perl with an XS
      module written in C++? For the former, there's only one libperl, so it
      is the "best" by default.

      For the latter, the Inline:: set of modules is pretty popular, and
      require a bit less grunt work than the traditional ExtUtils::MakeM aker
      approach. Have a look at Inline::CPP:

      <http://search.cpan.org/~neilw/Inline-CPP-0.25/lib/Inline/CPP.pod>

      sherm--

      --
      My blog: http://shermspace.blogspot.com
      Cocoa programming in Perl: http://camelbones.sourceforge.net

      Comment

      • Peng Yu

        #4
        Re: perl library for C++

        On Jul 2, 2:06 pm, Sherman Pendley <spamt...@dot-app.orgwrote:
        Peng Yu <PengYu...@gmai l.comwrites:
        I'm wondering what is best perl library for C++.
        >
        For what? Embedding Perl in your C++ app, or extending Perl with an XS
        module written in C++? For the former, there's only one libperl, so it
        is the "best" by default.
        >
        For the latter, the Inline:: set of modules is pretty popular, and
        require a bit less grunt work than the traditional ExtUtils::MakeM aker
        approach. Have a look at Inline::CPP:
        >
        <http://search.cpan.org/~neilw/Inline-CPP-0.25/lib/Inline/CPP.pod>
        I want to embed perl in my C++ app. I couldn't find any more recent
        webpage for libperl than the one in my OP. Would you please let me
        know whether this library is updated and where to download them?

        Thanks,
        Peng

        Comment

        • Sherman Pendley

          #5
          Re: perl library for C++

          Peng Yu <PengYu.UT@gmai l.comwrites:
          I want to embed perl in my C++ app. I couldn't find any more recent
          webpage for libperl than the one in my OP. Would you please let me
          know whether this library is updated and where to download them?
          It's part of Perl. Have a look at "man perlembed" on any system that
          has Perl installed.

          sherm--

          --
          My blog: http://shermspace.blogspot.com
          Cocoa programming in Perl: http://camelbones.sourceforge.net

          Comment

          Working...