Hi,
I'm having no trouble... the way I do it is I make a batch file which then calls vcvars32.bat, then runs nmake or cl.
I did have to edit vcvars32.bat to change quoting, since it looks like wcmd's quote processing is all screwed up (though I seem to recall seeing a patch about that recently).
I then run the outer batch file (foo.bat) with wine wcmd /c foo
yes, this seems to work, thanks for pointing this out. I could not find a man page on on wcmd when I looked... Is there one planned?
whitnl73@juno.com wrote: <snip>
can you not just export them with the ; so wine doesn't need to convert them?
[whit@giftie whit]$ export INCLUDE="c:\foo\var\bas;d:\bar\baz" [whit@giftie whit]$ echo $INCLUDE c:\foo\var\bas;d:\bar\baz [whit@giftie whit]$ export LIB='c:\fubar;d:\oops\help' [whit@giftie whit]$ echo $LIB c:\fubar;d:\oops\help
Lawson
I tried these and they solve the problem, thank you.
Cheers
JG