summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-17 16:01:28 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-17 16:01:28 (GMT)
commit70659870b73947273ee646151faa99dfa15beec3 (patch)
treec81ea10f7a1db28ec9bc9a041243bf7ea8cd87c6
parentf6de807fc0c1c9dc8cda464cbe29ea0514b9d2fa (diff)
libc/newlib: build newlib in the proper step
Currently, newlib is built in the start_file step, which is wrong, but was needed when the baremetal integration was... well, 'unfinished'. Now that we build the baremetal compiler from the final cc step, and a proper core gcc in pass-1 and pass-2, we can move the newlib build to the step do_libc, where it belongs. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r--scripts/build/libc/newlib.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh
index 2188691..3907d7b 100644
--- a/scripts/build/libc/newlib.sh
+++ b/scripts/build/libc/newlib.sh
@@ -49,6 +49,10 @@ do_libc_check_config() {
}
do_libc_start_files() {
+ :
+}
+
+do_libc() {
local -a newlib_opts
CT_DoStep INFO "Installing C library"
@@ -128,10 +132,6 @@ do_libc_start_files() {
CT_EndStep
}
-do_libc() {
- :
-}
-
do_libc_finish() {
CT_DoStep INFO "Finishing C library"