>===== Original Message From "Robert Collins"
<snip>
>> True, unless you manage to get autoconf to use the MS compiler.. isn't
>> there a command line mode for it? if so it should be little more than
>> setting the variable CC when calling configure..
>
>Microsoft? Command line? Seriously there used to be a command line version,
but I'm thinking back to Visual C, not C++. There may
>still be - and certainly don't object to other's using MS compilers. (BTW:
Cygwin && mingw can both compile 'native' code - that is
>to say that you do not need to link programs compiled under cygwin to
cygwin1.dll. In other words once I get time you will be able
>to build Romeo and Serassio's code with gcc without linking cygwin1.dll in).
<snip>
You can definately run the Microsoft C & C++ compilers that come with Visual
C++ 6.0 from the command line:
C:\>type foo.c
#include <stdio.h>
int main (void)
{
printf("Bar!\n");
return 0;
}
C:\>cl foo.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
foo.c
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:foo.exe
foo.obj
C:\>foo
Bar!
C:\>
This was done from a dos prompt started by the (freely
downloadable) platform SDK for WinME/2K/...
Applicable env. variables are set like %include%and %path%
Roger.
-------------------------------------------------------
Roger Venning \ Do not go gentle into that good night
Melbourne \ Rage, rage against the dying of the light.
Australia <r.venning@bipond.com> \ Dylan Thomas
Received on Thu Jan 04 2001 - 20:31:52 MST
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:13:10 MST