README.md: Add a section on debug builds.

This commit is contained in:
Arkadiusz Hiler 2022-06-24 15:08:57 +03:00
parent 28a0276cda
commit d95c5cc550

View file

@ -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
----------------------