From 1e050bd88b3d28ca9e98d40efeeea1ba84814abe Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 24 Oct 2005 02:05:35 +0000 Subject: [PATCH] Only build .a file versions of these libraries, instead of .a and .o versions. This should speed up build times. llvm-svn: 23934 --- llvm/lib/Support/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Support/Makefile b/llvm/lib/Support/Makefile index 151f253165be..30862aabb660 100644 --- a/llvm/lib/Support/Makefile +++ b/llvm/lib/Support/Makefile @@ -10,5 +10,6 @@ LEVEL = ../.. PARALLEL_DIRS=bzip2 LIBRARYNAME = LLVMSupport BUILD_ARCHIVE = 1 +DONT_BUILD_RELINKED := 1 include $(LEVEL)/Makefile.common