Make one of the AttributeSet ctors maintain the invariant that the
[oota-llvm.git] / tools / Makefile
index 1953cb6711f494fb5423e5817ff5bdcf34dca923..b7375c9970ba406c28453eb479dff36544fc0bfc 100644 (file)
@@ -28,13 +28,19 @@ OPTIONAL_DIRS := lldb
 # in parallel builds.  Please retain this ordering.
 DIRS := llvm-config
 PARALLEL_DIRS := opt llvm-as llvm-dis \
-                 llc llvm-ranlib llvm-ar llvm-nm \
-                 llvm-ld llvm-prof llvm-link \
+                 llc llvm-ar llvm-nm \
+                 llvm-prof llvm-link \
                  lli llvm-extract llvm-mc \
-                 bugpoint llvm-bcanalyzer llvm-stub \
-                 llvm-diff macho-dump llvm-objdump \
+                 bugpoint llvm-bcanalyzer \
+                 llvm-diff macho-dump llvm-objdump llvm-readobj \
                 llvm-rtdyld llvm-dwarfdump llvm-cov \
-                llvm-size
+                llvm-size llvm-stress llvm-mcmarkup \
+                llvm-symbolizer obj2yaml yaml2obj
+
+# If Intel JIT Events support is configured, build an extra tool to test it.
+ifeq ($(USE_INTEL_JITEVENTS), 1)
+  PARALLEL_DIRS += llvm-jitlistener
+endif
 
 # Let users override the set of tools to build from the command line.
 ifdef ONLY_TOOLS