On 03/02/04 19:13, Doug Brann wrote: > Dear news group. > > I am unable to build my xs code (or indeed even downloaded CPAN perl modules). > > I am running Windows XP and cygwin. I am using ActiveState perl 5.8.3 > > When I type > perl Makefile.PL everything is ok, > then I type > > make test > and I get the response: > > Makefile:338: *** multiple target patterns. Stop. > > what am I doing wrong??
You have to either use cygwin perl with the cygwin gcc compiler and tools or use ActiveState perl and build with the Microsoft Visual C 6.0 compiler, or you can compile perl yourself with any of the supported compilers on Windoze (Microsoft, Borland, MinGW, Cygwin). I.E. you have to use the tools that were used to compile perl when you build extensions (mostly). Regards, Randy.