From: José Fonseca Date: Thu, 3 Nov 2011 14:32:45 +0000 (+0000) Subject: Update glxtrace.so path in docs. X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=dab19cdfd3dbcd2d0f3f8f084d7c79bff69c2f86;p=apitrace Update glxtrace.so path in docs. --- diff --git a/README.markdown b/README.markdown index 4954053..d7720ac 100644 --- a/README.markdown +++ b/README.markdown @@ -71,7 +71,7 @@ Tracing manually Run the application you want to trace as - LD_PRELOAD=/path/to/glxtrace.so /path/to/application + LD_PRELOAD=/path/to/apitrace/wrappers/glxtrace.so /path/to/application and it will generate a trace named `application.trace` in the current directory. You can specify the written trace filename by setting the @@ -86,10 +86,10 @@ segfault when trying to write to them. For these applications it is possible to trace by using `glxtrace.so` as an ordinary `libGL.so` and injecting into `LD_LIBRARY_PATH`: - ln -s glxtrace.so libGL.so - ln -s glxtrace.so libGL.so.1 - ln -s glxtrace.so libGL.so.1.2 - export LD_LIBRARY_PATH=/path/to/directory/where/glxtrace/is:$LD_LIBRARY_PATH + ln -s glxtrace.so wrappers/libGL.so + ln -s glxtrace.so wrappers/libGL.so.1 + ln -s glxtrace.so wrappers/libGL.so.1.2 + export LD_LIBRARY_PATH=/path/to/apitrace/wrappers:$LD_LIBRARY_PATH export TRACE_LIBGL=/path/to/real/libGL.so.1 /path/to/application