Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Details
Details
- Reviewers
ldionne - Group Reviewers
Restricted Project - Commits
- rG35f798d05d51: [libcxx] CI: only build native target for bootstrapping-build
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Rough estimate of improvement:
Number of source files built: 3610 -> 2589
Runtime: 24m -> 21m
Comment Actions
Thanks for the improvement!
libcxx/utils/ci/run-buildbot | ||
---|---|---|
479 | What is the difference between Native and host? |
Comment Actions
Thanks for the review!
libcxx/utils/ci/run-buildbot | ||
---|---|---|
479 | You can see at llvm/cmake/config-ix.cmake:497 that Native and host are just synonyms: foreach (NATIVE_KEYWORD host Native) list(FIND LLVM_TARGETS_TO_BUILD ${NATIVE_KEYWORD} idx) if( NOT idx LESS 0 ) list(REMOVE_AT LLVM_TARGETS_TO_BUILD ${idx}) list(APPEND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH}) list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD) endif() endforeach() |
What is the difference between Native and host?