Wine编译安装问题?

1、./configure时出现Cannot build a 32-bit program, you need to install 32-bit development libraries.

解决:sudo apt-get install gcc-multilib g++-multilib

2、error: X 32-bit development files not found. Wine will be built
without X support, which probably isn't what you want. You will need
to install 32-bit development packages of Xlib at the very least.
Use the --without-x option if you really want this.

解决:sudo apt-get install libx11-dev:i386

3、configure: error: FreeType 32-bit development files not found

解决:sudo apt-get install libfreetype6-dev:i386 libfreetype6-dev

如果已安装,sudo ln -s /usr/include/freetype2 /usr/include/freetype

4、其他库

sudo apt-get install libxrender-dev:i386 libgnults-dev:i386 

发布了16 篇原创文章 · 获赞 21 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_26056015/article/details/83061737