Ubuntu 16.04安装MinGW32(在/etc/apt/sources.list里添加源)

Posted 朝闻道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 16.04安装MinGW32(在/etc/apt/sources.list里添加源)相关的知识,希望对你有一定的参考价值。

Ubuntu 16.04下直接使用命令安装MinGW32:
sudo apt-get install mingw32
 
但是,会报错:
Unable to locate package mingw32
 
解决办法如下:
sudo gedit /etc/apt/sources.list
//在sources.list末尾添加,保存
deb http://us.archive.ubuntu.com/ubuntu trusty main universe
sudo apt-get update
sudo apt-get install mingw32
 
测试下是否安装好了,当然是写一个test.cpp呀。
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
 
在此文件夹下打开终端,输入命令。
ubuntu下可执行文件后缀为.o结尾的,执行命令为./filename
g++ test.cpp -o test
./test
然后会看见 hello world,结束啦。
 
 

以上是关于Ubuntu 16.04安装MinGW32(在/etc/apt/sources.list里添加源)的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 16.04 不支持 32 位库吗?

ubuntu32bit的系统如何配置mingw-w64的交叉编译toolchain?

32位ubuntu16.04桌面版系统安装

Ubuntu 16.04 安装 ssh

8.Ubuntu安装32位依赖

ubuntu16.04下安装aria2