llvm-config: Replace with C++ version (was llvm-config-2).
[oota-llvm.git] / tools / llvm-config / llvm-config.cpp
1 //===-- llvm-config.cpp - LLVM project configuration utility --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tool encapsulates information about an LLVM project configuration for
11 // use by other project's build environments (to determine installed path,
12 // available features, required libraries, etc.).
13 //
14 // Note that although this tool *may* be used by some parts of LLVM's build
15 // itself (i.e., the Makefiles use it to compute required libraries when linking
16 // tools), this tool is primarily designed to support external projects.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/ADT/Twine.h"
24 #include "llvm/Config/config.h"
25 #include "llvm/Config/llvm-config.h"
26 #include "llvm/Support/FileSystem.h"
27 #include "llvm/Support/Path.h"
28 #include "llvm/Support/TargetRegistry.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include <cstdlib>
31 #include <set>
32 #include <vector>
33
34 using namespace llvm;
35
36 // Include the build time variables we can report to the user. This is generated
37 // at build time from the BuildVariables.inc.in file by the build system.
38 #include "BuildVariables.inc"
39
40 // Include the component table. This creates an array of struct
41 // AvailableComponent entries, which record the component name, library name,
42 // and required components for all of the available libraries.
43 //
44 // Not all components define a library, we also use "library groups" as a way to
45 // create entries for pseudo groups like x86 or all-targets.
46 #include "LibraryDependencies.inc"
47
48 /// \brief Traverse a single component adding to the topological ordering in
49 /// \arg RequiredLibs.
50 ///
51 /// \param Name - The component to traverse.
52 /// \param ComponentMap - A prebuilt map of component names to descriptors.
53 /// \param VisitedComponents [in] [out] - The set of already visited components.
54 /// \param RequiredLibs [out] - The ordered list of required libraries.
55 static void VisitComponent(StringRef Name,
56                            const StringMap<AvailableComponent*> &ComponentMap,
57                            std::set<AvailableComponent*> &VisitedComponents,
58                            std::vector<StringRef> &RequiredLibs) {
59   // Lookup the component.
60   AvailableComponent *AC = ComponentMap.lookup(Name);
61   assert(AC && "Invalid component name!");
62
63   // Add to the visited table.
64   if (!VisitedComponents.insert(AC).second) {
65     // We are done if the component has already been visited.
66     return;
67   }
68
69   // Otherwise, visit all the dependencies.
70   for (unsigned i = 0; AC->RequiredLibraries[i]; ++i) {
71     VisitComponent(AC->RequiredLibraries[i], ComponentMap, VisitedComponents,
72                    RequiredLibs);
73   }
74
75   // Add to the required library list.
76   if (AC->Library)
77     RequiredLibs.push_back(AC->Library);
78 }
79
80 /// \brief Compute the list of required libraries for a given list of
81 /// components, in an order suitable for passing to a linker (that is, libraries
82 /// appear prior to their dependencies).
83 ///
84 /// \param Components - The names of the components to find libraries for.
85 /// \param RequiredLibs [out] - On return, the ordered list of libraries that
86 /// are required to link the given components.
87 void ComputeLibsForComponents(const std::vector<StringRef> &Components,
88                               std::vector<StringRef> &RequiredLibs) {
89   std::set<AvailableComponent*> VisitedComponents;
90
91   // Build a map of component names to information.
92   StringMap<AvailableComponent*> ComponentMap;
93   for (unsigned i = 0; i != array_lengthof(AvailableComponents); ++i) {
94     AvailableComponent *AC = &AvailableComponents[i];
95     ComponentMap[AC->Name] = AC;
96   }
97
98   // Visit the components.
99   for (unsigned i = 0, e = Components.size(); i != e; ++i) {
100     // Users are allowed to provide mixed case component names.
101     std::string ComponentLower = Components[i].lower();
102
103     // Validate that the user supplied a valid component name.
104     if (!ComponentMap.count(ComponentLower)) {
105       llvm::errs() << "llvm-config: unknown component name: " << Components[i]
106                    << "\n";
107       exit(1);
108     }
109
110     VisitComponent(ComponentLower, ComponentMap, VisitedComponents,
111                    RequiredLibs);
112   }
113
114   // The list is now ordered with leafs first, we want the libraries to printed
115   // in the reverse order of dependency.
116   std::reverse(RequiredLibs.begin(), RequiredLibs.end());
117 }
118
119 /* *** */
120
121 void usage() {
122   errs() << "\
123 usage: llvm-config <OPTION>... [<COMPONENT>...]\n\
124 \n\
125 Get various configuration information needed to compile programs which use\n\
126 LLVM.  Typically called from 'configure' scripts.  Examples:\n\
127   llvm-config --cxxflags\n\
128   llvm-config --ldflags\n\
129   llvm-config --libs engine bcreader scalaropts\n\
130 \n\
131 Options:\n\
132   --version         Print LLVM version.\n\
133   --prefix          Print the installation prefix.\n\
134   --src-root        Print the source root LLVM was built from.\n\
135   --obj-root        Print the object root used to build LLVM.\n\
136   --bindir          Directory containing LLVM executables.\n\
137   --includedir      Directory containing LLVM headers.\n\
138   --libdir          Directory containing LLVM libraries.\n\
139   --cppflags        C preprocessor flags for files that include LLVM headers.\n\
140   --cflags          C compiler flags for files that include LLVM headers.\n\
141   --cxxflags        C++ compiler flags for files that include LLVM headers.\n\
142   --ldflags         Print Linker flags.\n\
143   --libs            Libraries needed to link against LLVM components.\n\
144   --libnames        Bare library names for in-tree builds.\n\
145   --libfiles        Fully qualified library filenames for makefile depends.\n\
146   --components      List of all possible components.\n\
147   --targets-built   List of all targets currently built.\n\
148   --host-target     Target triple used to configure LLVM.\n\
149   --build-mode      Print build mode of LLVM tree (e.g. Debug or Release).\n\
150 Typical components:\n\
151   all               All LLVM libraries (default).\n\
152   backend           Either a native backend or the C backend.\n\
153   engine            Either a native JIT or a bitcode interpreter.\n";
154   exit(1);
155 }
156
157 /// \brief Compute the path to the main executable.
158 llvm::sys::Path GetExecutablePath(const char *Argv0) {
159   // This just needs to be some symbol in the binary; C++ doesn't
160   // allow taking the address of ::main however.
161   void *P = (void*) (intptr_t) GetExecutablePath;
162   return llvm::sys::Path::GetMainExecutable(Argv0, P);
163 }
164
165 int main(int argc, char **argv) {
166   std::vector<StringRef> Components;
167   bool PrintLibs = false, PrintLibNames = false, PrintLibFiles = false;
168   bool HasAnyOption = false;
169
170   // llvm-config is designed to support being run both from a development tree
171   // and from an installed path. We try and auto-detect which case we are in so
172   // that we can report the correct information when run from a development
173   // tree.
174   bool IsInDevelopmentTree, DevelopmentTreeLayoutIsCMakeStyle;
175   llvm::SmallString<256> CurrentPath(GetExecutablePath(argv[0]).str());
176   std::string CurrentExecPrefix;
177
178   // Create an absolute path, and pop up one directory (we expect to be inside a
179   // bin dir).
180   sys::fs::make_absolute(CurrentPath);
181   CurrentExecPrefix = sys::path::parent_path(
182     sys::path::parent_path(CurrentPath)).str();
183
184   // Check to see if we are inside a development tree by comparing to possible
185   // locations (prefix style or CMake style). This could be wrong in the face of
186   // symbolic links, but is good enough.
187   if (CurrentExecPrefix == std::string(LLVM_OBJ_ROOT) + "/" + LLVM_BUILDMODE) {
188     IsInDevelopmentTree = true;
189     DevelopmentTreeLayoutIsCMakeStyle = false;
190   } else if (CurrentExecPrefix == std::string(LLVM_OBJ_ROOT) + "/bin") {
191     IsInDevelopmentTree = true;
192     DevelopmentTreeLayoutIsCMakeStyle = true;
193   } else {
194     IsInDevelopmentTree = false;
195   }
196
197   // Compute various directory locations based on the derived location
198   // information.
199   std::string ActivePrefix, ActiveBinDir, ActiveIncludeDir, ActiveLibDir;
200   std::string ActiveIncludeOption;
201   if (IsInDevelopmentTree) {
202     ActivePrefix = CurrentExecPrefix;
203
204     // CMake organizes the products differently than a normal prefix style
205     // layout.
206     if (DevelopmentTreeLayoutIsCMakeStyle) {
207       ActiveIncludeDir = std::string(LLVM_OBJ_ROOT) + "/include";
208       ActiveBinDir = std::string(LLVM_OBJ_ROOT) + "/bin/" + LLVM_BUILDMODE;
209       ActiveLibDir = std::string(LLVM_OBJ_ROOT) + "/lib/" + LLVM_BUILDMODE;
210     } else {
211         ActiveIncludeDir = std::string(LLVM_OBJ_ROOT) + "/include";
212       ActiveBinDir = std::string(LLVM_OBJ_ROOT) + "/" + LLVM_BUILDMODE + "/bin";
213       ActiveLibDir = std::string(LLVM_OBJ_ROOT) + "/" + LLVM_BUILDMODE + "/lib";
214     }
215
216     // We need to include files from both the source and object trees.
217     ActiveIncludeOption = ("-I" + ActiveIncludeDir + " " +
218                            "-I" + LLVM_OBJ_ROOT + "/include");
219   } else {
220     ActivePrefix = CurrentExecPrefix;
221     ActiveIncludeDir = ActivePrefix + "/include";
222     ActiveBinDir = ActivePrefix + "/bin";
223     ActiveLibDir = ActivePrefix + "/lib";
224     ActiveIncludeOption = "-I" + ActiveIncludeDir;
225   }
226
227   raw_ostream &OS = outs();
228   for (int i = 1; i != argc; ++i) {
229     StringRef Arg = argv[i];
230
231     if (Arg.startswith("-")) {
232       HasAnyOption = true;
233       if (Arg == "--version") {
234         OS << PACKAGE_VERSION << '\n';
235       } else if (Arg == "--prefix") {
236         OS << ActivePrefix << '\n';
237       } else if (Arg == "--bindir") {
238         OS << ActiveBinDir << '\n';
239       } else if (Arg == "--includedir") {
240         OS << ActiveIncludeDir << '\n';
241       } else if (Arg == "--libdir") {
242         OS << ActiveLibDir << '\n';
243       } else if (Arg == "--cppflags") {
244         OS << ActiveIncludeOption << ' ' << LLVM_CPPFLAGS << '\n';
245       } else if (Arg == "--cflags") {
246         OS << ActiveIncludeOption << ' ' << LLVM_CFLAGS << '\n';
247       } else if (Arg == "--cxxflags") {
248         OS << ActiveIncludeOption << ' ' << LLVM_CXXFLAGS << '\n';
249       } else if (Arg == "--ldflags") {
250         OS << "-L" << ActiveLibDir << ' ' << LLVM_LDFLAGS
251            << ' ' << LLVM_SYSTEM_LIBS << '\n';
252       } else if (Arg == "--libs") {
253         PrintLibs = true;
254       } else if (Arg == "--libnames") {
255         PrintLibNames = true;
256       } else if (Arg == "--libfiles") {
257         PrintLibFiles = true;
258       } else if (Arg == "--components") {
259         for (unsigned j = 0; j != array_lengthof(AvailableComponents); ++j) {
260           OS << ' ';
261           OS << AvailableComponents[j].Name;
262         }
263         OS << '\n';
264       } else if (Arg == "--targets-built") {
265         bool First = true;
266         for (TargetRegistry::iterator I = TargetRegistry::begin(),
267                E = TargetRegistry::end(); I != E; First = false, ++I) {
268           if (!First)
269             OS << ' ';
270           OS << I->getName();
271         }
272         OS << '\n';
273       } else if (Arg == "--host-target") {
274         OS << LLVM_DEFAULT_TARGET_TRIPLE << '\n';
275       } else if (Arg == "--build-mode") {
276         OS << LLVM_BUILDMODE << '\n';
277       } else if (Arg == "--obj-root") {
278         OS << LLVM_OBJ_ROOT << '\n';
279       } else if (Arg == "--src-root") {
280         OS << LLVM_SRC_ROOT << '\n';
281       } else {
282         usage();
283       }
284     } else {
285       Components.push_back(Arg);
286     }
287   }
288
289   if (!HasAnyOption)
290     usage();
291
292   if (PrintLibs || PrintLibNames || PrintLibFiles) {
293     // Construct the list of all the required libraries.
294     std::vector<StringRef> RequiredLibs;
295     ComputeLibsForComponents(Components, RequiredLibs);
296
297     for (unsigned i = 0, e = RequiredLibs.size(); i != e; ++i) {
298       StringRef Lib = RequiredLibs[i];
299       if (i)
300         OS << ' ';
301
302       if (PrintLibNames) {
303         OS << Lib;
304       } else if (PrintLibFiles) {
305         OS << ActiveLibDir << '/' << Lib;
306       } else if (PrintLibs) {
307         // If this is a typical library name, include it using -l.
308         if (Lib.startswith("lib") && Lib.endswith(".a")) {
309           OS << "-l" << Lib.slice(3, Lib.size()-2);
310           continue;
311         }
312
313         // Otherwise, print the full path.
314         OS << ActiveLibDir << '/' << Lib;
315       }
316     }
317     OS << '\n';
318   } else if (!Components.empty()) {
319     errs() << "llvm-config: error: components given, but unused\n\n";
320     usage();
321   }
322
323   return 0;
324 }