标签:ati mic linux系统 href elf cpp 启用 激活 add
假设有一个新的Ubuntu WSL实例,则需要安装qemu-user-static软件包,添加i386 binfmt,启用i386体系结构,更新软件包列表,并安装一些i386软件包:
sudo apt update sudo apt install qemu-user-static sudo update-binfmts --install i386 /usr/bin/qemu-i386-static --magic ‘\x7fELF\x01\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x03\x00\x01\x00\x00\x00‘ --mask ‘\xff\xff\xff\xff\xff\xff\xff\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xf8\xff\xff\xff\xff\xff\xff\xff‘
sudo apt update
这将通过使它们通过qemu-i386-static执行来激活i386支持,并将配置文件放入其中/var/lib/binfmts/
以供将来重新激活。
sudo service binfmt-support start
sudo dpkg --add-architecture i386 sudo apt update sudo apt install gcc:i386
转自:https://www.jianshu.com/p/3df082840b40
让64位的WSL(windows子linux系统)支持运行32位程序
标签:ati mic linux系统 href elf cpp 启用 激活 add
原文地址:https://www.cnblogs.com/huang-y-x/p/12343582.html