ubuntu下交叉编译windows c程序

Posted 朝闻道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下交叉编译windows c程序相关的知识,希望对你有一定的参考价值。

简介

采用mingw32可以在linux下直接编译c程序输出为windows下的exe程序或dll链接库。

个人编译的纯c程序(不含winapi),主要是c99程序,通常采用gcc/cc编译调试后,再用mingw输出win目标文件。

linux下目标程序及共享库与windows下的应用程序及链接库不同。

具体步骤

  1. 安装mingw

    sudo apt-get install mingw32 mingw32-binutils mingw32-runtime

    即使不输入mingw32-binutils和mingw32-runtime也会自动安装

  2. 编译

    i586-mingw32msvc-gcc hello.c -o hello.exe

  3. 个人习惯

    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程序的主要内容,如果未能解决你的问题,请参考以下文章

windows eclipse c++怎么交叉编译linux

ubuntu 下搭建MIPS交叉编译环境

在 Ubuntu Linux 中从 Eclipse 交叉编译 Windows 应用程序?

在 Windows 7 中交叉编译 C 和 C++ 应用程序,在 linux 下使用 MinGW

Ubuntu下使用Eclipse IDE for C/C++ Developers交叉编译和调试

Ubuntu下使用mingw-w64交叉编译ffmpeg