http://llvm.org/bugs/show_bug.cgi?id=3464
Daniel Dunbar <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #3 from Daniel Dunbar <[email protected]> 2009-02-04 15:07:02 --- The directory search is not relative to the correct location: -- ddun...@milton:tmp$ mkdir x ddun...@milton:tmp$ touch x/a.h ddun...@milton:tmp$ mkdir y ddun...@milton:tmp$ touch y/a.c ddun...@milton:tmp$ gcc -fsyntax-only -include x/a.h y/a.c ddun...@milton:tmp$ clang -fsyntax-only -include x/a.h y/a.c <predefines>:90:10: error: 'x/a.h' file not found #include "x/a.h" ^ 1 diagnostic generated. -- -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
