Skip to main content

Command Palette

Search for a command to run...

Understanding the Absence of GCC Man Pages

Published
1 min read

└─$ man gcc
No manual entry for gcc

└─$ which gcc
/usr/bin/gcc
  1. Missing Man Page: The man gcc not returning any result could indicate that the corresponding man page for gcc is not installed on your system.

  2. Compiler Exists: The which gcc command confirms that the gcc compiler does exist.

  3. Installing Man Page: To obtain the man page for gcc, you may need to install a documentation or manual package for gcc. In many Linux distributions, these packages are often split off and provided separately.

  4. Installation Method: On a Debian or Ubuntu system, you could use sudo apt-get install gcc-doc to install. On a Red Hat or CentOS system, you could use sudo yum install gcc-doc to install.

More from this blog

c_void到u8 - laertes-2023

为什么把c_void重命名为u8? 类型大小: u8通常代表一个单字节(8位)的无符号整数。c_void作为一个“空”类型,通常也被当作一个单字节进行处理(尽管这取决于具体的实现)。因此,这两者在大小上是匹配的。 类型转换简便: u8是一个非常基础的类型,与之进行类型转换通常比较方便。 操作简单: u8类型上可用的操作相对简单,可能更容易进行后续的代码分析或转换。 为什么不把其他东西重命名为u8? 类型语义: 其他类型可能具有其自己的语义和操作,这些可能不适用或不等价于u8。 数据...

Sep 5, 20231 min read

Retriever's blog

48 posts