From 43b95c09c046c95dd9f5f750e3978b0454d6498f Mon Sep 17 00:00:00 2001 From: Nathan Schulte Date: Wed, 7 Oct 2020 10:15:06 -0500 Subject: [PATCH] Include LD_LIBRARY_PATH to ensure built wlroots DSO is loaded --- Development-Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Development-Setup.md b/Development-Setup.md index bf9ab9e..d381f5b 100644 --- a/Development-Setup.md +++ b/Development-Setup.md @@ -44,7 +44,7 @@ meson build/ ninja -C build/ # Start sway -build/sway/sway +LD_LIBRARY_PATH=build/subprojects/wlroots build/sway/sway ``` To enable the address sanitizer (ASan) and the undefined behavior sanitizer (UBSan), add `-Db_sanitize=address,undefined` to the `meson` command.