The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "DynaLoader"

lib/LibZip/DynaLoader.pm River stage one • 1 direct dependent • 1 total dependent

GMPASSOS/LibZip-0.06 - 12 Dec 2004 00:25:09 UTC - Search in distribution

autodynaload - Dynamically locate shared objects on your system River stage zero No dependents

"autodynaload" allows you to specify the location of a shared object at runtime. It does so by overriding the proper DynaLoader methods and allowing for handlers to be registered. The subroutine argument can be either a coderef or scalar value, in wh...

PATL/autorequire-0.08 - 25 Feb 2007 20:33:27 UTC - Search in distribution

ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader River stage five • 21376 direct dependents • 32646 total dependents

Mkbootstrap typically gets called from an extension Makefile. There is no "*.bs" file supplied with the extension. Instead, there may be a *_BS file which has code for the special cases, like posix for berkeley db on the NeXT. This file will get pars...

BINGOS/ExtUtils-MakeMaker-7.70 - 26 Mar 2023 13:29:08 UTC - Search in distribution

lib/LibZip/MyZlib.pm River stage zero No dependents

GMPASSOS/tinyperl-1.0-580-win32 - 11 Dec 2002 03:49:31 UTC - Search in distribution

DynaLoader - Dynamically load C libraries into Perl code River stage five • 11292 direct dependents • 32664 total dependents

This document defines a standard generic interface to the dynamic linking mechanisms available on many platforms. Its primary purpose is to implement automatic dynamic loading of Perl modules. This document serves as both a specification for anyone w...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC - Search in distribution

DynaLoader::Functions - deconstructed dynamic C library loading River stage two • 3 direct dependents • 66 total dependents

This module provides a function-based interface to dynamic loading as used by Perl. Some details of dynamic loading are very platform-dependent, so correct use of these functions requires the programmer to be mindful of the space of platform variatio...

ZEFRAM/DynaLoader-Functions-0.004 - 06 Apr 2023 19:43:22 UTC - Search in distribution

if - use a Perl module if a condition holds River stage five • 226 direct dependents • 32646 total dependents

