Skip to content
Snippets Groups Projects
Verified Commit c7e98955 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix library output of llvm-config

parent a5305923
No related branches found
No related tags found
No related merge requests found
......@@ -118,8 +118,7 @@ elif args[0] == "--libs":
libs = []
for component in args[1:]:
for lib in components[component].split(" "):
if not lib in libs:
libs.append(lib)
libs.append(lib)
print(" ".join(libs))
elif args[0] == "--shared-mode":
print("static")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment