Fixed bug 3056866.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.0.x@2156 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-09-03 11:58:29 +00:00
parent 79a9d9e06e
commit 4130d9a2d7
4 changed files with 7 additions and 4 deletions

View File

@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 2.0.3
PROJECT_NUMBER = 2.0.4
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.

View File

@ -46,7 +46,7 @@
/**
* @brief Kernel version string.
*/
#define CH_KERNEL_VERSION "2.0.3"
#define CH_KERNEL_VERSION "2.0.4"
/**
* @brief Kernel version major number.
@ -61,7 +61,7 @@
/**
* @brief Kernel version patch number.
*/
#define CH_KERNEL_PATCH 3
#define CH_KERNEL_PATCH 4
/*
* Common values.

View File

@ -83,7 +83,7 @@ ifneq ($(TSRC),)
endif
else
# Pure ARM mode
CPFLAGS += -mno-thumb-interwork
CFLAGS += -mno-thumb-interwork
CPPFLAGS += -mno-thumb-interwork
ASFLAGS += -mno-thumb-interwork
LDFLAGS += -mno-thumb-interwork

View File

@ -58,6 +58,9 @@
*** Releases ***
*****************************************************************************
*** 2.0.4 ***
- FIX: Fixed reduced ARM7 performance with GCC 4.5.x (bug 3056866).
*** 2.0.3 ***
- Tests reports regenerated using GCC 4.5.1, small performance improvements
in all benchmarks.