This is an archive of the discontinued LLVM Phabricator instance.

Fix a cmake failure on Windows when LLVM_ENABLE_TERMINFO is set
AbandonedPublic

Authored by lanza on Aug 20 2020, 10:07 PM.

Details

Reviewers
phosek
Summary

The check that uniques these to variables is done under the condition
NOT PURE_WINDOWS and thus LLVM_ENABLE_TERMINFO can be 1 while
TERMINFO_LIB can be undefined. This is just to fix a build failure.

Diff Detail

Event Timeline

lanza created this revision.Aug 20 2020, 10:07 PM
Herald added a project: Restricted Project. · View Herald TranscriptAug 20 2020, 10:07 PM
lanza requested review of this revision.Aug 20 2020, 10:07 PM
lanza abandoned this revision.Aug 28 2020, 10:33 AM

Looks like it, I did this around the same time the patch landed. Thanks!