Skip to content

Commit

Permalink
Install libTracyClient when WITH_TRACY is enabled.
Browse files Browse the repository at this point in the history
Without this, `make install` does not bundle `libTracyClient`, which is
important when trying to redistribute a build of Julia that is built
with Tracy support.
  • Loading branch information
staticfloat committed Apr 26, 2023
1 parent 04cb800 commit 15663e6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ JL_PRIVATE_LIBS-$(USE_SYSTEM_CSL) += libwinpthread
else
JL_PRIVATE_LIBS-$(USE_SYSTEM_CSL) += libpthread
endif
ifeq ($(WITH_TRACY),1)
JL_PRIVATE_LIBS-0 += libTracyClient
endif


ifeq ($(OS),Darwin)
Expand Down

0 comments on commit 15663e6

Please sign in to comment.