gpt4 book ai didi

c - gcc 无法将 *.C 源代码识别为有效的 c 程序

转载 作者:太空宇宙 更新时间:2023-11-04 06:55:12 32 4
gpt4 key购买 nike

我不小心将 .C [note to Uppercase C] 扩展名分配给了我在 UBUNTU 16.04 LTS 中的 C 源代码,并使用 Gedit 程序打开它以输入我的代码。

gcc 编译器无法将其识别为 C 编程源代码,并在尝试编译时产生错误。

UBUNTU 文件管理器将其显示为 cpp 文件。

代码

#include <stdlib.h>

int main(){

int * c = malloc(sizeof(int));
free(c);

return 0;
}

gcc编译命令,输出:

$gcc test.C -o test
test.C:8:18: error: invalid conversion from ‘void*’ to ‘int*’ [-fpermissive]
int * c = malloc( sizeof(int) );

正如我们所知,这是一个特定于 C++ 的错误,我认为 gcc 的行为类似于 this 中所述的 C++ 文件。.

这是我的系统信息

Linux ee 4.8.0-36-generic #36~16.04.1-Ubuntu SMP  i686 i686 i686 GNU/Linux

gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609

gedit - Version 3.18.3

我知道我们可以简单地将 malloc() 的返回值转换为 (int*),这显然有效。

但是我们知道malloc() 返回类型是void* 参见linuxdie malloc()

在 C 中转换 malloc() 的类型是不正确的 why not cast return of malloc()

UBUNTU 中的 C 源代码是否只有小写扩展有效,为什么要这样做?

以及如何解决这个问题并在我的机器上使用 gcc 编译我的 source.C

编辑

作为MCG在答案中说,我们可以强制 gcc 将任何给定文件视为特定类型,这是用 -x 标志告诉它的。

例如,如果我们在 UBUNTU 上有一个扩展名为 .f 的有效 C 源代码,甚至没有任何扩展名的源代码,通过使用此命令,它将被正确编译,

编译任意扩展名的C源代码:

gcc -x c src.f -o src // with .f or any others
gcc -x c src -o src //without extension

最佳答案

GCC 将 .C(大写字母)扩展名识别为 C++ 文件。您需要将文件的扩展名更改为 .c(小写字母)。此外,您正确地提到并引用了 C++ 需要在 malloc 的情况下进行强制转换,而在 c 中,存在从任何对象指针类型到 void * 的隐式转换。

请参阅下面关于 GCC 文档中的文件扩展名(.C.c)的解释。有关各种文件扩展名的详细说明,请参阅下面的 GCC 链接。

file.C

C++ source code which must be preprocessed. Note that in .cxx, the last two letters must both be literally x. Likewise, .C refers to a literal capital C.

file.c

C source code which must be preprocessed.

https://gcc.gnu.org/onlinedocs/gcc-3.3/gcc/Overall-Options.html

此外,您可以提供标志 -x c 以强制 GCC 将文件视为 C,而不是 C++。

关于c - gcc 无法将 *.C 源代码识别为有效的 c 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45927853/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com