Lines Matching +full:meson +full:- +full:linux
6 SVGA3D driver) for Linux using the latest source code. This driver gives
7 a Linux virtual machine access to the host's GPU for
8 hardware-accelerated 3D. VMware Workstation running on Linux or Windows
14 - The vmwgfx kernel module version 2.20 or later
15 - The VM needs to be configured to hardware version 20 or later.
16 - MESA 22.0 or later should be installed.
21 Most modern Linux distributions include the SVGA3D driver so end users
27 ----------
31 - Linux kernel module: vmwgfx
32 - User-space libdrm library
33 - Mesa/Gallium OpenGL driver: "svga"
35 All of these components reside in the guest Linux virtual machine. On
37 `Workstation Pro <https://www.vmware.com/products/workstation-pro.html>`__ or
41 -------------
43 - vmwgfx Kernel module version at least 2.20
44 - Ubuntu: For Ubuntu you need to install a number of build
49 sudo apt-get install autoconf automake libtool flex bison zstd
50 sudo apt-get install build-essential g++ git
51 sudo apt-get install libexpat1-dev libpciaccess-dev \
52 libpthread-stubs0-dev \
53 libudev-dev libx11-xcb-dev \
54 libxcb-dri2-0-dev libxcb-dri3-dev
55 sudo apt-get install libxcb-glx0-dev libxcb-present-dev \
56 libxcb-shm0-dev libxcb-xfixes0-dev
57 sudo apt-get install libxdamage-dev libxext-dev \
58 libxfixes-dev libxkbcommon-dev
59 sudo apt-get install libxml2-dev libxrandr-dev \
60 libxshmfence-dev libxxf86vm-dev
61 sudo apt-get install mesa-utils meson ninja-build \
62 pkg-config python3-mako python3-setuptools
63 sudo apt-get install x11proto-dri2-dev x11proto-gl-dev \
64 xutils-dev libglvnd-dev
66 Depending on your Linux distribution, other packages may be needed. Meson
70 ------------------------------
79 - Mesa/Gallium main branch. This code is used to build libGL, and the
88 - libdrm, a user-space library that interfaces with DRM. Most
98 -----------------
100 - Determine where the GL-related libraries reside on your system and
107 export LIBDIR=/usr/lib/x86_64-linux-gnu
110 - Build libdrm:
115 meson builddir --prefix=/usr --libdir=${LIBDIR}
116 meson compile -C builddir
117 sudo meson install -C builddir
120 - Build Mesa:
125 …meson builddir -Dvulkan-drivers= -Dgallium-drivers=svga -Ddri-drivers= -Dglvnd=true -Dglvnd-vendor…
127 meson compile -C builddir
128 sudo meson install -C builddir
139 -----------------------
152 - Make sure the VM uses hardware version 20 or later.
153 - Make sure the vmwgfx kernel module is version 2.20.0 or later.
154 - Check the vmware.log file for errors.