From aa5ecfe848edce55a8679f133996096ea0aef879 Mon Sep 17 00:00:00 2001 From: "Dementiev, Roman" Date: Sun, 6 Oct 2024 09:31:40 +0200 Subject: [PATCH] improve documentation Change-Id: I5561d4f64632235340faa619d490266f991c7f1e --- README.md | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a7ebf5b..5f8ebed2 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ or clone the repository first, and then update submodules with: git submodule update --init --recursive ``` -Install cmake then: +Install cmake (and libasan on Linux) then: ``` mkdir build diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 115f0c72..f9451b68 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -84,7 +84,7 @@ if(UNIX) # LINUX, FREE_BSD, APPLE set(PCM_DYNAMIC_ASAN "") set(PCM_STATIC_ASAN "-static-libasan") message(STATUS "Using static libasan") - message(STATUS "To use dynamic libasan, use -DPCM_NO_STATIC_LIBASAN=1 option (required for CentOS)") + message(STATUS "To use dynamic libasan, use -DPCM_NO_STATIC_LIBASAN=1 option (required for CentOS and arch Linux)") endif() endif()