From c3d2531d4b9605e6cc1cfd2293eaa6aa1cf6f3d2 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 25 Apr 2012 18:26:01 +0000 Subject: Merging r155534: ------------------------------------------------------------------------ r155534 | lattner | 2012-04-24 23:09:30 -0700 (Tue, 24 Apr 2012) | 3 lines don't use soname on OpenBSD, it doesn't support it. Patch by Brad Smith! ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_31@155572 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/libclang/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libclang/Makefile b/tools/libclang/Makefile index f2d29ee6ec..08bf3c62e6 100644 --- a/tools/libclang/Makefile +++ b/tools/libclang/Makefile @@ -24,7 +24,7 @@ USEDLIBS = clangARCMigrate.a clangRewrite.a clangFrontend.a clangDriver.a \ include $(CLANG_LEVEL)/Makefile # Add soname to the library. -ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD OpenBSD GNU)) +ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU)) LDFLAGS += -Wl,-soname,lib$(LIBRARYNAME)$(SHLIBEXT) endif -- cgit v1.2.3