4 There are a varieties of utilities we use with cairo.
10 This is a small shared library designed to be preloaded by the
11 linker and its purpose is to make the backtrace_symbols() function
12 of glibc produce more useful source reference information.
16 make backtrace-symbols.so
20 LD_PRELOAD=$PWD/backtrace-symbols.so app-to-run
22 This code should be contributed back to glibc at some point.
28 This is a small shared library designed to be preloaded by the
29 linker and its purpose is to make the malloc_stats() function
30 of glibc produce more useful information.
38 LD_PRELOAD=$PWD/malloc-stats.so app-to-run
40 This works best when backtrace-symbols is in use. That is:
42 LD_PRELOAD="$PWD/backtrace-symbols.so $PWD/malloc-stats.so" app-to-run
48 This tool can be used to trace all the cairo function calls made by an
49 applications. This is useful for either extracting a test case triggering
50 a bug from an application, or simply to get a general idea of how an
51 application is using cairo.
53 This tool lives outside the cairo source distribution right now and can
54 be found in a git repository at:
56 http://cgit.freedesktop.org/~ickle/cairo-trace/
58 There are plans to move it to this directory in the future, and possibly
59 install it on the system.
62 cairo-api-update and xr2cairo
63 -----------------------------
65 These two scripts were used to convert source code written for pre-1.0
66 cairo to newer API. See $(top_srcdir)/PORTING_GUIDE for more information.
68 These files are obsolete now and may be removed in a future version.