在unbuntu环境环境中搭建mingw-w64,编译出a.exe到windows环境的执行文件

https://blog.csdn.net/chuyanghong/article/details/78398259

mingw-w64工具的作用:在unbuntu环境环境中搭建mingw-w64,编译出a.exe到windows环境的执行文件

步骤:1.sudo apt-get update

2.sudo apt-get install mingw-w64

3.创建一个hello.c,sudo vim hello.c

#include
#include
#include

int main(int argc,char **argv)
{
printf(“hello world!\n”);
system(“pause”); //暂停
return 0;
}

4.编译出a.exe,在端口执行i686-w64-mingw32-gcc hello.c 命令;

会生成a.exe的可执行文件,拷贝到windows上双击就可以运行了!

至此,结束!

作者:chuyanghong
来源:CSDN
原文:https://blog.csdn.net/chuyanghong/article/details/78398259
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(运维,docker,wow,bash)