首页 > 代码库 > ubuntu下交叉编译windows c程序
ubuntu下交叉编译windows c程序
简介
采用mingw32可以在linux下直接编译c程序输出为windows下的exe程序或dll链接库。
个人编译的纯c程序(不含winapi),主要是c99程序,通常采用gcc/cc编译调试后,再用mingw输出win目标文件。
linux下目标程序及共享库与windows下的应用程序及链接库不同。
具体步骤
安装mingw
sudo apt-get install mingw32 mingw32-binutils mingw32-runtime
即使不输入mingw32-binutils和mingw32-runtime也会自动安装
编译
i586-mingw32msvc-gcc hello.c -o hello.exe
个人习惯
alias cl=’i586-mingw32msvc-gcc -std=c99’
cl *.o -mdll -o test.dll
cl hello.c -o hello.exe
mingw命令
- C compiler: i586-mingw32msvc-gcc
- C++ compiler: i586-mingw32msvc-g++
- Linker for dynamic libs: i586-mingw32msvc-g++
- Linker for static libs: i586-mingw32msvc-ar
- Debugger: i586-mingw32msvc-gdb
http://hustlei.tk/2014/08/ubuntu-compile-c-for-win.html
ubuntu下交叉编译windows c程序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。