哪些目录默认包含目录?
例如,在AOSP中有一些pthread代码,例如以下gki_ulinux.cc
pthread.h的路径:仿生/ libc / include
gki_ulinux.cc的路径:system / nfc / src / gki / ulinux /
#include <pthread.h>
....
pthread_mutex_init(&p_os->gki_timer_mutex, NULL);
pthread_cond_init(&p_os->gki_timer_cond, NULL);
在Android.bp(system / nfc / src / Android.bp)中找不到有关gki_ulinux.cc的pthread.h的任何信息。 编译器如何找到没有错误的pthread.h? 默认包含目录的设置在哪里?