diff options
author | Alexey Neyman <stilor@att.net> | 2015-11-05 15:49:19 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-11-13 10:24:22 -0800 |
commit | 6f7e6b9969681cb3f85464066fa819fa90060783 (patch) | |
tree | 38c38c52c2561153342b6cb843402f2a50f9a04f /steps.mk | |
parent | e78251b75158689ace2194e8c87aa7b7bb5ec951 (diff) | |
download | crosstool-ng-6f7e6b9969681cb3f85464066fa819fa90060783.tar.gz crosstool-ng-6f7e6b9969681cb3f85464066fa819fa90060783.tar.bz2 crosstool-ng-6f7e6b9969681cb3f85464066fa819fa90060783.zip |
Build companion libs for target.
Currently, only libelf has a for-target step - but it generalizes
the step to hook other libraries into this step.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'steps.mk')
-rw-r--r-- | steps.mk | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -18,24 +18,24 @@ help-env:: # but are actual steps for canadian and cross-native. # Please keep the last line with a '\' and keep the following empy line: # it helps when diffing and merging. -CT_STEPS := libc_check_config \ - companion_libs_for_build \ - binutils_for_build \ - companion_libs_for_host \ - binutils_for_host \ - cc_core_pass_1 \ - kernel_headers \ - libc_start_files \ - cc_core_pass_2 \ - libc \ - cc_for_build \ - cc_for_host \ - libc_post_cc \ - libelf_for_target \ - binutils_for_target \ - debug \ - test_suite \ - finish \ +CT_STEPS := libc_check_config \ + companion_libs_for_build \ + binutils_for_build \ + companion_libs_for_host \ + binutils_for_host \ + cc_core_pass_1 \ + kernel_headers \ + libc_start_files \ + cc_core_pass_2 \ + libc \ + cc_for_build \ + cc_for_host \ + libc_post_cc \ + companion_libs_for_target \ + binutils_for_target \ + debug \ + test_suite \ + finish \ # Keep an empty line above this comment, so the last # back-slash terminated line works as expected. |