From 242fc9bfb4084a032cd1c7c1f27502f714e9a73e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 26 Jun 2018 18:04:10 +0200 Subject: [PATCH] Mention required libraries. --- NEWS | 2 ++ README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/NEWS b/NEWS index 98ccc979..e22a7f70 100644 --- a/NEWS +++ b/NEWS @@ -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) diff --git a/README.md b/README.md index f5e2b854..295485d2 100644 --- a/README.md +++ b/README.md @@ -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.