Displaying 2 results from an estimated 2 matches for "d8037".
Did you mean:
d037
2007 Jun 13
0
Re: cl : Command line error D8037 : cannot create temporary il file; clean temp directory of old il files
...t 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 WINEDEBUG=relay # this feature rocks too much!
$ make -f makefile.win64 1>cl64.log 2>&1
$ less cl64.log
$ # stare
$ # s...
2006 Jun 13
0
cl : Command line error D8037 : cannot create temporary il file; clean temp directory of old il files
I installed VS Express and included the IDE in $LIB. It looks like wine
is able
to run 'cl.exe' but 'cl.exe' itself has a problem. We've tried a number
of variations
of setting %TMP% and %TEMP% to no avail.
Any ideas.
TIA.