Module Name:    src
Committed By:   joerg
Date:           Mon Mar 28 11:41:49 UTC 2011

Modified Files:
        src/external/bsd/llvm/bin: Makefile
        src/external/bsd/llvm/bin/lli: Makefile
        src/external/bsd/llvm/lib: Makefile

Log Message:
Catch up with library roulette in lli. Allow LLVM_DEVELOPER to be set in
mk.conf. From Vladimir Kirillov.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/llvm/bin/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/llvm/bin/lli/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/llvm/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/llvm/bin/Makefile
diff -u src/external/bsd/llvm/bin/Makefile:1.1 src/external/bsd/llvm/bin/Makefile:1.2
--- src/external/bsd/llvm/bin/Makefile:1.1	Sun Feb  6 01:13:43 2011
+++ src/external/bsd/llvm/bin/Makefile	Mon Mar 28 11:41:48 2011
@@ -1,4 +1,6 @@
-#	$NetBSD: Makefile,v 1.1 2011/02/06 01:13:43 joerg Exp $
+#	$NetBSD: Makefile,v 1.2 2011/03/28 11:41:48 joerg Exp $
+
+.include <bsd.own.mk>
 
 SUBDIR=	clang \
 	tblgen

Index: src/external/bsd/llvm/bin/lli/Makefile
diff -u src/external/bsd/llvm/bin/lli/Makefile:1.2 src/external/bsd/llvm/bin/lli/Makefile:1.3
--- src/external/bsd/llvm/bin/lli/Makefile:1.2	Fri Mar 18 23:32:01 2011
+++ src/external/bsd/llvm/bin/lli/Makefile	Mon Mar 28 11:41:48 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2011/03/18 23:32:01 joerg Exp $
+#	$NetBSD: Makefile,v 1.3 2011/03/28 11:41:48 joerg Exp $
 
 PROG_CXX=	lli
 NOMAN=		yes
@@ -10,15 +10,18 @@
 SRCS=	lli.cpp
 
 LLVM_LIBS+= \
+	X86CodeGen \
+	X86TargetInfo \
+	X86AsmPrinter \
+	X86Utils \
+	AsmPrinter \
 	AsmParser \
+	MCParser \
 	BitReader \
 	JIT \
 	MCJIT \
 	Interpreter \
 	ExecutionEngine \
-	X86CodeGen \
-	X86TargetInfo \
-	X86Utils \
 	SelectionDAG \
 	CodeGen \
 	Target \

Index: src/external/bsd/llvm/lib/Makefile
diff -u src/external/bsd/llvm/lib/Makefile:1.3 src/external/bsd/llvm/lib/Makefile:1.4
--- src/external/bsd/llvm/lib/Makefile:1.3	Wed Feb 23 03:09:04 2011
+++ src/external/bsd/llvm/lib/Makefile	Mon Mar 28 11:41:48 2011
@@ -1,4 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2011/02/23 03:09:04 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2011/03/28 11:41:48 joerg Exp $
+
+.include <bsd.own.mk>
 
 SUBDIR=	\
 	libLLVMAnalysis \

Reply via email to