DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2813
Version: 1.3-feature


Attached file "vclog.txt"...


Link: http://www.fltk.org/str.php?L2813
Version: 1.3-feature
Setting environment for using Microsoft Visual Studio 2005 x64 tools.

C:\Program Files (x86)\Microsoft Visual Studio 8\VC>t:

T:\>edit test.c
'edit' is not recognized as an internal or external command,
operable program or batch file.

T:\>vi test.c
'vi' is not recognized as an internal or external command,
operable program or batch file.

T:\>notepad test.c

T:\>cl test.c
Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.762 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.

test.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation.  All rights reserved.

/out:test.exe
test.obj

T:\>test
sizeof(void*) = 8
sizeof(long)  = 4

T:\>x86_64-w64-mingw32-gcc -o test test.c

T:\>test
sizeof(void*) = 8
sizeof(long)  = 4

T:\>type test.c
#include <stdio.h>

int main()
{
  printf("sizeof(void*) = %d\n", (int)sizeof(void*));
  printf("sizeof(long)  = %d\n", (int)sizeof(long));
  return(0);
}


T:\>
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to