[llvm-commits] [poolalloc] r68224 - in /poolalloc/trunk: Makefile tools/Pa/Makefile tools/Pa/pa.cpp
John Criswell
criswell at uiuc.edu
Wed Apr 1 11:26:12 PDT 2009
Author: criswell
Date: Wed Apr 1 13:26:12 2009
New Revision: 68224
URL: http://llvm.org/viewvc/llvm-project?rev=68224&view=rev
Log:
The pa tool now builds by default.
Modified:
poolalloc/trunk/Makefile
poolalloc/trunk/tools/Pa/Makefile
poolalloc/trunk/tools/Pa/pa.cpp
Modified: poolalloc/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/Makefile?rev=68224&r1=68223&r2=68224&view=diff
==============================================================================
--- poolalloc/trunk/Makefile (original)
+++ poolalloc/trunk/Makefile Wed Apr 1 13:26:12 2009
@@ -10,7 +10,7 @@
#
# Directories that needs to be built.
#
-DIRS = lib runtime
+DIRS = lib runtime tools
#
# Include the Master Makefile that knows how to build all.
Modified: poolalloc/trunk/tools/Pa/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/tools/Pa/Makefile?rev=68224&r1=68223&r2=68224&view=diff
==============================================================================
--- poolalloc/trunk/tools/Pa/Makefile (original)
+++ poolalloc/trunk/tools/Pa/Makefile Wed Apr 1 13:26:12 2009
@@ -12,8 +12,8 @@
# Initialize the USEDLIBS so we can add to it
-LINK_COMPONENTS := bitreader bitwriter instrumentation scalaropts ipo
-
+LINK_COMPONENTS := bitreader bitwriter instrumentation scalaropts ipo \
+ nativecodegen
USEDLIBS := poolalloc LLVMDataStructure
# Include this here so we can get the configuration of the targets
Modified: poolalloc/trunk/tools/Pa/pa.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/tools/Pa/pa.cpp?rev=68224&r1=68223&r2=68224&view=diff
==============================================================================
--- poolalloc/trunk/tools/Pa/pa.cpp (original)
+++ poolalloc/trunk/tools/Pa/pa.cpp Wed Apr 1 13:26:12 2009
@@ -27,6 +27,9 @@
#include "llvm/System/Signals.h"
#include "llvm/Config/config.h"
+#include "dsa/DSSupport.h"
+#include "dsa/DataStructure.h"
+
#include "poolalloc/PoolAllocate.h"
#include <fstream>
More information about the llvm-commits
mailing list