linux 编译win32程序
时间:2014-12-30 11:33:16
收藏:0
阅读:320
apt-get install mingw32
int main(int argc, char *argv)
{
printf("Windows Compiler Test\n");
return 0;
}
i586-mingw32msvc-gcc -o win32.exe main.c
原文:http://www.cnblogs.com/ahuo/p/4193038.html
评论(0)