in reply to Re^4: Extending perl with C dynamic library.
in thread Extending perl with C dynamic library.
Do you know what is wrong ?
Yes. Basically, you have no idea what you are doing.
You are still trying to compile a main() function into a dll.
Dlls contain and export entrypoints that *must* be dynamically linked to and called from an executable (with a main()).
You can't use Inline C to build main programs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Extending perl with C dynamic library.
by Martin90 (Sexton) on Aug 20, 2013 at 19:52 UTC | |
by BrowserUk (Patriarch) on Aug 20, 2013 at 20:04 UTC | |
by Martin90 (Sexton) on Aug 24, 2013 at 12:16 UTC |