The search order of libraries and header files under linux

https://www.cnblogs.com/ishen/p/11993957.html

gcc -isystem xxxxx

This means to add the search path after the -I search path, but search before the system header file directory, which should be the search path that has the least impact on the project header file.

Guess you like

Origin blog.csdn.net/qq_33882435/article/details/129924915