Mine is also 13.10.3077 (Visual Studio.Net 2003)

The \pal\win32\buildd.log (only *.log) file is quite short and I attach
it inline below

/Christer


Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation.  All rights reserved.

        mc.exe -U eventlog.mc
MC: Compiling eventlog.mc
        if not exist C:\Rotor\sscli\build\v1.x86chk.rotor\sdk\pal\inc
mkdir C:\Rotor\sscli\build\v1.x86chk.rotor\sdk\pal\inc
        copy C:\Rotor\sscli\pal\rotor_pal.h
C:\Rotor\sscli\build\v1.x86chk.rotor\sdk\pal\inc
        1 file(s) copied.

Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation.  All rights reserved.

        if not exist objd\rotor_x86 md objd\rotor_x86
    rc -l 409 -z "MS Sans Serif,Helv/MS Shell Dlg"   -r -fo
objd\rotor_x86\rotor_pal.tmp -D_X86_=1 -Di386=1  -DSTD_CALL
-DCONDITION_HANDLING=1 -DNT_UP=1  -DNT_INST=0 -DWIN32=100 -D_NT1X_=100
-DWINNT=1 -D_WIN32_WINNT=0x0500 -DWINVER=0x0500 -D_WIN32_IE=0x0400
-DWIN32_LEAN_AND_MEAN=1 -DDBG=1 -DDEVL=1 -DFPO=0    -D_DEBUG -D_DLL=1
-D_MT=1 -DNTMAKEENV -D_DEBUG -DDEBUGGING_SUPPORTED -DPROFILING_SUPPORTED
-DFUSION_SUPPORTED -DPLATFORM_WIN32 -DFEATURE_PAL -DUSE_CDECL_HELPERS
-DPAL_PORTABLE_SEH /DPAL_IMPLEMENTATION=1  -I.. -I.
-IC:\PROGRA~1\MICROS~2.NET\Vc7\PlatformSDK\include
-IC:\PROGRA~1\MICROS~2.NET\Vc7\Include -IC:C:\public\oak\inc
-IC:\Rotor\sscli\pal -IC:\Rotor\sscli\palrt\inc .\rotor_pal.rc
        if not exist objd\rotor_x86 md objd\rotor_x86
cl -nologo -Ii386\ -I. -I.. -I.
-IC:\PROGRA~1\MICROS~2.NET\Vc7\PlatformSDK\include
-IC:\PROGRA~1\MICROS~2.NET\Vc7\Include -IC:C:\public\oak\inc
-IC:\Rotor\sscli\pal -IC:\Rotor\sscli\palrt\inc -D_X86_=1 -Di386=1
-DSTD_CALL -DCONDITION_HANDLING=1 -DNT_UP=1  -DNT_INST=0 -DWIN32=100
-D_NT1X_=100 -DWINNT=1 -D_WIN32_WINNT=0x0500 -DWINVER=0x0500
-D_WIN32_IE=0x0400    -DWIN32_LEAN_AND_MEAN=1 -DDBG=1 -DDEVL=1 -DFPO=0
-D_DEBUG -D_DLL=1 -D_MT=1 -DNTMAKEENV -D_DEBUG -DDEBUGGING_SUPPORTED
-DPROFILING_SUPPORTED -DFUSION_SUPPORTED -DPLATFORM_WIN32 -DFEATURE_PAL
-DUSE_CDECL_HELPERS -DPAL_PORTABLE_SEH /DPAL_IMPLEMENTATION=1    /c /Zel
/Zp8 /Gy  /W3 /WX /Gz  /QIfdiv- /QIf /QI0f  /Gi /Gm /GX-  /GR- /GF  /Zi
/Od /Oi /GZ /G6 /Oy- /FdC:\Rotor\sscli\pal\win32\objd\rotor_x86\
/FRC:\Rotor\sscli\pal\win32\objd\rotor_x86\  /EHs- /EHa- /EHc-  /WX
/FIC:\Rotor\sscli\clr\src\inc\WarningControl.h  .\exception.c
exception.c
C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\PlatformSDK\Include\WinNT.h(2081) : error C2220: warning
treated as error - no object file generated
C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\PlatformSDK\Include\WinNT.h(2081) : warning C4391: 'DWORD
__readfsdword(DWORD)' : incorrect return type for intrinsic function,
expected 'unsigned long'
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Stop.


-----Original Message-----
From: Discussion of the Rotor Shared Source CLI implementation
[mailto:[EMAIL PROTECTED] On Behalf Of Barry Bond
Sent: Wednesday, June 30, 2004 5:58 PM
To: [EMAIL PROTECTED]
Subject: Re: [DOTNET-ROTOR] buildall.cmd fails on PAL

The PAL builds with "/W3 /WX" but you're seeing a level 4 warning, which
is interesting.  

>From your Rotor build window, can you run "cl" with no arguments and
send back the version number from its banner?  Mine reports 13.10.3077.
Could you also send along sscli\pal\win32\build*.log?  There might be a
hint in there about what is different on your new machine.

Thanks,
Barry



-----Original Message-----
From: Discussion of the Rotor Shared Source CLI implementation
[mailto:[EMAIL PROTECTED] On Behalf Of Christer Ljung
Sent: Wednesday, June 30, 2004 8:33 AM
To: [EMAIL PROTECTED]
Subject: [DOTNET-ROTOR] buildall.cmd fails on PAL

I've successfully built Rotor a couple of times, but now I've moved
Rotor to a brand new laptop and - bang - run into trouble at the very
beginning.

When running buildall.cmd (on Windows) it stops directly when building
PAL since the WX switch treats warnings as errors.


   --- Builing PAL ---

   C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\PlatformSDK\Include\WinNT.h(2081) : error C2220: warning
treated as error - no object file generated
   C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\PlatformSDK\Include\WinNT.h(2081) : warning C4391: 'DWORD
__readfsdword(DWORD)' : incorrect return type for intrinsic function,
expected 'unsigned long'


exceptions.c is the first file to be compiled in PAL. It includes
win32pal.h as the first thing, which eventually includes windows.h,
which in turn includes winnt.h, and then the compiler throws this error.

I've been looking into this now for an hour. Does anyone know what this
is and what's wrong?

Grateful for help!

/Christer 

===================================
This list is hosted by DevelopMentor(r)  http://www.develop.com
ASP.NET courses you may be interested in:

Guerrilla ASP.NET
15 March 2004, in Boston, MA
17 May 2004 in Torrance, CA
7 June 2004, London, UK

http://www.develop.com/courses/gaspdotnetls

View archives and manage your subscription(s) at
http://discuss.develop.com

===================================
This list is hosted by DevelopMentor(r)  http://www.develop.com
ASP.NET courses you may be interested in:

Guerrilla ASP.NET
15 March 2004, in Boston, MA
17 May 2004 in Torrance, CA
7 June 2004, London, UK

http://www.develop.com/courses/gaspdotnetls

View archives and manage your subscription(s) at
http://discuss.develop.com

===================================
This list is hosted by DevelopMentorŪ  http://www.develop.com
ASP.NET courses you may be interested in:

Guerrilla ASP.NET
15 March 2004, in Boston, MA
17 May 2004 in Torrance, CA
7 June 2004, London, UK

http://www.develop.com/courses/gaspdotnetls

View archives and manage your subscription(s) at http://discuss.develop.com

Reply via email to