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

Add --bindir to llvm-config

parent 490a27bb
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,8 @@ if args == []: ...@@ -108,6 +108,8 @@ if args == []:
fail("no arguments") fail("no arguments")
elif args == ["--version"]: elif args == ["--version"]:
print("10.0.1") print("10.0.1")
elif args == ["--bindir"]:
print(prefix + "/bin")
elif args == ["--cppflags"]: elif args == ["--cppflags"]:
print("-I" + prefix + "/include -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS") print("-I" + prefix + "/include -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS")
elif args == ["--cxxflags"]: elif args == ["--cxxflags"]:
......
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