Messages in this thread |  | | Date | Mon, 26 May 2003 21:47:44 -0700 | From | Aaron Lehmann <> | Subject | Re: [2.5] [Cool stuff] "checking" mode for kernel builds |
| |
On Mon, May 26, 2003 at 08:23:37PM -0700, Linus Torvalds wrote: > Any takers? Some Makefile magic plus some hacky thing like > > gcc -print-file-name=include > > (Yeah, that's not righ either, it just happens to work. I don't know what > the proper way of making gcc expose its local paths is).
gcc -v will tell you the final include path, but only when you actually compile something. I'd probably make the makefile hackery parse the ouput of echo | gcc -v -E -. Yeah, it's ugly.
The output between "#include <...> search starts here:" and "End of search list." seems like the combination of what you want for gcc_includepath and sys_includepath. I assume the output is ordered. I might send a patch if I'm bored tonight. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |