We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5ea053 commit 7ba1753Copy full SHA for 7ba1753
pythonbuild/cpython.py
@@ -130,6 +130,9 @@ def parse_setup_line(line: bytes, variant: str):
130
elif word.startswith(b"-l"):
131
links.add(word[2:].decode("ascii"))
132
133
+ elif word.startswith(b"-hidden-l"):
134
+ links.add(word[len("-hidden-l") :].decode("ascii"))
135
+
136
elif word == b"-framework":
137
frameworks.add(words[i + 1].decode("ascii"))
138
0 commit comments