in reply to Re: Re: Re: Re: XS, MakeMaker, and all those other dreaded words
in thread XS, MakeMaker, and all those other dreaded words
WriteMakefile( NAME => 'Parrot::Interp', ... LIBS => [''], # e.g., '-lm', DEFINE => '', # e.g., '-DHAVE_SOMETHING', INC => '-I../../include', OBJECT => '../../libparrot.lib' );
That OBJECT line doesn't look right. I think that the libparrot.lib file should go in the LIBS line somehow (although as this is Win32 I'm somewhat out of my depth here :-).
If you have to specify the OBJECT key it needs to include the .obj that will get created from the .xs file. Right now you are telling the makefile builder to ignore any .obj files and only use ../../libparrot.lib.
Michael
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: XS, MakeMaker, and all those other dreaded words
by BrentDax (Hermit) on Mar 02, 2002 at 09:55 UTC |