Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jp7677/dxvk-nvapi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Peters <jp7677@gmail.com>2022-07-01 12:39:54 +0300
committerJens Peters <jp7677@gmail.com>2022-07-01 12:39:54 +0300
commitf630dbdbb0f778b17a436bf65845d62acce869af (patch)
treed3362b4ad9bf718996c53664ebdab8f727e36277
parent6e1979393a5027cbed5bb4201e44b542f6878673 (diff)
meta: Improve debug snippet
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7d5cf49..e8ae4bb 100644
--- a/README.md
+++ b/README.md
@@ -94,11 +94,10 @@ Producing a debug build and starting a debugging session with the test suite can
meson --cross-file "./build-win64.txt" --buildtype "debugoptimized" -Denable_tests=True build/dev
meson compile -C build/dev
-ln -sr build/dev/src/nvapi64.dll build/dev/tests/nvapi64.dll # to ensure that nvapi64-tests.exe finds nvapi64.dll
-DXVK_LOG_LEVEL=none DXVK_NVAPI_LOG_LEVEL=none WINEDEBUG=-all WINEDLLOVERRIDES=nvapi64=n winedbg --gdb build/dev/tests/nvapi64-tests.exe [@all]
+DXVK_LOG_LEVEL=none DXVK_NVAPI_LOG_LEVEL=none WINEDEBUG=-all WINEDLLOVERRIDES=nvapi64=n WINEPATH=build/dev/src winedbg --gdb build/dev/tests/nvapi64-tests.exe [@all]
```
-Once the debug session has started, use `c` to start/continue execution and a.o. `bt` to show a proper stacktrace after a segmentation fault.
+Once the debug session has started, use `c` to start/continue execution and a.o. `bt` to show a proper stacktrace after a segmentation fault. Ensure to have no other native `nvapi64.dll` in the Wine prefix, otherwise this one gets precedence over the one found in `WINEPATH`.
## References and inspirations