[llvm-commits] [llvm] r71539 - /llvm/trunk/Makefile.rules

Daniel Dunbar daniel at zuster.org
Mon May 11 22:35:42 PDT 2009


Author: ddunbar
Date: Tue May 12 00:35:40 2009
New Revision: 71539

URL: http://llvm.org/viewvc/llvm-project?rev=71539&view=rev
Log:
Install bytecode libraries with a .bca suffix, otherwise it isn't
possible to build both a .a and a .bca.
 - My understanding is no one else is using this stuff, please let me
   know if I am wrong.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=71539&r1=71538&r2=71539&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Tue May 12 00:35:40 2009
@@ -1019,7 +1019,7 @@
 BytecodeDestDir := $(PROJ_libdir)
 endif
 
-DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
+DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
 
 install-bytecode-local:: $(DestBytecodeLib)
 





More information about the llvm-commits mailing list