in reply to Re: perl to exe
in thread perl to exe
All I can find is this on perldoc:
To create a shared library, the following steps must be performed: 1. Compile source modules with +z or +Z flag to create a .o module which contains Position-Independent Code (PIC). The linker will tell you in the next step if +Z was needed. (For gcc, the appropriate flag is -fpic or -fPIC.) 2. Link the shared library using the -b flag. If the code calls any functions in other system libraries (e.g., libm), it must be included on this line.
in Building Dynamic Extensions on HP-UX on the Platform specific page.
There might be more info in those sections.
HTH.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl to exe
by blazar (Canon) on Apr 28, 2005 at 12:54 UTC | |
by ghenry (Vicar) on Apr 28, 2005 at 13:12 UTC |