aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-10-31 12:12:18 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-11-01 08:20:24 +0100
commit1997ef134a9a1504fdaf6e7751f470e92d283a45 (patch)
treed4ee9cbc13a47c18769104b97acc284496eebd9f /src
parentd7359a87425dc38efda4f74bd580bae9946abe31 (diff)
downloadrneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.tar.gz
rneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.tar.bz2
rneovim-1997ef134a9a1504fdaf6e7751f470e92d283a45.zip
build: set char to always be signed
Sticking to the same convention makes it easier to reason about the code and reduces complexity.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/CMakeLists.txt8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 9cad80db23..49402a36a8 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -100,7 +100,8 @@ else()
-Wdouble-promotion
-Wmissing-noreturn
-Wmissing-format-attribute
- -Wmissing-prototypes)
+ -Wmissing-prototypes
+ -fsigned-char)
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
target_compile_options(main_lib INTERFACE -fno-common
@@ -172,11 +173,6 @@ if(CI_BUILD)
endif()
endif()
-option(UNSIGNED_CHAR "Set char to be unsigned" OFF)
-if(UNSIGNED_CHAR)
- target_compile_options(main_lib INTERFACE -funsigned-char)
-endif()
-
target_compile_definitions(main_lib INTERFACE INCLUDE_GENERATED_DECLARATIONS)
# Remove --sort-common from linker flags, as this seems to cause bugs (see #2641, #3374).