diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-17 18:01:28 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-17 18:01:28 +0200 |
commit | 70659870b73947273ee646151faa99dfa15beec3 (patch) | |
tree | c81ea10f7a1db28ec9bc9a041243bf7ea8cd87c6 /scripts | |
parent | f6de807fc0c1c9dc8cda464cbe29ea0514b9d2fa (diff) | |
download | crosstool-ng-70659870b73947273ee646151faa99dfa15beec3.tar.gz crosstool-ng-70659870b73947273ee646151faa99dfa15beec3.tar.bz2 crosstool-ng-70659870b73947273ee646151faa99dfa15beec3.zip |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/libc/newlib.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index 21886917..3907d7bf 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" |