`
gryphone
  • 浏览: 437482 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

c/cpp programming @ Cygwin

阅读更多

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!

分享到:
评论

相关推荐

    轻量级C++编译器devcpp

    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...

    WinYes_DevCPP_5B0710

    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...

    cpp_tutorial c++入门 英文

    教程内容包括对C++的简介、对象导向编程(Object-Oriented Programming)、标准库(Standard Libraries)以及ANSI标准等。C++是C语言的超集,提供了面向对象的编程特性,如类和对象、继承、多态以及封装等。学习C++的...

    第一个C++程序

    `g++`是GNU编译器集合中的一员,专门用于C和C++语言。编译命令的格式通常为: ```bash g++ sourcefile.cpp ``` 其中`sourcefile.cpp`是你的C++源代码文件。编译后,默认生成的是可执行文件`a.out`。若要指定...

    Bochs - The cross platform IA-32 (x86) emulator

    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...

Global site tag (gtag.js) - Google Analytics