[cfe-commits] r131958 - /cfe/trunk/lib/Driver/ToolChains.cpp
Chandler Carruth
chandlerc at gmail.com
Tue May 24 00:51:17 PDT 2011
Author: chandlerc
Date: Tue May 24 02:51:17 2011
New Revision: 131958
URL: http://llvm.org/viewvc/llvm-project?rev=131958&view=rev
Log:
Fix a bug in the most recent openSUSE support patch.
This patch also by Ismail Donmez.
Modified:
cfe/trunk/lib/Driver/ToolChains.cpp
Modified: cfe/trunk/lib/Driver/ToolChains.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/ToolChains.cpp?rev=131958&r1=131957&r2=131958&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/ToolChains.cpp (original)
+++ cfe/trunk/lib/Driver/ToolChains.cpp Tue May 24 02:51:17 2011
@@ -1468,7 +1468,7 @@
ExtraOpts.push_back("--build-id");
if (IsOpenSuse(Distro))
- ExtraOpts.push_back("--dynamic-tags");
+ ExtraOpts.push_back("--enable-new-dtags");
if (Distro == ArchLinux)
Lib = "lib";
More information about the cfe-commits
mailing list