我无法建立HELLO,WORLD计划?

时间:2013-07-17 20:53:58

标签: c gcc netbeans compiler-errors

我是新手学习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 ++,所以这不是一个选项)

3 个答案:

答案 0 :(得分:3)

问题可能出在您的gcc或NetBeans配置

这里工作正常

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

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

编译为myprog

$ gcc helloworld.c -o myprog

运行它

$ ./myprog
# => Hello, world!

答案 1 :(得分: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.c的{​​{1}}对象文件,另一个是文件main()的对象文件,可能还包含main.c程序。

重新定义构建规则,以便不将main()链接到可执行文件中。

答案 2 :(得分:0)

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

相关问题