我们可以列出“make”使用的所有 *.[c,h,S] 文件吗?构建linux内核的命令?

发布于 2025-01-07 14:17:04 字数 249 浏览 0 评论 0原文

内核源代码中有很多文件大部分时候都没有被使用。我只想列出发出 make 命令时编译的文件。

我认为只有那些将要编译的文件才会在 make 期间被访问,因此,我尝试了以下命令:

找到 . -type f -name *.[chS] -anewer Makefile

但我发现许多不属于所需架构的文件也被访问。请建议一种方法,我可以在其中列出这些文件名及其来自内核源顶级目录的路径。

There are a lot of files in the kernel source that are not used most of the times. I wanted to list out only the files that are compiled when I issue a make command.

I thought that only those files that will be compiled are accessed during a make and hence, I tried the following command :

find . -type f -name *.[chS] -anewer Makefile

But I found that many files that are not a part of the required architecture are also being accessed. Please suggest a method in which I could list those filenames along with their path form the kernel source top directory.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无风消散 2025-01-14 14:17:04

尝试make cscope,然后查看cscope.files纯文本文件中的文件列表。您需要在系统上安装 cscope 工具。

Try make cscope and then check out the file list in the cscope.files plaintext file. You need the cscope tool installed on your system.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文