在cygwin的vi编辑器中编写第一个c程序

时间:2013-06-23 02:56:36

标签: c gcc cygwin printf vi

我非常喜欢c编程和cygwin,所以感谢您的耐心等待。我正在为初学者使用Michael Vine的C编程PDF,并尝试输入和编译第一个例子。

以下是我在vi中写的内容:

 #include <stdio.h>

main ()
{
printf("\nHello World\n");
}

当我尝试使用gcc进行编译时,我收到两个错误:

1)usr/lib/gcc/i686-pc-cygwin/3.4.4./... /bin/ld:new: file format not recognized; treating as linked script

2)[same path as above]/bin/ld:new:11: syntax error collect2: ld returned 1 exit status

我很确定我在vi中使用的实际语法是正确的(它直接来自一个例子)并且gcc命令也是正确的。我错过了一个包裹还是我的cygwin搞砸了?有人知道这是怎么回事吗?

2 个答案:

答案 0 :(得分:1)

GCC,无论好坏,都会使用您传递给它的文件名来确定要执行的操作 - 运行编译器,汇编器或链接器,或者某些组合。由于您将源文件命名为new,因此GCC假设它是一个编译对象并尝试链接它。在编译时重命名new.c或传递-x c标志。

为了将来参考,使用GCC编译器驱动程序调试有趣业务的好方法是传递-v标志。如果对原始命令行执行此操作,则会看到它只是调用链接器,跳过编译步骤。我机器的一个例子:

$ gcc -v new -o new.exe
Using built-in specs.
Target: i686-apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
 /usr/llvm-gcc-4.2/bin/../libexec/gcc/i686-apple-darwin11/4.2.1/collect2 -dynamic -arch x86_64 -macosx_version_min 10.8.4 -weak_reference_mismatches non-weak -o new.exe -lcrt1.10.6.o -L/usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/x86_64 -L/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin11/4.2.1/x86_64 -L/usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1 -L/usr/llvm-gcc-4.2/bin/../lib/gcc -L/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin11/4.2.1 -L/usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/../../.. -L/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin11/4.2.1/../../.. new -lSystem -lgcc -lSystem
ld: warning: ignoring file new, file was built for unsupported file format ( 0x20 0x23 0x69 0x6e 0x63 0x6c 0x75 0x64 0x65 0x20 0x3c 0x73 0x74 0x64 0x69 0x6f ) which is not the architecture being linked (x86_64): new
Undefined symbols for architecture x86_64:
  "_main", referenced from:
      start in crt1.10.6.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

答案 1 :(得分:-1)

一个基本语法错误:

 ' main(){ ... } '

在C / C ++中,您的主要功能应该是:

'int main(){ ... }'