- Update to llvm 3.8.0 * See http://llvm.org/releases/3.8.0/docs/ReleaseNotes.html and http://llvm.org/releases/3.8.0/tools/clang/docs/ReleaseNotes.html - Fold lldb build into llvm and disable python support - Drop clang-disable-ada-extension.patch, libcxxabi-exceptions.patch and cmake-host-triple.patch - Add revert-cmake-soname.patch to fix soname handling OBS-URL: https://build.opensuse.org/request/show/368685 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm?expand=0&rev=430
16 lines
417 B
Diff
16 lines
417 B
Diff
Index: cfe-3.8.0.src/lib/Driver/Tools.cpp
|
|
===================================================================
|
|
--- cfe-3.8.0.src/lib/Driver/Tools.cpp
|
|
+++ cfe-3.8.0.src/lib/Driver/Tools.cpp
|
|
@@ -1322,8 +1322,8 @@ static const char *getX86TargetCPU(const
|
|
case llvm::Triple::Bitrig:
|
|
return "i686";
|
|
default:
|
|
- // Fallback to p4.
|
|
- return "pentium4";
|
|
+ // Fallback to i586.
|
|
+ return "i586";
|
|
}
|
|
}
|
|
|