to programming @ Cygwin
1. to install Cygwin
- to select the mirror websit :
http://www.cygwin.cn/pub/
- to select the following component:
binutils
gcc
gcc-mingw
gdb
make
2. to verify Cygwin installation is OK? by "Helloworld"
- to release source code , compile & run it:
#include <stdio.h>
int main(void){
printf("HelloWorld,C!");
}
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello
$ gcc hello.c -o hello
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello
$ ls
hello.c hello.exe
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello
$ ./hello
HelloWorld,C!
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello
$
- to link 2 source code:
* hello1.c:
int main(void){
print("Hello2,it's Hello1!");
}
* hello2.c:
#include <stdio.h>
void print(char * s){
printf("%s",s);
}
- to compile & run:
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello2
$ ls
hello1.c hello2.c
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello2
$ gcc hello1.c hello2.c -o hello
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello2
$ ls
hello.exe hello1.c hello2.c
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello2
$ ./hello
Hello2,it's Hello1!
Administrator@g-pc /cygdrive/e/cprogramming/proj/hello2
$
done!
分享到:
相关推荐
Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. It can creates native Win...
Dev-C++is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. It can creates native Win...
教程内容包括对C++的简介、对象导向编程(Object-Oriented Programming)、标准库(Standard Libraries)以及ANSI标准等。C++是C语言的超集,提供了面向对象的编程特性,如类和对象、继承、多态以及封装等。学习C++的...
`g++`是GNU编译器集合中的一员,专门用于C和C++语言。编译命令的格式通常为: ```bash g++ sourcefile.cpp ``` 其中`sourcefile.cpp`是你的C++源代码文件。编译后,默认生成的是可执行文件`a.out`。若要指定...
Changes in 2.4.6 (February 22, 2011): Brief summary : - Support more host OS to run on: - Include win64 native binary in the release. - Fixed failures on big endian hosts. - BIOS: Support for up to...