patches/uClibc/0.9.32/100-bump-version-to-0.9.32.1-git.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:43:07 2011 +0200 (2011-07-17)
changeset 2893 a8a65758664f
permissions -rw-r--r--
cc/gcc: do not use the core pass-2 to build the baremetal compiler

In case we build a baremetal compiler, use the standard passes:
- core_cc is used to build the C library;
- as such, it is meant to run on build, not host;
- the final compiler is meant to run on host;

As the current final compiler step can not build a baremetal compiler,
call the core backend from the final step.

NB: Currently, newlib is built during the start_files pass, so we have
to have a core compiler by then... Once we can build the baremetal
compiler from the final cc step, then we can move the newlib build to
the proper step, and then get rid of the core pass-1 static compiler...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2518
     1
commit 608e138586993d3c59c65c2958d9a98cf0d4d1eb
yann@2518
     2
Author: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@2518
     3
Date:   Wed Jun 8 21:47:42 2011 +0200
yann@2518
     4
yann@2518
     5
    bump version to 0.9.32.1-git
yann@2518
     6
    
yann@2518
     7
    Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
yann@2518
     8
yann@2518
     9
diff --git a/Rules.mak b/Rules.mak
yann@2518
    10
index fe06c24..a00deea 100644
yann@2518
    11
--- a/Rules.mak
yann@2518
    12
+++ b/Rules.mak
yann@2518
    13
@@ -106,7 +106,7 @@ export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
yann@2518
    14
 MAJOR_VERSION := 0
yann@2518
    15
 MINOR_VERSION := 9
yann@2518
    16
 SUBLEVEL      := 32
yann@2518
    17
-EXTRAVERSION  :=
yann@2518
    18
+EXTRAVERSION  :=.1-git
yann@2518
    19
 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
yann@2518
    20
 ABI_VERSION   := $(MAJOR_VERSION)
yann@2518
    21
 ifneq ($(EXTRAVERSION),)