Re: configure.pl failed under cygwin, build failed on win32

2003-08-14 Thread K Stol
- Original Message - From: Jonathan Worthington [EMAIL PROTECTED] To: K Stol [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, August 10, 2003 6:08 AM Subject: Re: configure.pl failed under cygwin, build failed on win32 Hi, I just picked up a fresh copy with cvs. Under cygwin

Re: configure.pl failed under cygwin, build failed on win32

2003-08-14 Thread Jonathan Worthington
Hi, I just picked up a fresh copy with cvs. Under cygwin, ./Configure.pl fails with the message: Determining some sizes...Linker failed (see test.ldo) at lib/Parrot/Configure/Step.pm line 147 So I tried under win32 (MS VS 6.0). Now, Configure.pl is ok, but nmake ends with a fatal error.

Re: configure.pl failed under cygwin, build failed on win32

2003-08-14 Thread Vladimir Lipskiy
Under cygwin, ./Configure.pl fails with the message: Determining some sizes...Linker failed (see test.ldo) at lib/Parrot/Configure/Step.pm line Try to add this line link = 'gcc', to config/init/hints/cygwin.pl As a result, it must be in the following way: Configure::Data-set( link =

Re: configure.pl failed under cygwin, build failed on win32

2003-08-14 Thread Vladimir Lipskiy
It fails here: system($link $linkflags test$o ${cc_exe_out}test$exe $libs test.ldo $redir_err) and die Linker failed (see test.ldo); Most likely one of the variables($link, $linkflags and so forth) isn't set up or is set up incorrectly by this step. Therefore, could you send me a dump of your

Re: configure.pl failed under cygwin, build failed on win32

2003-08-12 Thread K Stol
- Original Message - From: Vladimir Lipskiy [EMAIL PROTECTED] To: perl6-internals [EMAIL PROTECTED]; K Stol [EMAIL PROTECTED] Sent: Sunday, August 10, 2003 9:32 AM Subject: Re: configure.pl failed under cygwin, build failed on win32 # A note about building shared libraries: Perl5 uses

Re: configure.pl failed under cygwin, build failed on win32

2003-08-11 Thread Vladimir Lipskiy
# A note about building shared libraries: Perl5 uses the 'ld2' tool, which # is installed as part of the perl5 installation. So far, it appears # parrot can get by with simply using gcc -shared, so we override the # perl5 Configure defaults and use 'gcc -shared' instead of 'ld2'. # If this later

configure.pl failed under cygwin, build failed on win32

2003-08-10 Thread K Stol
hello, I just picked up a fresh copy with cvs. Under cygwin, ./Configure.pl fails with the message: Determining some sizes...Linker failed (see test.ldo) at lib/Parrot/Configure/Step.pm line 147 So I tried under win32 (MS VS 6.0). Now, Configure.pl is ok, but nmake ends with a fatal error. I

Re: configure.pl failed under cygwin, build failed on win32

2003-08-10 Thread Vladimir Lipskiy
Under cygwin, ./Configure.pl fails with the message: Determining some sizes...Linker failed (see test.ldo) at lib/Parrot/Configure/Step.pm line Try to add this line link = 'gcc', to config/init/hints/cygwin.pl As a result, it must be in the following way: Configure::Data-set(