This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

include paths


It seems that most of the win32 stuff under bash accepts //x/ as
a drive specification, except gcc include paths.

bash$ ls F:/abc/def.h
F:/abc/def.h
bash$ ls //f/abc/def.h
//f/abc/def.h

bash$ cat test.c
#include <def.h>
main(){}

bash$ gcc -IF:/abc test.c
bash$ gcc -I//f/abc test.c
test.c:1: def.h: No such file or directory

Why do I care?  I am using some build tools that do not like ':''s
in the include path.

Bruce

-
For help on using this list, send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]