From d95c5cc550804f3e34e19383234c2d2a25af6721 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Fri, 24 Jun 2022 15:08:57 +0300 Subject: [PATCH] README.md: Add a section on debug builds. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index fd714d1e..22dc68f6 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,20 @@ is only useful after building Proton. `make dxvk` / `make vkd3d-proton` - rebuild DXVK / vkd3d-proton. +### Debug Builds + +To prevent symbol stripping add `UNSTRIPPED_BUILD=1` to the `make` +invocation. This should be used only with a clean build directory. + +E.g.: + +``` +mkdir ../debug-proton-build && cd ../debug-proton-build +../proton/configure.sh --enable-ccache --build-name=debug_build +make UNSTRIPPED_BUILD=1 install` +``` + + Install Proton locally ----------------------