summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-05-23 18:50:47 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-05-23 18:50:47 +0000
commit0f7ea5567bae5dbbe4ea64e7c13c001469c01cbe (patch)
tree13dfc1670227a4359d1feb437ae30bc8db11f4f4
parent8e4a41614394fe3e13bba1bf0036fe0926e4d70d (diff)
downloadfreertos-0f7ea5567bae5dbbe4ea64e7c13c001469c01cbe.tar.gz
freertos-0f7ea5567bae5dbbe4ea64e7c13c001469c01cbe.tar.bz2
freertos-0f7ea5567bae5dbbe4ea64e7c13c001469c01cbe.tar.xz
Add in #define configQUEUE_REGISTRY_SIZE 0
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@380 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
-rw-r--r--Demo/ARM7_LPC2106_GCC/FreeRTOSConfig.h1
-rw-r--r--Demo/ARM7_LPC2106_GCC/Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/Demo/ARM7_LPC2106_GCC/FreeRTOSConfig.h b/Demo/ARM7_LPC2106_GCC/FreeRTOSConfig.h
index 7f8ed286..4ae9a113 100644
--- a/Demo/ARM7_LPC2106_GCC/FreeRTOSConfig.h
+++ b/Demo/ARM7_LPC2106_GCC/FreeRTOSConfig.h
@@ -75,6 +75,7 @@
#define configUSE_TRACE_FACILITY 0
#define configUSE_16_BIT_TICKS 0
#define configIDLE_SHOULD_YIELD 1
+#define configQUEUE_REGISTRY_SIZE 0
/* Co-routine definitions. */
#define configUSE_CO_ROUTINES 0
diff --git a/Demo/ARM7_LPC2106_GCC/Makefile b/Demo/ARM7_LPC2106_GCC/Makefile
index 3e85db6e..021a03df 100644
--- a/Demo/ARM7_LPC2106_GCC/Makefile
+++ b/Demo/ARM7_LPC2106_GCC/Makefile
@@ -44,7 +44,7 @@ WARNINGS=-Wall -Wextra -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align
#
CFLAGS=$(WARNINGS) -D $(RUN_MODE) -D GCC_ARM7 -I. -I../../Source/include \
-I../Common/include $(DEBUG) -mcpu=arm7tdmi -T$(LDSCRIPT) \
- $(OPTIM) -fomit-frame-pointer
+ $(OPTIM) -fomit-frame-pointer -fno-strict-aliasing
ifeq ($(USE_THUMB_MODE),YES)
CFLAGS += -mthumb-interwork -D THUMB_INTERWORK