Displaying 2 results from an estimated 2 matches for "wp64".
Did you mean:
w64
2007 Jun 13
0
Re: cl : Command line error D8037 : cannot create temporary il file; clean temp directory of old il files
...(in Windows) and then, from Linux,
I copied the whole contents of %A_VS_DIR%/bin into ~/apps/vs64/bin. Then in ~/bin
I've put a small script like this:
#!/bin/sh
wine "${HOME}/apps/vs64/bin/cl.exe" "${@}"
first attempt:
$ make -f makefile.win64
cl64 /c /nologo /TC /Wall /Wp64 /MD /Zi /Gd /Od /I. /D__WINDOWS__ /D__WIN64__ /I/home/user/apps/vs/include /Fo_stricmp.o _stricmp.c
cl : Command line error D8037 : cannot create temporary il file; clean temp directory of old il files
make: *** [_stricmp.o] Error 2
Bummer!
Several hours and one `man wine` later, I did:
$ export...
2004 Aug 06
2
production code
...#39;d like to make a contribution to the codebase.
i am bothered by the spew of warnings ( about 300 ) from my compiler. i
typically frown on warnings anywhere in my codebase.
COMPILER: Visual C++ .NET 2003 version 7.1.3088
WARNING LEVEL: Level 3 (/W3) with 64-bit compatability warnings
enabled (/Wp64)
the warnings primarily fall into two categories.
1. portability warnings for 64-bit processors. most of these are
generated by the PUSH/ALIGN macros.
2. float/double loss of precision warnings. most can be removed
with explicit casts or appending the 'f' specifier to constants.
i am wil...