This is an archive of the discontinued LLVM Phabricator instance.

[zorg][PowerPC] Don't checkout compiler-rt for runtime build
ClosedPublic

Authored by jsji on Nov 2 2020, 1:46 PM.

Details

Summary

ClangBuilder will append all dependent projects to
DLLVM_ENABLE_PROJECTS, so we will get
'-DLLVM_ENABLE_PROJECTS=clang;compiler-rt;lld;llvm;clang-tools-extra'
-DLLVM_ENABLE_RUNTIMES=compiler-rt

This is breaking builds.
We shouldn't have compiler-rt in DLLVM_ENABLE_PROJECTS anymore.

Event Timeline

jsji created this revision.Nov 2 2020, 1:46 PM
jsji requested review of this revision.Nov 2 2020, 1:46 PM
lei accepted this revision.Nov 2 2020, 1:50 PM
lei added a subscriber: lei.

thx for the fix.

This revision is now accepted and ready to land.Nov 2 2020, 1:50 PM
saghir accepted this revision.Nov 2 2020, 1:51 PM

Thanks, LGTM.

jsji added a comment.Nov 2 2020, 6:43 PM

@gkistanova When do we reconfig build master to pickup new changes? Is it done automatically or manually? Thanks.