From f0b60ecc824af1e99e4288a8dcc11b22e2a6ea5e Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 24 May 2011 07:51:17 +0000 Subject: [PATCH] Fix a bug in the most recent openSUSE support patch. This patch also by Ismail Donmez. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131958 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/ToolChains.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 1675351fe0..42ab3a4efe 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1468,7 +1468,7 @@ Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple) ExtraOpts.push_back("--build-id"); if (IsOpenSuse(Distro)) - ExtraOpts.push_back("--dynamic-tags"); + ExtraOpts.push_back("--enable-new-dtags"); if (Distro == ArchLinux) Lib = "lib"; -- 2.50.1