Jaen Saul:
# I sent a post about the brokenness of Parrot on Windows 5
# days ago.... still
# no reaction... not one reply, positive or negative. Are you
# guys blind?
# I'm removing my own version of makefile.in and so the Win32
# tinderbox will
# fail builds (like it has most of the time).
# Please fix the problems I mentioned earlier!


cl -nologo -O1 -MD -DNDEBUG -DWIN32 -D_CONSOLE -DNO_STRICT -DHAVE_DES_FC
RYPT  -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DPERL_MSVCRT_READFIX 
  -I./include -o parrot.exe global_setup.obj interpreter.obj parrot.obj
register.obj  core_ops.obj memory.obj packfile.obj stacks.obj string.obj
encoding.obj  chartype.obj runops_cores.obj trace.obj pmc.obj key.obj
encodings/singlebyte.obj encodings/utf8.obj encodings/utf16.obj
encodings/utf32.obj chartypes/unicode.obj chartypes/usascii.obj
resources.obj  platform.obj classes/default.obj classes/perlint.obj
classes/perlstring.obj  classes/perlnum.obj classes/perlundef.obj
test_main.obj oldnames.lib kernel32.lib user32.lib gdi32.lib
winspool.lib  comdlg32.lib advapi32.lib shell32.lib ole32.lib
oleaut32.lib  netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib
version.lib odbc32.lib odbccp32.lib msvcrt.lib
LINK : fatal error LNK1181: cannot open input file "classes/default.obj"
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Stop.
fatal error: The following error trigger was found: fatal error

It's probably compiling default.obj with the wrong switches--that was
the problem last time we got an error like this.  -o doesn't always work
on Win32; Microsoft has its own set of convoluted switches:

C:\>cl /?
....
                              -OUTPUT FILES-

/Fa[file] name assembly listing file     /Fo<file> name object file
/FA[sc] configure assembly listing       /Fp<file> name precompiled
header file
/Fd[file] name .PDB file                 /Fr[file] name source browser
file
/Fe<file> name executable file           /FR[file] name extended .SBR
file

--Brent Dax
[EMAIL PROTECTED]
Configure pumpking for Perl 6

"Nothing important happened today."
    --George III of England's diary entry for 4-Jul-1776

Reply via email to