Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. meson _build \
  4. -D prefix=/opt/mesa/ \
  5. -D b_ndebug=true \
  6. -D platforms=x11,wayland,drm,surfaceless \
  7. -D dri-drivers="" \
  8. -D gallium-drivers=radeonsi,svga,swrast \
  9. -D vulkan-drivers=amd \
  10. -D dri3=true \
  11. -D gallium-extra-hud=true \
  12. -D gallium-nine=true \
  13. -D gallium-omx=disabled \
  14. -D gallium-opencl=icd \
  15. -D gallium-va=true \
  16. -D gallium-vdpau=true \
  17. -D gallium-xa=true \
  18. -D gallium-xvmc=false \
  19. -D gbm=true \
  20. -D gles1=false \
  21. -D gles2=true \
  22. -D glvnd=true \
  23. -D llvm=true \
  24. -D lmsensors=true \
  25. -D osmesa=gallium \
  26. -D shared-glapi=true \
  27.  
  28. meson configure _build
  29. ninja -C _build install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement