From: Cole Poirier Date: Thu, 10 Sep 2020 23:37:49 +0000 (-0700) Subject: update lsoc-mesa-dev-env-setup as now it builds and installs sucessfully X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=937953788f874dd9232b3a9bce5f25a7280e8fda;p=dev-env-setup.git update lsoc-mesa-dev-env-setup as now it builds and installs sucessfully --- diff --git a/lsoc-mesa-dev-env-setup b/lsoc-mesa-dev-env-setup index 1b75db4..2439580 100755 --- a/lsoc-mesa-dev-env-setup +++ b/lsoc-mesa-dev-env-setup @@ -7,9 +7,14 @@ mkdir build && cd build meson -Dbuildtype=release -Dprefix=/home/$USER/opt/lsoc_mesa .. ninja install export PKG_CONFIG_PATH=~/opt/lsoc_mesa/lib/x86_64-linux-gnu/pkgconfig/ +export VK_ICD_FILENAMES=/home/$USER/opt/lsoc_mesa/share/vulkan/icd.d/libresoc_icd.x86_64.json +export VK_LOADER_DEBUG=warn +export LIBRESOC_TRACE=1 cd ~/opt -git clone https://gitlab.freedesktop.org/mesa/mesa.git +git clone https://git.libre-soc.org/git/mesa.git cd mesa +git pull --rebase origin libresoc_dev +git checkout -b libresoc_dev mkdir build && cd build -meson -Dbuildtype=debug -Dprefix=/home/$USER/opt/lsoc_mesa +meson -Dbuildtype=debug -Dprefix=/home/$USER/opt/lsoc_mesa -Dvulkan-drivers=libre-soc .. ninja install