/tmp 文件夹和 gcc

发布于 2024-10-15 08:01:05 字数 126 浏览 4 评论 0原文

我正在使用 maemo 操作系统和 GCC 编译器。编译应用程序时出现错误:/tmp 上没有足够的空间。我有 10% 的可用空间,所以我不明白为什么会发生这种情况。无论如何,是否可以更改 GCC 配置以使用另一个文件夹(在另一个分区中)?

I am using the maemo Operating System and the GCC compiler. I have an error when I compile an application: there is no enough space on /tmp. I have 10% of my space free so I don't understand why this happens.. anyway, is it possible to change the GCC configuration in order to use another folder (in another partition)?

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

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

发布评论

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

评论(2

若有似无的小暗淡 2024-10-22 08:01:05

TMPDIR 环境变量设置为您希望 GCC 放置临时文件的位置。或者,使用 -pipe 标志将临时文件(目标文件除外)保留在内存中。

Set your TMPDIR environment variable to where you want GCC to put your temporary files. Or, use the -pipe flag to keep temporary files (except object files) in memory.

是你 2024-10-22 08:01:05

您的 /tmp 目录很可能被安装为 tmpfs 文件系统。这意味着 /tmp 中的文件实际上存储在内存中,而不是磁盘上。如果是这种情况,/tmp 将仅限于内存+交换区中可以容纳的内容,并且 /tmp 中的所有内容都将在重新启动后丢失。

使用 mountdf -T 查看 /tmp 是如何挂载的。

Most likely your /tmp directory is mounted as a tmpfs filesystem. This means that the files in /tmp are actually stored in memory, not on disk. If this is the case /tmp will be limited to what you can fit in memory+swap, and everything in /tmp will be lost across reboots.

Use mount or df -T to see how /tmp is mounted.

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