12:54 marex: hey, I was wondering about this for a while ... say, I have debian arm64 rootfs booted from NFS, with all the toolchain and other build essential installed in it already, all the stuff necessary to build mesa
12:54 marex: can I build mesa from source (obviously yes) AND then somehow LD_PRELOAD it for testing with the applications/tools that are already in the root filesystem ?
12:54 marex: is there some easy trick to it ?
12:55 marex: I basically want to test patch(es) faster , currently I use OE to build the mesa recipe and rsync it into OE generated rootfs, but that's a workaround
12:56 marex: bitbake -C helps, but not great obv
12:57 Ristovski: You can indeed LD_LIBRARY_PATH mesa
13:04 marex: Ristovski: I would have to point it to libGLES.so and a couple of others though, right ?
13:04 ccr: yep, LD_LIBRARY_PATH and you may also want to set VK_ICD_FILENAMES
13:04 marex: maybe I could install mesa into separate location, but I wanted to skip the install step if possible
13:05 marex: basically I wanted to do "make && LD_... ./run-the-test"
13:05 marex: without the make install or whatever meson equivalient there is