mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
build: set deps default build type to Release (#27495)
Debugging dependencies is rare so a Debug build type is usually not needed. In cases where it _is_ needed it is easy to rebuild in Debug mode. But since Release builds are more common, it makes more sense as a default. For Neovim itself we stick with a Debug build as a default, since rebuilding and debugging is done _much_ more frequently than with dependencies (which we _mostly_ expect to "just work"). Also remove the CMAKE_BUILD_TYPE variable in the Makefile, since this is set by default in CMake.
This commit is contained in:
parent
bd5008de07
commit
a75ef40f4c
@ -129,7 +129,7 @@ option(ENABLE_LIBINTL "enable libintl" ON)
|
|||||||
|
|
||||||
message(STATUS "CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}")
|
message(STATUS "CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
set_default_buildtype()
|
set_default_buildtype(Debug)
|
||||||
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
||||||
if(NOT isMultiConfig)
|
if(NOT isMultiConfig)
|
||||||
# Unlike build dependencies in cmake.deps, we assume we want dev dependencies
|
# Unlike build dependencies in cmake.deps, we assume we want dev dependencies
|
||||||
|
1
Makefile
1
Makefile
@ -10,7 +10,6 @@ filter-true = $(strip $(filter-out 1 on ON true TRUE,$1))
|
|||||||
all: nvim
|
all: nvim
|
||||||
|
|
||||||
CMAKE ?= $(shell (command -v cmake3 || echo cmake))
|
CMAKE ?= $(shell (command -v cmake3 || echo cmake))
|
||||||
CMAKE_BUILD_TYPE ?= Debug
|
|
||||||
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE)
|
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE)
|
||||||
# Extra CMake flags which extend the default set
|
# Extra CMake flags which extend the default set
|
||||||
CMAKE_EXTRA_FLAGS ?=
|
CMAKE_EXTRA_FLAGS ?=
|
||||||
|
@ -17,7 +17,7 @@ include(Deps)
|
|||||||
include(Find)
|
include(Find)
|
||||||
include(Util)
|
include(Util)
|
||||||
|
|
||||||
set_default_buildtype()
|
set_default_buildtype(Release)
|
||||||
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
||||||
if(NOT isMultiConfig)
|
if(NOT isMultiConfig)
|
||||||
list(APPEND DEPS_CMAKE_ARGS -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})
|
list(APPEND DEPS_CMAKE_ARGS -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})
|
||||||
|
@ -148,8 +148,8 @@ function(add_glob_target)
|
|||||||
add_custom_target(${ARG_TARGET} DEPENDS ${touch_list})
|
add_custom_target(${ARG_TARGET} DEPENDS ${touch_list})
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# Set default build type to Debug. Also limit the list of allowable build types
|
# Set default build type to BUILD_TYPE. Also limit the list of allowable build
|
||||||
# to the ones defined in variable allowableBuildTypes.
|
# types to the ones defined in variable allowableBuildTypes.
|
||||||
#
|
#
|
||||||
# The correct way to specify build type (for example Release) for
|
# The correct way to specify build type (for example Release) for
|
||||||
# single-configuration generators (Make and Ninja) is to run
|
# single-configuration generators (Make and Ninja) is to run
|
||||||
@ -165,21 +165,27 @@ endfunction()
|
|||||||
#
|
#
|
||||||
# Passing CMAKE_BUILD_TYPE for multi-config generators will not only not be
|
# Passing CMAKE_BUILD_TYPE for multi-config generators will not only not be
|
||||||
# used, but also generate a warning for the user.
|
# used, but also generate a warning for the user.
|
||||||
function(set_default_buildtype)
|
function(set_default_buildtype BUILD_TYPE)
|
||||||
set(allowableBuildTypes Debug Release MinSizeRel RelWithDebInfo)
|
set(allowableBuildTypes Debug Release MinSizeRel RelWithDebInfo)
|
||||||
|
if(NOT BUILD_TYPE IN_LIST allowableBuildTypes)
|
||||||
|
message(FATAL_ERROR "Invalid build type: ${BUILD_TYPE}")
|
||||||
|
endif()
|
||||||
|
|
||||||
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
||||||
if(isMultiConfig)
|
if(isMultiConfig)
|
||||||
|
# Multi-config generators use the first element in CMAKE_CONFIGURATION_TYPES as the default build type
|
||||||
|
list(INSERT allowableBuildTypes 0 ${BUILD_TYPE})
|
||||||
|
list(REMOVE_DUPLICATES allowableBuildTypes)
|
||||||
set(CMAKE_CONFIGURATION_TYPES ${allowableBuildTypes} PARENT_SCOPE)
|
set(CMAKE_CONFIGURATION_TYPES ${allowableBuildTypes} PARENT_SCOPE)
|
||||||
if(CMAKE_BUILD_TYPE)
|
if(CMAKE_BUILD_TYPE)
|
||||||
message(WARNING "CMAKE_BUILD_TYPE specified which is ignored on \
|
message(WARNING "CMAKE_BUILD_TYPE specified which is ignored on \
|
||||||
multi-configuration generators. Defaulting to Debug build type.")
|
multi-configuration generators. Defaulting to ${BUILD_TYPE} build type.")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "${allowableBuildTypes}")
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "${allowableBuildTypes}")
|
||||||
if(NOT CMAKE_BUILD_TYPE)
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
message(STATUS "CMAKE_BUILD_TYPE not specified, default is 'Debug'")
|
message(STATUS "CMAKE_BUILD_TYPE not specified, default is '${BUILD_TYPE}'")
|
||||||
set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build" FORCE)
|
set(CMAKE_BUILD_TYPE ${BUILD_TYPE} CACHE STRING "Choose the type of build" FORCE)
|
||||||
elseif(NOT CMAKE_BUILD_TYPE IN_LIST allowableBuildTypes)
|
elseif(NOT CMAKE_BUILD_TYPE IN_LIST allowableBuildTypes)
|
||||||
message(FATAL_ERROR "Invalid build type: ${CMAKE_BUILD_TYPE}")
|
message(FATAL_ERROR "Invalid build type: ${CMAKE_BUILD_TYPE}")
|
||||||
else()
|
else()
|
||||||
|
Loading…
Reference in New Issue
Block a user