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.
Port.get()
1 parent 30c96f6 commit 3fb907dCopy full SHA for 3fb907d
tools/ports/__init__.py
@@ -390,8 +390,8 @@ def get_libs(settings):
390
for port in dependency_order(needed):
391
if port.needed(settings):
392
port.linker_setup(Ports, settings)
393
- # ports return their output files, which will be linked, or a txt file
394
- ret += [f for f in port.get(Ports, settings, shared) if not f.endswith('.txt')]
+ # port.get returns a list of libraries to link
+ ret += port.get(Ports, settings, shared)
395
396
ret.reverse()
397
return ret
0 commit comments