Ubuntu 16.04安装MinGW32

直接使用命令

sudo apt-get install mingw32
  • 1
  • 1

会报错

Unable to locate package mingw32
  • 1
  • 1

解决办法如下

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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

测试下是否安装好了~当然是写一个test.cpp呀

#include 

int main() {
    printf("Hello World!");
        return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在此文件夹下打开终端,输入命令 
ubuntu下可执行文件后缀为.o结尾的,执行命令为./filename

g++ test.cpp -o test
./test
  • 1
  • 2
  • 1
  • 2

然后会看见 hello world~结束啦

你可能感兴趣的:(ubuntu)