Skip to content

Commit 37420ef

Browse files
authored
build: set MIN_LOG_LEVEL correctly (neovim#7419)
closes neovim#7283 regression by 42d8929 - Don't need to explicitly put "-O2 -g" in RelWithDebInfo; CMake does that already. That was left-over from 42d8929 which removed the "Dev" custom build-type, but repurposed the logic for RelWithDebInfo. - `if(DEFINED MIN_LOG_LEVEL)` doesn't work. - `if(${MIN_LOG_LEVEL} MATCHES "^$")` doesn't work if -DMIN_LOG_LEVEL is omitted. - `if(MIN_LOG_LEVEL)` also isn't what we want: it would be true if MIN_LOG_LEVEL=0.
1 parent 6338199 commit 37420ef

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

CMakeLists.txt

+11-13
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,14 @@ else()
113113
set(HAS_OG_FLAG 0)
114114
endif()
115115

116-
# Set custom build flags for RelWithDebInfo.
117-
# -DNDEBUG purposely omitted because we want assertions.
116+
#
117+
# Build-type: RelWithDebInfo
118+
#
118119
if(HAS_OG_FLAG)
119-
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-Og -g"
120-
CACHE STRING "Flags used by the compiler during release-with-debug builds." FORCE)
121-
elseif(NOT MSVC)
122-
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g"
123-
CACHE STRING "Flags used by the compiler during release-with-debug builds." FORCE)
124-
elseif(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES DNDEBUG)
120+
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -Og -g")
121+
endif()
122+
# We _want_ assertions in RelWithDebInfo build-type.
123+
if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES DNDEBUG)
125124
string(REPLACE "-DNDEBUG" "" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
126125
endif()
127126

@@ -479,20 +478,19 @@ install_helper(
479478
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
480479

481480
# MIN_LOG_LEVEL for log.h
482-
if(DEFINED MIN_LOG_LEVEL)
481+
if("${MIN_LOG_LEVEL}" MATCHES "^$")
482+
message(STATUS "MIN_LOG_LEVEL not specified")
483+
else()
483484
if(NOT MIN_LOG_LEVEL MATCHES "^[0-3]$")
484485
message(FATAL_ERROR "invalid MIN_LOG_LEVEL: " ${MIN_LOG_LEVEL})
485486
endif()
486487
message(STATUS "MIN_LOG_LEVEL set to ${MIN_LOG_LEVEL}")
487-
else()
488-
message(STATUS "MIN_LOG_LEVEL not specified, defaulting to 1 (INFO)")
489488
endif()
490489

491490
# Go down the tree.
492491

493492
add_subdirectory(src/nvim)
494-
# Read compilation flags from src/nvim,
495-
# used in config subdirectory below.
493+
# Read compilation flags from src/nvim, used in config subdirectory below.
496494
include(GetCompileFlags)
497495
get_compile_flags(NVIM_VERSION_CFLAGS)
498496

src/nvim/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ if(NOT MSVC)
164164
endif()
165165
endif()
166166

167-
if(DEFINED MIN_LOG_LEVEL)
167+
if(NOT "${MIN_LOG_LEVEL}" MATCHES "^$")
168168
add_definitions(-DMIN_LOG_LEVEL=${MIN_LOG_LEVEL})
169169
endif()
170170

0 commit comments

Comments
 (0)