1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Mention required libraries.

This commit is contained in:
Bartosz Taudul 2018-06-26 18:04:10 +02:00
parent 84c34ad826
commit 242fc9bfb4
2 changed files with 4 additions and 0 deletions

2
NEWS
View File

@ -82,6 +82,8 @@ v0.3.2 (xxxx-xx-xx)
- Zone begin.
- GPU zone begin.
- Zone stack trace now also displays frames from a real call trace.
- On Linux call stack frame name resolution requires a call to dladdr,
which in turn requires linking with libdl.
v0.2 (2018-04-05)

View File

@ -51,6 +51,8 @@ In the default configuration tracy is disabled. To enable it, add a `TRACY_ENABL
If you want to profile a short-lived application, add a `TRACY_NO_EXIT` define. In this configuration tracy will not exit until an incoming connection is made, even if the application has already finished.
On Unix make sure you are linking your application with libpthread and libdl.
#### Running the server
The easiest way to get going is to build the standalone server, available in the `standalone` directory. You can connect to localhost or remote clients and view the collected data right away.