First of all, although it's outdated, I suggest you read the following
http://releases.llvm.org/2.7/docs/UsingLibraries.html
it's a nice read. In that is suggested too look up llvm-config
.
LLVM comes with a tool, llvm-config
which can help you in your case.
Second, I warmly suggest you have a look at the following SO post
How do I link when building with llvm libraries?
which also mention this tool.
Looking at the documentation I linked, this is the synopsis:
llvm-config option [components...]
where if components
is not specified, its default value is all
which according to the doc:
Includes all LLVM libraries. The default if no components are specified.
I will explicitly add all
which can be omitted in your case.
llvm-config --components all
:
Print all valid component names.
while
llvm-config --libs all
:
Print all the libraries needed to link against the specified LLVM components, including any dependencies.
Please check llvm-config --help
for more options and info.
So to answer your question, you could print all the components with the command mentioned above and put them inside your llvm_map_components_to_libnames()
.