Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到这个命令:
gcc -Wall `libnet-config --defines` libnet-example-x.c -o libnet-example-x `libnet-config --libs`
libnet-config --defines和的含义是libnet-config --libs什么?
libnet-config --defines
libnet-config --libs
它正在执行一个程序,该程序生成必要的 gcc 参数来编译使用 libnet 的应用程序。
在命令行执行这个,你会看到发生了什么:
libnet-config是一个可执行文件,-D...当使用参数调用时将返回 gcc 的选项列表,以及使用另一个参数调用--defines的列表。-l...
libnet-config
-D...
--defines
-l...