"use if" The "if" module is used to conditionally load another module. The construct: use if CONDITION, "MODULE", ARGUMENTS; ... will load "MODULE" only if "CONDITION" evaluates to true; it has no effect if "CONDITION" evaluates to false. (The module...

XSAWYERX/if-0.0608 - 19 Feb 2018 20:28:10 UTC - Search in distribution

dpan - create a DarkPAN from directories River stage one • 1 direct dependent • 1 total dependent

The "dpan" script takes a list of directories, indexes any Perl distributions it finds, and creates the PAUSE index files from what it finds. Afterward, you should be able to point a CPAN tool at the directory and install the distributions normally. ...

BDFOY/MyCPAN-App-DPAN-1.281 - 16 May 2018 18:29:58 UTC - Search in distribution

PDL::PP - Generate PDL routines from concise descriptions River stage three • 93 direct dependents • 101 total dependents

Now that you have some idea how to use "pp_def" to define new PDL functions it is time to explain the general syntax of "pp_def". "pp_def" takes as arguments first the name of the function you are defining and then a hash list that can contain variou...

ETJ/PDL-2.088 - 21 Apr 2024 23:58:19 UTC - Search in distribution

PAR - Perl Archive Toolkit River stage two • 7 direct dependents • 14 total dependents

This module lets you use special zip files, called Perl Archives, as libraries from which Perl modules can be loaded. It supports loading XS modules by overriding DynaLoader bootstrapping methods; it writes shared object file to a temporary file at t...

RSCHUPP/PAR-1.020 - 04 Mar 2024 10:49:29 UTC - Search in distribution
  • PAR::FAQ - Frequently Asked Questions about PAR
  • PAR::Tutorial - Cross-Platform Packaging and Deployment with PAR

ePerl - Embedded Perl 5 Language River stage zero No dependents

Abstract ePerl interprets an ASCII file bristled with Perl 5 program statements by evaluating the Perl 5 code while passing through the plain ASCII data. It can operate in various ways: As a stand-alone Unix filter or integrated Perl 5 module for gen...

RSE/eperl-2.2.13 - 10 Jul 1998 09:22:54 UTC - Search in distribution

FFI - Perl Foreign Function Interface based on libffi River stage zero No dependents

NOTE: Newer and better maintained FFI modules such as FFI::Platypus provide more functionality and so it is strongly recommend that you use one of them for new projects and even consider migrating to one of them for existing projects. This module pro...

PLICEASE/FFI-1.15 - 13 Dec 2019 15:22:59 UTC - Search in distribution

perlcc - generate executables from Perl programs River stage zero No dependents

perlcc creates standalone executables from Perl programs, using the code generators provided by the B module. At present, you may either create executable Perl bytecode, using the "-B" option, or generate and compile C files using the standard and 'o...

RURBAN/B-C-1.57 - 07 May 2019 12:10:41 UTC - Search in distribution
  • B::CC - Perl compiler's optimized C translation backend
  • B::C - Perl compiler's C backend

Inline - Write Perl Subroutines in Other Programming Languages River stage three • 66 direct dependents • 127 total dependents

The Inline module allows you to put source code from other programming languages directly "inline" in a Perl script or module. The code is automatically compiled as needed, and then loaded for immediate access from Perl. Inline saves you from the has...

INGY/Inline-0.86 - 09 Jan 2020 05:20:53 UTC - Search in distribution
  • Inline-API - How to bind a programming language to Perl using Inline.pm

dprofpp - display perl profile data River stage one • 3 direct dependents • 4 total dependents

The *dprofpp* command interprets profile data produced by a profiler, such as the Devel::DProf profiler. Dprofpp will read the file tmon.out and display the 15 subroutines which are using the most time. By default the times for each subroutine are gi...

FLORA/Devel-DProf-20110802.00 - 02 Aug 2011 13:30:00 UTC - Search in distribution

Overview River stage three • 155 direct dependents • 183 total dependents

This chapter should give you a general idea about what mod_perl 2.0 is and how it differs from mod_perl 1.0. This chapter presents the new features of Apache 2.0, Perl 5.6.0 -- 5.8.0 and their influence on mod_perl 2.0. The new MPM models from Apache...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC - Search in distribution

C::Blocks - embeding a fast C compiler directly into your Perl parser River stage one • 1 direct dependent • 2 total dependents

Perl is great, but sometimes I find myself reaching for C to do some of my computational heavy lifting. There are many tools that help you interface Perl and C. This module differs from most others out there by providing a way of inserting your C cod...

DCMERTENS/C-Blocks-0.42 - 09 Dec 2016 17:06:54 UTC - Search in distribution

Win32::OLE - OLE Automation extensions River stage two • 36 direct dependents • 38 total dependents

This module provides an interface to OLE Automation from Perl. OLE Automation brings VisualBasic like scripting capabilities and offers powerful extensibility and the ability to control many Win32 applications from Perl scripts. The Win32::OLE module...

JDB/Win32-OLE-0.1713 - 03 Apr 2021 04:13:13 UTC - Search in distribution

Prima::faq - Frequently asked questions about Prima River stage two • 17 direct dependents • 19 total dependents

The FAQ covers various topics around Prima, such as distribution, compilation, installation, and programming....

KARASIK/Prima-1.72 - 31 Jan 2024 09:42:17 UTC - Search in distribution

P5NCI - Perl extension for loading shared libraries and their functions River stage zero No dependents

P5NCI provides a bare-bones, stripped down, procedural interface to shared libraries installed on your system. It allows you to call functions in them without writing or compiling any glue code. I recommend using P5NCI::Library as it has a nicer inte...

CHROMATIC/P5NCI-0.31 - 12 Dec 2007 01:57:26 UTC - Search in distribution
67 results (0.089 seconds)