We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65164ac commit e24ee59Copy full SHA for e24ee59
1 file changed
CMakeLists.txt
@@ -61,6 +61,11 @@ if(TARGET_OS STREQUAL "windows")
61
add_compile_definitions(${target} PRIVATE _UNICODE) # C-runtime
62
endif()
63
64
+# We assume that char is signed in various places in the code. In particular,
65
+# the Str.StrToInts test will fail when char is not signed and names containing
66
+# special characters will be displayed incorrectly on servers.
67
+add_compiler_flag_if_supported(OUR_FLAGS -fsigned-char)
68
+
69
set(LINK_FLAGS_PLATFORM "")
70
71
# use the mock collision from the test code
0 commit comments