in reply to Re^2: Win32::API & 64-bit Windows
in thread Win32::API & 64-bit Windows
Inline C produces a dll. That can be packaged and distributed without having to be compiled by every user, but that's not how it is normally done. Though, if the module builds successfully on the AS build servers, then a PPM (binary distribution) becomes available, which satisfies the needs of those who don't have a C compiler.
One of the problems with producing a Win64 package, is that the MS C compiler no longer supports inline assembler. That means moving to using MASM64 to build the interface components, but the Perl build process doesn't support that; and it wouldn't work with non-MSC compiler suites. On top of that, MASM64 is barely functional and barely supported.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Win32::API & 64-bit Windows
by rovingeyes (Sexton) on Feb 24, 2010 at 22:19 UTC |