[llvm-commits] [poolalloc] r155999 - in /poolalloc/trunk/runtime: DynCount/Makefile DynamicTypeChecks/Makefile FL2Allocator/Makefile PreRT/Makefile

John Criswell criswell at uiuc.edu
Wed May 2 09:19:45 PDT 2012


Author: criswell
Date: Wed May  2 11:19:45 2012
New Revision: 155999

URL: http://llvm.org/viewvc/llvm-project?rev=155999&view=rev
Log:
Disable building of bytecode libraries.
Nobody outside our group is currently using them (as far as I know), and it
breaks the SAFECode build.
We can re-enable it if we decide that we need bytecode libraries and can figure
out how to disable it when clang/llvm-gcc are not available.

Modified:
    poolalloc/trunk/runtime/DynCount/Makefile
    poolalloc/trunk/runtime/DynamicTypeChecks/Makefile
    poolalloc/trunk/runtime/FL2Allocator/Makefile
    poolalloc/trunk/runtime/PreRT/Makefile

Modified: poolalloc/trunk/runtime/DynCount/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/DynCount/Makefile?rev=155999&r1=155998&r2=155999&view=diff
==============================================================================
--- poolalloc/trunk/runtime/DynCount/Makefile (original)
+++ poolalloc/trunk/runtime/DynCount/Makefile Wed May  2 11:19:45 2012
@@ -25,7 +25,7 @@
 # of LLVM.
 #
 ifneq ($(OS),Darwin)
-BYTECODE_LIBRARY=1
+#BYTECODE_LIBRARY=1
 endif
 
 include $(LEVEL)/Makefile.common

Modified: poolalloc/trunk/runtime/DynamicTypeChecks/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/DynamicTypeChecks/Makefile?rev=155999&r1=155998&r2=155999&view=diff
==============================================================================
--- poolalloc/trunk/runtime/DynamicTypeChecks/Makefile (original)
+++ poolalloc/trunk/runtime/DynamicTypeChecks/Makefile Wed May  2 11:19:45 2012
@@ -22,7 +22,7 @@
 # of LLVM.
 #
 ifneq ($(OS),Darwin)
-BYTECODE_LIBRARY=1
+#BYTECODE_LIBRARY=1
 endif
 
 include $(LEVEL)/Makefile.common

Modified: poolalloc/trunk/runtime/FL2Allocator/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/FL2Allocator/Makefile?rev=155999&r1=155998&r2=155999&view=diff
==============================================================================
--- poolalloc/trunk/runtime/FL2Allocator/Makefile (original)
+++ poolalloc/trunk/runtime/FL2Allocator/Makefile Wed May  2 11:19:45 2012
@@ -23,7 +23,7 @@
 # of LLVM.
 #
 ifneq ($(OS),Darwin)
-BYTECODE_LIBRARY=1
+#BYTECODE_LIBRARY=1
 endif
 
 include $(LEVEL)/Makefile.common

Modified: poolalloc/trunk/runtime/PreRT/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/PreRT/Makefile?rev=155999&r1=155998&r2=155999&view=diff
==============================================================================
--- poolalloc/trunk/runtime/PreRT/Makefile (original)
+++ poolalloc/trunk/runtime/PreRT/Makefile Wed May  2 11:19:45 2012
@@ -7,7 +7,7 @@
 # of LLVM.
 #
 ifneq ($(OS),Darwin)
-BYTECODE_LIBRARY=1
+#BYTECODE_LIBRARY=1
 endif
 
 include $(LEVEL)/Makefile.common





More information about the llvm-commits mailing list