From 7768f97333baa850905df1561feceaf3dcd16845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Tue, 12 Dec 2023 17:05:29 +0100 Subject: [PATCH] Meta: Force signed char on all architectures --- Meta/CMake/serenity_compile_options.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/CMake/serenity_compile_options.cmake b/Meta/CMake/serenity_compile_options.cmake index ecb5ef132f..e43597012f 100644 --- a/Meta/CMake/serenity_compile_options.cmake +++ b/Meta/CMake/serenity_compile_options.cmake @@ -20,6 +20,7 @@ add_compile_options(-Wwrite-strings) add_compile_options(-fno-delete-null-pointer-checks) add_compile_options(-ffile-prefix-map=${SerenityOS_SOURCE_DIR}=.) add_compile_options(-fno-omit-frame-pointer) +add_compile_options(-fsigned-char) add_compile_options(-fsized-deallocation) add_compile_options(-fstack-clash-protection) add_compile_options(-fstack-protector-strong)