[llvm-commits] [poolalloc] r138233 - /poolalloc/trunk/test/Makefile

Will Dietz wdietz2 at illinois.edu
Mon Aug 22 07:59:14 PDT 2011


Author: wdietz2
Date: Mon Aug 22 09:59:14 2011
New Revision: 138233

URL: http://llvm.org/viewvc/llvm-project?rev=138233&view=rev
Log:
test/Makefile: Update shared library definitions drop lib- prefix.
This naming convention change is because we're building
  them as loadable modules now.

Modified:
    poolalloc/trunk/test/Makefile

Modified: poolalloc/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/Makefile?rev=138233&r1=138232&r2=138233&view=diff
==============================================================================
--- poolalloc/trunk/test/Makefile (original)
+++ poolalloc/trunk/test/Makefile Mon Aug 22 09:59:14 2011
@@ -409,11 +409,11 @@
 # Pathname to poolalloc object tree
 PADIR   := $(PROJ_OBJ_ROOT)
 # Pathame to the DSA pass dynamic library
-DSA_SO   := $(PADIR)/$(BuildMode)/lib/libLLVMDataStructure$(SHLIBEXT)
+DSA_SO   := $(PADIR)/$(BuildMode)/lib/LLVMDataStructure$(SHLIBEXT)
 # Pathame to the Assist DSA pass dynamic library
-ADSA_SO   := $(PADIR)/$(BuildMode)/lib/libAssistDS$(SHLIBEXT)
+ADSA_SO   := $(PADIR)/$(BuildMode)/lib/AssistDS$(SHLIBEXT)
 # Pathname to the PA pass dynamic library
-PA_SO   := $(PADIR)/$(BuildMode)/lib/libpoolalloc$(SHLIBEXT)
+PA_SO   := $(PADIR)/$(BuildMode)/lib/poolalloc$(SHLIBEXT)
 
 DSAOPT := $(PROJ_OBJ_ROOT)/test/tools/dsaopt
 ADSAOPT := $(PROJ_OBJ_ROOT)/test/tools/adsaopt





More information about the llvm-commits mailing list