From: Chandler Carruth Date: Tue, 24 May 2011 07:51:17 +0000 (+0000) Subject: Fix a bug in the most recent openSUSE support patch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0b60ecc824af1e99e4288a8dcc11b22e2a6ea5e;p=clang 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 --- 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";