From f5b0f844f230eed915fcbefe5d4ff14cca24d96f Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Thu, 11 Feb 2021 18:02:01 +0100 Subject: [PATCH] Commented on the unsigned/signed char CMake changes --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 517561a9a..98ae4f0c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,6 +103,7 @@ if (MINGW) endif () if (NOT MSVC) + # ARMs (Raspberry PI) use an unsigned char by default. Let's make it consistent for PrusaSlicer on all platforms. add_compile_options(-fsigned-char) endif ()