我不能在 cygwin64 中使用 termios.h

I cannot use termios.h in cygwin64

我正在制作一个我认为需要使用的应用程序 termios.h 但我有 windows 10. 我安装了 cygwin64。我在终端中输入 gcc test.c -o test.exe。我仍然得到 fatal error: termios.h: No such file or directory #include <termios.h> 安装期间我必须做些什么吗?

代码只是打印 hello world 但我包含了 termios.h

#include <stdio.h>
#include <termios.h>

int main(){
     printf("Hello World!");

     return 0;
}

而不是这个:

#include <termios.h>

这个:

#include <sys/termios.h>

安装缺少的开发包。要查找哪个是,请使用 cygcheck

$ cygcheck -p usr/include/termios.h
Found 12 matches for usr/include/termios.h
cygwin-devel-3.0.7-1 - cygwin-devel: Core development files
...
cygwin-devel-3.2.0-0.1 - cygwin-devel: Core development files
cygwin-devel-3.2.0-1 - cygwin-devel: Core development files
...

你需要cygwin-devel

$ cygcheck -l cygwin-devel |grep termios.h
/usr/include/termios.h
/usr/include/machine/termios.h
/usr/include/sys/termios.h

看看你的例子

$ cat prova.c
#include <stdio.h>
#include <termios.h>

int main(){
     printf("Hello World!");

     return 0;
}

和编译器

$ which gcc
/usr/bin/gcc
$ gcc --version
gcc (GCC) 10.2.0

示例构建良好

$ gcc -Wall prova.c -o prova
$ ./prova
Hello World!