|
Boost Testing : |
From: Bronek Kozicki (brok_at_[hidden])
Date: 2006-05-12 11:26:26
Vladimir Prus wrote:
> If other users of 6.5 can check if /Zm800 is supported or not, that would be
> great too.
no problems on my laptop, while compiling small test program in debug:
cl.exe /DWIN32 /D_DEBUG /MDd /GX /GR /Zi /Zm800 T295.c /link /INCREMENTAL:NO
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
T295.c
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:T295.exe
/debug
/INCREMENTAL:NO
T295.obj
... and in release mode:
cl.exe /DWIN32 /DNDEBUG /MD /GX /GR /Zd /Ox /Zm800 T295.c /link /INCREMENTAL:NO
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
T295.c
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:T295.exe
/debug
/INCREMENTAL:NO
T295.obj
regards
B.