有人遇到过 Ubuntu 上找不到 unistd.h 的情况吗?

Anyone ever have a case where unistd.h cannot be found on Ubuntu?

我正忙着寻找我系统中的错误。从字面上看 快把我逼疯了。

系统:Ubuntu 16.04 LTS,gcc&g++ 4.9、5.3 5.4 可用。

基本上我是在尝试为点云注册编译一些代码,我没有更新我的机器,我开始看到 Boost 出于某种原因禁用了线程,生成了多个错误,找不到线程库。我回溯到查看 GLib 定义的 boost header 的一部分,我检查了一下,似乎我的编译器在 gcc 或 g++ 中看不到 unistd.h。 我检查了文件,一切都在那里,但实际上看不到。 我尝试使用 -I 标志让编译器查看目录。

C 代码示例。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
int main (int argc, char *argv[])
{
    int fd1;
    char buf[128];
    fd1 = open(argv[1], O_WRONLY | O_CREAT);
    if (fd1 == -1) {
        perror("File cannot be opened");
        return EXIT_FAILURE;
    }
    scanf("%127s", buf);
    write(fd1, buf, strlen(buf));
    close(fd1);
    return 0;
}

如果我尝试使用命令 g++ test_unistd.cpp -o main 进行编译,那么我会得到

/home/user/test_unistd.cpp: In function ‘int main(int, char**)’:
/home/user/test_unistd.cpp:20:32: error: ‘write’ was not declared in this scope
     write(fd1, buf, strlen(buf));
                                ^
/home/user/test_unistd.cpp:22:14: error: ‘close’ was not declared in this scope
     close(fd1);

我能看到的所有文件都在那里,我似乎无法弄清楚问题是什么。

在评论中写下我们的发现:

OP 系统上的 /usr/local/include/unistd.h 处有一个空文件。 /usr/local 包含非托管文件(例如,您手动安装的文件)。编译器首先检查 /usr/local/include(在 /usr/include 之前),因此您可以使用它来覆盖系统功能。但是因为 /usr/local/include/unistd.h 是空的,所以 include 没有效果(除了防止真正的 unistd.h 被使用)。

解决方案:删除/usr/local/include/unistd.h。这样就可以在 /usr/include/unistd.h 找到真正的 header 并再次使用。