I'm aware that when using #include <file>
the compiler will search in defined system directories for file
. How can I view these directories?
I ask because I added a directory with a bunch of header files into /usr/local/include, and when I #include <file>
the compiler still says error: unknown type name ‘TPM_TAG’
. I suspect that /usr/local/include isn't in the compiler's list of directories to search.
Thanks!