From 2ba224e1526681c1a0b1b2b095b1ef2b0874db48 Mon Sep 17 00:00:00 2001 From: bfredl Date: Sun, 26 Feb 2023 12:51:03 +0100 Subject: refactor(log): reduce compile time LOG_LEVEL granularity --- contrib/local.mk.example | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'contrib/local.mk.example') diff --git a/contrib/local.mk.example b/contrib/local.mk.example index 20396e86ae..4bd026cf87 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -31,9 +31,10 @@ # often. You can disable it explicitly: # CMAKE_EXTRA_FLAGS += -DENABLE_LTO=OFF -# Log levels: 0 (DEBUG), 1 (INFO), 2 (WARNING), 3 (ERROR) -# Default is 1 (INFO) unless CMAKE_BUILD_TYPE is Release or RelWithDebInfo. -# CMAKE_EXTRA_FLAGS += -DMIN_LOG_LEVEL=1 +# Log levels: DEBUG, INFO, WARNING, ERROR +# For Debug builds all log levels are used +# For Release and RelWithDebInfo builds only WARNING and ERROR are used, unless: +# CMAKE_EXTRA_FLAGS += -DLOG_DEBUG # By default, nvim uses bundled versions of its required third-party # dependencies. -- cgit From 9f8f287c6139b8b8ff2809f4d1aebb57021cd043 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sat, 9 Sep 2023 18:14:52 +0200 Subject: build: remove luarocks Luarocks is no longer needed after 25e51d393a420765d5efd44c1b4be823a5cf280a. --- contrib/local.mk.example | 1 - 1 file changed, 1 deletion(-) (limited to 'contrib/local.mk.example') diff --git a/contrib/local.mk.example b/contrib/local.mk.example index 4bd026cf87..bda2c1b4dc 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -46,7 +46,6 @@ # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBUV=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBVTERM=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LUAJIT=OFF -# DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LUAROCKS=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_MSGPACK=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_UNIBILIUM=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_UTF8PROC=OFF -- cgit