1

我是学习 C 的新手,而且我在 Windows 上(我想在 Windows 上学习)。

我已经在 cygwin 上安装了 GCC,并且正在使用NetBeans IDE

资源:

#include <stdio.h>

main()
{
    printf("Hello, world!\n");
    return 0;
}

构建上述代码时出现此错误:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/cygdrive/g/VS Projects/Hello World'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/Cygwin_4.x-Windows/hello_world.exe
make[2]: Entering directory `/cygdrive/g/VS Projects/Hello World'
mkdir -p build/Debug/Cygwin_4.x-Windows
rm -f build/Debug/Cygwin_4.x-Windows/helloworld.o.d
gcc    -c -g -MMD -MP -MF build/Debug/Cygwin_4.x-Windows/helloworld.o.d -o build/Debug/Cygwin_4.x-Windows/helloworld.o helloworld.c
mkdir -p dist/Debug/Cygwin_4.x-Windows
gcc     -o dist/Debug/Cygwin_4.x-Windows/hello_world build/Debug/Cygwin_4.x-Windows/helloworld.o  build/Debug/Cygwin_4.x-Windows/main.o 
build/Debug/Cygwin_4.x-Windows/main.o: In function `main':
/cygdrive/g/VS Projects/Hello World/main.c:14: multiple definition of `main'
build/Debug/Cygwin_4.x-Windows/helloworld.o:/cygdrive/g/VS Projects/Hello World/helloworld.c:4: first defined here
collect2: error: ld returned 1 exit status
nbproject/Makefile-Debug.mk:63: recipe for target `dist/Debug/Cygwin_4.x-Windows/hello_world.exe' failed
make[2]: *** [dist/Debug/Cygwin_4.x-Windows/hello_world.exe] Error 1
make[2]: Leaving directory `/cygdrive/g/VS Projects/Hello World'
nbproject/Makefile-Debug.mk:60: recipe for target `.build-conf' failed
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/cygdrive/g/VS Projects/Hello World'
nbproject/Makefile-impl.mk:39: recipe for target `.build-impl' failed
make: *** [.build-impl] Error 2


BUILD FAILED (exit value 2, total time: 562ms)

有什么简单的方法可以在 Windows 上学习 C 吗?(Visual Studio 给了我错误,似乎主要针对 C++,所以这不是一个选项)

4

3 回答 3

3

问题可能与您gcc或您的 NetBeans 配置有关

这里工作正常

// helloworld.c
#include <stdio.h>

main()
{
    printf("Hello, world!\n");
    return 0;
}

编译为myprog

$ gcc helloworld.c -o myprog

运行

$ ./myprog
# => Hello, world!
于 2013-07-17T20:56:40.813 回答
1

查看您的 NetBeans 是如何设置的。失败的编译是:

gcc -o dist/Debug/Cygwin_4.x-Windows/hello_world \
       build/Debug/Cygwin_4.x-Windows/helloworld.o \
       build/Debug/Cygwin_4.x-Windows/main.o 

那里有两个目标文件;一个看起来像你的目标文件helloworld.cmain()另一个是一个main.c可能还包含main()程序的文件的目标文件。

重新定义您的构建规则,以便您不会链接main.o到您的可执行文件。

于 2013-07-17T21:00:21.663 回答
0

我知道这是一篇旧帖子,但您应该查看项目的源文件。在那里,NetBeans 默认生成 2 个 main.c 文件。擦除其中一个,只留下一个,然后再次尝试构建项目。

于 2014-12-10T09:01:21.663 回答