Re: one more thing

2007-09-20 Thread patrickinminneapolis
>>If I did that, I'd be doing you a disservice. You don't want to mix and >>match stuff from VC++ and gcc/g++. That's just asking for trouble. I'd >>recommend just changing the reference to "stdio.h" and using gcc's. If >>you simply *must* have 'cstdio', you can install the Boost package (see

Re: one more thing

2007-09-20 Thread Brian Dessent
patrickinminneapolis wrote: > example_wrap.c includes , but gcc can't find it, can you tell me > how to tell gcc to look in c:\Program Files\Microsoft Visual Studio > 8\VC\include\ for it? Setting aside for a moment the fact that you're trying to do something totally wrong and broken, the reason

Re: one more thing

2007-09-20 Thread Larry Hall (Cygwin)
patrickinminneapolis wrote: '-I' is for finding headers named in an #include directive. But '>>example_wrap.c' is a source file, not a header, so do this: gcc -c example.c /cygdrive/c/example_wrap.c example_wrap.c includes , but gcc can't find it, can you tell me how to tell gcc to look in c:

Re: one more thing

2007-09-20 Thread patrickinminneapolis
>>'-I' is for finding headers named in an #include directive. But '>>example_wrap.c' is a source file, not a header, so do this: >>gcc -c example.c /cygdrive/c/example_wrap.c example_wrap.c includes , but gcc can't find it, can you tell me how to tell gcc to look in c:\Program Files\Microsoft Vi