博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GNU make manual 翻译( 九十七)
阅读量:6849 次
发布时间:2019-06-26

本文共 826 字,大约阅读时间需要 2 分钟。

继续翻译

Although the default set of files to be searched for is `libNAME.so'and `libNAME.a', this is customizable via the `.LIBPATTERNS' variable.Each word in the value of this variable is a pattern string.  When aprerequisite like `-lNAME' is seen, `make' will replace the percent ineach pattern in the list with NAME and perform the above directorysearches using each library filename.   The default value for `.LIBPATTERNS' is `lib%.so lib%.a', whichprovides the default behavior described above.   You can turn off link library expansion completely by setting thisvariable to an empty value.

尽管被搜索的缺省文件集合是 libNAME.so 和 libNAME.a ,但是这可以通过 .LIBPATTERNS 变量进行定制。在此变量中的每一个值都是一个模式字符串。当一个 -lNAME 在前提条件中被发现,make 将会把每个模式中的百分号用 NAME 替换,然后用每个库文件名,执行上述的目录搜索。

.LIBPATTERNS 的缺省值是 lib%.so lib%.a,这提供了上述的缺省行为。

你也可以关闭库扩展功能,如果你设置此变量为空值的话。

后文待续

转载地址:http://beeul.baihongyu.com/

你可能感兴趣的文章