[PATCH] D118270: Initialize terminfo.bzl linkopts to None
Jon Perkins via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 26 10:25:08 PST 2022
jonmeow updated this revision to Diff 403328.
jonmeow added a comment.
Trying to modify the commit.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D118270/new/
https://reviews.llvm.org/D118270
Files:
utils/bazel/terminfo.bzl
Index: utils/bazel/terminfo.bzl
===================================================================
--- utils/bazel/terminfo.bzl
+++ utils/bazel/terminfo.bzl
@@ -113,6 +113,7 @@
# these would be provided as lists, but Bazel doesn't currently
# support that. See: https://github.com/bazelbuild/bazel/issues/12178
linkopts_candidates = [[x] for x in repository_ctx.attr.candidate_system_linkopts]
+ linkopts = None
# For each candidate, try to use it to link our test source file.
for linkopts_candidate in linkopts_candidates:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118270.403328.patch
Type: text/x-patch
Size: 580 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220126/41f9a2ec/attachment.bin>
More information about the llvm-commits
mailing list