From ba25970f27a4f13e566e645c9d6b5f1e95fb31ec Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Fri, 28 Dec 2012 08:52:13 +0000 Subject: [PATCH] Always use -fsigned-char .. The compiler I was using had -funsigned-char by default on ARM (which was breaking everything ...) try it .. add -funsigned-char and run the test-suite (only 2 out of all the tests actually pass, and it's by fluke) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d35726d..b8d953d 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ CYGWIN = $(findstring CYGWIN, $(UNAME)) MINGW = $(findstring MINGW32, $(UNAME)) CC ?= clang -CFLAGS += -Wall -Wextra -I. -pedantic-errors -fno-strict-aliasing +CFLAGS += -Wall -Wextra -I. -pedantic-errors -fno-strict-aliasing -fsigned-char #turn on tons of warnings if clang is present # but also turn off the STUPID ONES ifeq ($(CC), clang) -- 2.39.2