From 40e274b5799b13646914b31c622ac857e5929732 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Mon, 8 Jan 2007 06:25:29 +0000 Subject: Build libLLVMlto on non-Darwin architectures. Resolves PR1055: http://llvm.org/PR1055 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33006 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lto/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tools/lto/Makefile') diff --git a/tools/lto/Makefile b/tools/lto/Makefile index 91732ff3ef..3d48abd5d2 100644 --- a/tools/lto/Makefile +++ b/tools/lto/Makefile @@ -11,9 +11,13 @@ LEVEL = ../.. LIBRARYNAME = LLVMlto LINK_LIBS_IN_SHARED = 1 -SHARED_LIBRARY = 1 -LOADABLE_MODULE = 1 -DONT_BUILD_RELINKED = 1 +ifeq ($(OS),Darwin) + SHARED_LIBRARY = 1 + LOADABLE_MODULE = 1 + DONT_BUILD_RELINKED = 1 +else + BUILD_ARCHIVE = 1 +endif # Include this here so we can get the configuration of the targets # that have been configured for construction. We have to do this -- cgit v1.2.3