From 4ff82b76e5e3fc61ac969deb029ea291cf5c0a85 Mon Sep 17 00:00:00 2001 From: Salvatore Pitrulli Date: Fri, 1 Apr 2011 08:53:05 +0200 Subject: [PATCH] Removed -fsigned-char GCC compiler options. --- cpu/stm32w108/Makefile.stm32w108 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/stm32w108/Makefile.stm32w108 b/cpu/stm32w108/Makefile.stm32w108 index 130c17114..1f27653a1 100644 --- a/cpu/stm32w108/Makefile.stm32w108 +++ b/cpu/stm32w108/Makefile.stm32w108 @@ -92,12 +92,12 @@ ifndef DEBUG OPTI = -Os -ffunction-sections endif -CFLAGSNO = -mthumb -mcpu=cortex-m3 -fsigned-char -D "PLATFORM_HEADER=\"hal/micro/cortexm3/compiler/gnu.h\"" \ +CFLAGSNO = -mthumb -mcpu=cortex-m3 -D "PLATFORM_HEADER=\"hal/micro/cortexm3/compiler/gnu.h\"" \ -D BOARD_HEADER=\"board.h\" -g -Wall -Wno-strict-aliasing -mlittle-endian \ -D BOARD_MB851 -D CORTEXM3 -D CORTEXM3_STM32W108 -D PHY_STM32W108XX -D DISABLE_WATCHDOG -D ENABLE_ADC_EXTENDED_RANGE_BROKEN \ -D __SOURCEFILE__=\"$*.c\" CFLAGS += $(CFLAGSNO) $(OPTI) -ASFLAGS = -mthumb -mcpu=cortex-m3 -fsigned-char -c -g -Wall -Os -ffunction-sections \ +ASFLAGS = -mthumb -mcpu=cortex-m3 -c -g -Wall -Os -ffunction-sections \ -mlittle-endian -fshort-enums -x assembler-with-cpp -Wa,-EL LDFLAGS += -mcpu=cortex-m3 \ -mthumb \