diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-17 18:56:30 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-17 18:56:30 +0200 |
commit | 2e3cc45633c343e63c84fd35f458a6ea1fdad28b (patch) | |
tree | 31b52a123b0daa335442e1539209c8041c230d22 /steps.mk | |
parent | 533e5c128c4c955a88c16d7469a569a2c4f8cfe3 (diff) | |
download | crosstool-ng-2e3cc45633c343e63c84fd35f458a6ea1fdad28b.tar.gz crosstool-ng-2e3cc45633c343e63c84fd35f458a6ea1fdad28b.tar.bz2 crosstool-ng-2e3cc45633c343e63c84fd35f458a6ea1fdad28b.zip |
complibs: split companion libraries to backend/frontend, a-la cc_core
Move the actual complibs codes to backend functions that builds the
required combo of build/host/target as requested by a frontend.
This split is currently a no-op, but is required for the upcoming
canadian-cross rework, where we'll be needing to build the complibs
twice, one for build/build, and one for build/host.
This applies to the six companion libraries:
- GMP
- MPFR
- PPL
- Cloog/PPL
- MPC
- libelf
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'steps.mk')
-rw-r--r-- | steps.mk | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -17,12 +17,12 @@ help-env:: # Please keep the last line with a '\' and keep the following empy line: # it helps when diffing and merging. CT_STEPS := libc_check_config \ - gmp \ - mpfr \ - ppl \ - cloog \ - mpc \ - libelf \ + gmp_for_host \ + mpfr_for_host \ + ppl_for_host \ + cloog_for_host \ + mpc_for_host \ + libelf_for_host \ binutils_for_host \ elf2flt_for_host \ sstrip_for_host \ |