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:
parent
79a9d9e06e
commit
4130d9a2d7
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue