Advertisement
Guest User

Untitled

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