1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:07:46 +00:00

Meta: Force signed char on all architectures

This commit is contained in:
Sönke Holz 2023-12-12 17:05:29 +01:00 committed by Andrew Kaster
parent a1cf2708ee
commit 7768f97333

View file

@ -20,6 +20,7 @@ add_compile_options(-Wwrite-strings)
add_compile_options(-fno-delete-null-pointer-checks) add_compile_options(-fno-delete-null-pointer-checks)
add_compile_options(-ffile-prefix-map=${SerenityOS_SOURCE_DIR}=.) add_compile_options(-ffile-prefix-map=${SerenityOS_SOURCE_DIR}=.)
add_compile_options(-fno-omit-frame-pointer) add_compile_options(-fno-omit-frame-pointer)
add_compile_options(-fsigned-char)
add_compile_options(-fsized-deallocation) add_compile_options(-fsized-deallocation)
add_compile_options(-fstack-clash-protection) add_compile_options(-fstack-clash-protection)
add_compile_options(-fstack-protector-strong) add_compile_options(-fstack-protector-strong)