forked from pool/llvm17
Compare commits
36 Commits
Author | SHA256 | Date | |
---|---|---|---|
5a50593269 | |||
565a32c49b | |||
|
cb9cd7e85c | ||
ca4f5d8da4 | |||
|
86dc7fdb49 | ||
|
87dace81ba | ||
|
c01d14e999 | ||
3e64c73865 | |||
74ed294ef8 | |||
7c4387a5a0 | |||
|
ceafba1a42 | ||
d057388aad | |||
|
b3859f32b9 | ||
|
e6076495e9 | ||
|
5f7199f9df | ||
|
843a71a34f | ||
4a1da54d51 | |||
|
225f8d30f2 | ||
8ef3a8cf17 | |||
|
56861a2a4e | ||
1a2815f887 | |||
|
e3aeb42953 | ||
|
2499b5cbde | ||
8cc7cce17c | |||
|
7ae42df45a | ||
|
2c374c3b41 | ||
e1b1c52dad | |||
|
7d21854ac4 | ||
|
1d2123c8ae | ||
|
8069b78f38 | ||
|
644b9dbba1 | ||
20230ac39a | |||
|
61cd8731b9 | ||
3735e4c959 | |||
|
c7e2b79360 | ||
|
b497fbd409 |
26
clang-shlib-symbol-versioning.patch
Normal file
26
clang-shlib-symbol-versioning.patch
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/clang/tools/clang-shlib/CMakeLists.txt b/clang/tools/clang-shlib/CMakeLists.txt
|
||||||
|
index aa7fcd1efed4..054c7d59ec34 100644
|
||||||
|
--- a/clang/tools/clang-shlib/CMakeLists.txt
|
||||||
|
+++ b/clang/tools/clang-shlib/CMakeLists.txt
|
||||||
|
@@ -48,6 +48,14 @@ add_clang_library(clang-cpp
|
||||||
|
${_OBJECTS}
|
||||||
|
LINK_LIBS
|
||||||
|
${_DEPS})
|
||||||
|
+
|
||||||
|
+configure_file(simple_version_script.map.in simple_version_script.map)
|
||||||
|
+
|
||||||
|
+if (NOT LLVM_LINKER_IS_SOLARISLD AND NOT MINGW)
|
||||||
|
+ # Solaris ld does not accept global: *; so there is no way to version *all* global symbols
|
||||||
|
+ target_link_options(clang-cpp PRIVATE LINKER:--version-script,${CMAKE_CURRENT_BINARY_DIR}/simple_version_script.map)
|
||||||
|
+endif()
|
||||||
|
+
|
||||||
|
# Optimize function calls for default visibility definitions to avoid PLT and
|
||||||
|
# reduce dynamic relocations.
|
||||||
|
if (NOT APPLE AND NOT MINGW)
|
||||||
|
diff --git a/clang/tools/clang-shlib/simple_version_script.map.in b/clang/tools/clang-shlib/simple_version_script.map.in
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000000..cb2306d1f596
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/clang/tools/clang-shlib/simple_version_script.map.in
|
||||||
|
@@ -0,0 +1 @@
|
||||||
|
+@LLVM_SHLIB_SYMBOL_VERSION@ { global: *; };
|
24
libcxx-remove-unused-imports.patch
Normal file
24
libcxx-remove-unused-imports.patch
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
From 017396310bb6515786eb9d9cf9fb0256de08d65b Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Stephan T. Lavavej" <stl@nuwen.net>
|
||||||
|
Date: Tue, 28 Nov 2023 16:33:11 -0800
|
||||||
|
Subject: [PATCH] Remove unused Python imports.
|
||||||
|
|
||||||
|
diff --git a/libcxx/utils/libcxx/test/format.py b/libcxx/utils/libcxx/test/format.py
|
||||||
|
index 52c6f9cd8f2ef22..5eb17d417489c62 100644
|
||||||
|
--- a/libcxx-17.0.6.src/utils/libcxx/test/format.py
|
||||||
|
+++ b/libcxx-17.0.6.src/utils/libcxx/test/format.py
|
||||||
|
@@ -6,14 +6,10 @@
|
||||||
|
#
|
||||||
|
# ===----------------------------------------------------------------------===##
|
||||||
|
|
||||||
|
-import contextlib
|
||||||
|
-import io
|
||||||
|
import lit
|
||||||
|
import lit.formats
|
||||||
|
import os
|
||||||
|
-import pipes
|
||||||
|
import re
|
||||||
|
-import shutil
|
||||||
|
|
||||||
|
|
||||||
|
def _getTempPaths(test):
|
49
libcxx-use-shlex-quote.patch
Normal file
49
libcxx-use-shlex-quote.patch
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
From d3ce1078186389ce39505f06c2a0100dce9187a5 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
|
||||||
|
Date: Mon, 27 May 2024 19:26:56 +0200
|
||||||
|
Subject: [PATCH] [libcxx] [test] Use `shlex.quote()` to fix Python 3.13
|
||||||
|
compatibility (#93376)
|
||||||
|
|
||||||
|
Replace the use of `pipes.quote()` with `shlex.quote()` to fix
|
||||||
|
compatibility with Python 3.13. The former was always an undocumented
|
||||||
|
alias to the latter, and the `pipes` module was removed completely in
|
||||||
|
Python 3.13.
|
||||||
|
|
||||||
|
Fixes #93375
|
||||||
|
---
|
||||||
|
libcxx/test/libcxx/lit.local.cfg | 5 +++--
|
||||||
|
libcxx/utils/libcxx/test/dsl.py | 4 ++--
|
||||||
|
2 files changed, 5 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
|
--- a/libcxx-17.0.6.src/test/libcxx/lit.local.cfg 2023-11-28 09:52:28.000000000 +0100
|
||||||
|
+++ b/libcxx-17.0.6.src/test/libcxx/lit.local.cfg 2024-11-22 18:18:57.997180624 +0100
|
||||||
|
@@ -1,4 +1,5 @@
|
||||||
|
# The tests in this directory need to run Python
|
||||||
|
-import pipes, sys
|
||||||
|
+import shlex
|
||||||
|
+import sys
|
||||||
|
|
||||||
|
-config.substitutions.append(("%{python}", pipes.quote(sys.executable)))
|
||||||
|
+config.substitutions.append(("%{python}", shlex.quote(sys.executable)))
|
||||||
|
--- a/libcxx-17.0.6.src/utils/libcxx/test/dsl.py 2023-11-28 09:52:28.000000000 +0100
|
||||||
|
+++ b/libcxx-17.0.6.src/utils/libcxx/test/dsl.py 2024-11-22 18:19:20.450801619 +0100
|
||||||
|
@@ -8,9 +8,9 @@
|
||||||
|
|
||||||
|
import os
|
||||||
|
import pickle
|
||||||
|
-import pipes
|
||||||
|
import platform
|
||||||
|
import re
|
||||||
|
+import shlex
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import tempfile
|
||||||
|
@@ -281,7 +281,7 @@
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
"""
|
||||||
|
- return programSucceeds(config, program, args=[pipes.quote(l) for l in locales])
|
||||||
|
+ return programSucceeds(config, program, args=[shlex.quote(l) for l in locales])
|
||||||
|
|
||||||
|
|
||||||
|
@_memoizeExpensiveOperation(lambda c, flags="": (c.substitutions, c.environment, flags))
|
87
lldb-support-python-3.13.patch
Normal file
87
lldb-support-python-3.13.patch
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
Index: lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
|
||||||
|
===================================================================
|
||||||
|
--- a/lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
|
||||||
|
+++ b/lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
|
||||||
|
@@ -71,10 +71,12 @@ Expected<std::string> python::As<std::st
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool python_is_finalizing() {
|
||||||
|
-#if PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION < 7
|
||||||
|
- return _Py_Finalizing != nullptr;
|
||||||
|
-#else
|
||||||
|
+#if PY_VERSION_HEX >= 0x030d0000
|
||||||
|
+ return Py_IsFinalizing();
|
||||||
|
+#elif PY_VERSION_HEX >= 0x03070000
|
||||||
|
return _Py_IsFinalizing();
|
||||||
|
+#else
|
||||||
|
+ return _Py_Finalizing != nullptr;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -794,7 +796,7 @@ bool PythonCallable::Check(PyObject *py_
|
||||||
|
return PyCallable_Check(py_obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
-#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 3
|
||||||
|
+#if PY_VERSION_HEX >= 0x03030000
|
||||||
|
static const char get_arg_info_script[] = R"(
|
||||||
|
from inspect import signature, Parameter, ismethod
|
||||||
|
from collections import namedtuple
|
||||||
|
@@ -823,7 +825,7 @@ Expected<PythonCallable::ArgInfo> Python
|
||||||
|
if (!IsValid())
|
||||||
|
return nullDeref();
|
||||||
|
|
||||||
|
-#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 3
|
||||||
|
+#if PY_VERSION_HEX >= 0x03030000
|
||||||
|
|
||||||
|
// no need to synchronize access to this global, we already have the GIL
|
||||||
|
static PythonScript get_arg_info(get_arg_info_script);
|
||||||
|
Index: lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
===================================================================
|
||||||
|
--- a/lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
+++ b/lldb-17.0.6.src/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
@@ -71,8 +71,7 @@ extern "C" PyObject *PyInit__lldb(void);
|
||||||
|
#define LLDB_USE_PYTHON_SET_INTERRUPT 0
|
||||||
|
#else
|
||||||
|
// PyErr_SetInterrupt was introduced in 3.2.
|
||||||
|
-#define LLDB_USE_PYTHON_SET_INTERRUPT \
|
||||||
|
- (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION >= 2) || (PY_MAJOR_VERSION > 3)
|
||||||
|
+#define LLDB_USE_PYTHON_SET_INTERRUPT PY_VERSION_HEX >= 0x03020000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static ScriptInterpreterPythonImpl *GetPythonInterpreter(Debugger &debugger) {
|
||||||
|
@@ -171,24 +170,33 @@ private:
|
||||||
|
// would always return `true` and `PyGILState_Ensure/Release` flow would be
|
||||||
|
// executed instead of unlocking GIL with `PyEval_SaveThread`. When
|
||||||
|
// an another thread calls `PyGILState_Ensure` it would get stuck in deadlock.
|
||||||
|
-#if (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION >= 7) || (PY_MAJOR_VERSION > 3)
|
||||||
|
+#if PY_VERSION_HEX >= 0x03070000
|
||||||
|
// The only case we should go further and acquire the GIL: it is unlocked.
|
||||||
|
if (PyGILState_Check())
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+// `PyEval_ThreadsInitialized` was deprecated in Python 3.9 and removed in
|
||||||
|
+// Python 3.13. It has been returning `true` always since Python 3.7.
|
||||||
|
+#if PY_VERSION_HEX < 0x03090000
|
||||||
|
if (PyEval_ThreadsInitialized()) {
|
||||||
|
+#endif
|
||||||
|
Log *log = GetLog(LLDBLog::Script);
|
||||||
|
|
||||||
|
m_was_already_initialized = true;
|
||||||
|
m_gil_state = PyGILState_Ensure();
|
||||||
|
LLDB_LOGV(log, "Ensured PyGILState. Previous state = {0}locked\n",
|
||||||
|
m_gil_state == PyGILState_UNLOCKED ? "un" : "");
|
||||||
|
+
|
||||||
|
+// `PyEval_InitThreads` was deprecated in Python 3.9 and removed in
|
||||||
|
+// Python 3.13.
|
||||||
|
+#if PY_VERSION_HEX < 0x03090000
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// InitThreads acquires the GIL if it hasn't been called before.
|
||||||
|
PyEval_InitThreads();
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
PyGILState_STATE m_gil_state = PyGILState_UNLOCKED;
|
224
llvm17.changes
224
llvm17.changes
@@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 13 06:04:45 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Add patches, to actually fix the build with Python 3.13:
|
||||||
|
* lldb-support-python-3.13.patch
|
||||||
|
* libcxx-remove-unused-imports.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 22 17:12:00 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- add libcxx-use-shlex-quote.patch to fix build with python 3.13
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 16 22:38:02 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||||
|
|
||||||
|
- Apply clang-shlib-symbol-versioning.patch to add symbol versions
|
||||||
|
to libclang-cpp.so similar to libLLVM.so. This is required when
|
||||||
|
multiple versions of the library are loaded into the same
|
||||||
|
process. (boo#1219405, boo#1221183, boo#1233220)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 11 22:53:32 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||||
|
|
||||||
|
- Require libffi when we build openmp for offloading.
|
||||||
|
- Update llvm17.keyring from upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 7 13:58:40 UTC 2024 - Michal Suchanek <msuchanek@suse.de>
|
||||||
|
|
||||||
|
- Correct target name for libomptarget in file list (backport from llvm18)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 6 15:24:59 UTC 2024 - Michal Suchanek <msuchanek@suse.de>
|
||||||
|
|
||||||
|
- Enable lldb on s390x and ppc64le (bsc#1232906).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Aug 31 21:29:58 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
Sat Aug 31 21:29:58 UTC 2024 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||||
|
|
||||||
@@ -313,7 +349,7 @@ Wed Sep 21 21:21:19 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 12 07:29:54 UTC 2022 - Andreas Schwab <schwab@suse.de>
|
Mon Sep 12 07:29:54 UTC 2022 - Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
- Use correct LLVM_HOST_TRIPLE for riscv64
|
- Use correct LLVM_HOST_TRIPLE for riscv64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 6 20:23:14 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
Tue Sep 6 20:23:14 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||||
@@ -400,7 +436,7 @@ Mon Jul 4 21:29:11 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
|||||||
- Update to version 14.0.6.
|
- Update to version 14.0.6.
|
||||||
* This release contains bug-fixes for the LLVM 14.0.0 release.
|
* This release contains bug-fixes for the LLVM 14.0.0 release.
|
||||||
This release is API and ABI compatible with 14.0.0.
|
This release is API and ABI compatible with 14.0.0.
|
||||||
- Rebase llvm-do-not-install-static-libraries.patch.
|
- Rebase llvm-do-not-install-static-libraries.patch.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 16 16:44:07 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
Thu Jun 16 16:44:07 UTC 2022 - Aaron Puchert <aaronpuchert@alice-dsl.net>
|
||||||
@@ -946,9 +982,9 @@ Sat Jan 11 20:14:12 UTC 2020 - Andreas Schwab <schwab@suse.de>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 8 15:30:21 UTC 2020 - Jaime Caamaño Ruiz <jcaamano@suse.com>
|
Fri Jan 8 15:30:21 UTC 2020 - Jaime Caamaño Ruiz <jcaamano@suse.com>
|
||||||
|
|
||||||
- Add upstream patch to export compiler-rt FuzzedDataProvider header,
|
- Add upstream patch to export compiler-rt FuzzedDataProvider header,
|
||||||
required by Envoy 1.12.2:
|
required by Envoy 1.12.2:
|
||||||
* compiler-rt-move-fdp.patch
|
* compiler-rt-move-fdp.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 6 19:31:23 UTC 2020 - Andreas Schwab <schwab@suse.de>
|
Mon Jan 6 19:31:23 UTC 2020 - Andreas Schwab <schwab@suse.de>
|
||||||
@@ -1563,7 +1599,7 @@ Fri Oct 13 09:09:15 UTC 2017 - msrb@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 12:14:31 UTC 2017 - msrb@suse.com
|
Tue Oct 10 12:14:31 UTC 2017 - msrb@suse.com
|
||||||
|
|
||||||
- Drop llvm5-devel-static. llvm5-devel contains shared library with
|
- Drop llvm5-devel-static. llvm5-devel contains shared library with
|
||||||
the same content.
|
the same content.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@@ -1648,7 +1684,7 @@ Fri Jun 2 12:42:08 UTC 2017 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 9 08:29:31 UTC 2017 - idonmez@suse.com
|
Tue May 9 08:29:31 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- Package libLLVMFuzzer
|
- Package libLLVMFuzzer
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 19 15:08:25 UTC 2017 - dmueller@suse.com
|
Wed Apr 19 15:08:25 UTC 2017 - dmueller@suse.com
|
||||||
@@ -1665,18 +1701,18 @@ Wed Apr 5 12:09:39 UTC 2017 - afaerber@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 4 09:14:41 UTC 2017 - idonmez@suse.com
|
Tue Apr 4 09:14:41 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- Use gcc6 on SLE12
|
- Use gcc6 on SLE12
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 30 11:33:27 UTC 2017 - idonmez@suse.com
|
Thu Mar 30 11:33:27 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- Package license & credits
|
- Package license & credits
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 27 07:58:36 UTC 2017 - idonmez@suse.com
|
Mon Mar 27 07:58:36 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- Update to version 4.0.0
|
- Update to version 4.0.0
|
||||||
* See
|
* See
|
||||||
+ http://releases.llvm.org/4.0.0/docs/ReleaseNotes.html and
|
+ http://releases.llvm.org/4.0.0/docs/ReleaseNotes.html and
|
||||||
+ http://releases.llvm.org/4.0.0/tools/clang/docs/ReleaseNotes.html
|
+ http://releases.llvm.org/4.0.0/tools/clang/docs/ReleaseNotes.html
|
||||||
+ http://releases.llvm.org/4.0.0/tools/clang/tools/extra/docs/ReleaseNotes.html
|
+ http://releases.llvm.org/4.0.0/tools/clang/tools/extra/docs/ReleaseNotes.html
|
||||||
@@ -1692,12 +1728,12 @@ Mon Mar 27 07:58:36 UTC 2017 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 24 13:26:11 UTC 2017 - idonmez@suse.com
|
Fri Feb 24 13:26:11 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- Enable BPF for all arches bsc#1026191
|
- Enable BPF for all arches bsc#1026191
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 25 12:06:36 UTC 2017 - idonmez@suse.com
|
Wed Jan 25 12:06:36 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
- libc++ must depend on libc++abi
|
- libc++ must depend on libc++abi
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 25 10:13:44 UTC 2017 - idonmez@suse.com
|
Wed Jan 25 10:13:44 UTC 2017 - idonmez@suse.com
|
||||||
@@ -1880,17 +1916,17 @@ Wed May 18 13:22:17 UTC 2016 - ronisbr@gmail.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 18 11:14:38 UTC 2016 - idonmez@suse.com
|
Wed May 18 11:14:38 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
- Disable libcxx/lldb/openmp for SLE fate#319582
|
- Disable libcxx/lldb/openmp for SLE fate#319582
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 25 07:25:22 UTC 2016 - idonmez@suse.com
|
Mon Apr 25 07:25:22 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
- Update rpmlintrc to whitelist libLTO.so
|
- Update rpmlintrc to whitelist libLTO.so
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 11 08:45:56 UTC 2016 - idonmez@suse.com
|
Mon Apr 11 08:45:56 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
- Re-enable glibc-2.23 patch for Tumbleweed
|
- Re-enable glibc-2.23 patch for Tumbleweed
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Apr 10 19:18:41 UTC 2016 - dmueller@suse.com
|
Sun Apr 10 19:18:41 UTC 2016 - dmueller@suse.com
|
||||||
@@ -1931,22 +1967,22 @@ Tue Mar 8 18:52:11 UTC 2016 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 2 09:08:12 UTC 2016 - idonmez@suse.com
|
Wed Mar 2 09:08:12 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
- Add glibc-2.23-libcxx.patch to fix test failures with glibc 2.23
|
- Add glibc-2.23-libcxx.patch to fix test failures with glibc 2.23
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Oct 3 17:00:28 UTC 2015 - mimi.vx@gmail.com
|
Sat Oct 3 17:00:28 UTC 2015 - mimi.vx@gmail.com
|
||||||
|
|
||||||
- Remove FFI support because its fragile
|
- Remove FFI support because its fragile
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Sep 27 12:03:57 UTC 2015 - idonmez@suse.com
|
Sun Sep 27 12:03:57 UTC 2015 - idonmez@suse.com
|
||||||
|
|
||||||
- Enable OpenMP for x86, x86_64, ppc64 and ppc64le
|
- Enable OpenMP for x86, x86_64, ppc64 and ppc64le
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 14 13:10:49 UTC 2015 - idonmez@suse.com
|
Mon Sep 14 13:10:49 UTC 2015 - idonmez@suse.com
|
||||||
|
|
||||||
- Enable all targets on x86, x86_64
|
- Enable all targets on x86, x86_64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 2 08:14:39 UTC 2015 - idonmez@suse.com
|
Wed Sep 2 08:14:39 UTC 2015 - idonmez@suse.com
|
||||||
@@ -1960,7 +1996,7 @@ Wed Sep 2 08:14:39 UTC 2015 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 26 11:54:49 CEST 2015 - ro@suse.de
|
Tue May 26 11:54:49 CEST 2015 - ro@suse.de
|
||||||
|
|
||||||
- fix build on s390x (one typo in ifarch and one change in filelist)
|
- fix build on s390x (one typo in ifarch and one change in filelist)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 25 13:59:37 UTC 2015 - idonmez@suse.com
|
Mon May 25 13:59:37 UTC 2015 - idonmez@suse.com
|
||||||
@@ -1971,7 +2007,7 @@ Mon May 25 13:59:37 UTC 2015 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 24 12:19:33 UTC 2015 - idonmez@suse.com
|
Fri Apr 24 12:19:33 UTC 2015 - idonmez@suse.com
|
||||||
|
|
||||||
- Add llvm-fix-parsearmarch.patch to fix parsing armv{6,7}hl archs.
|
- Add llvm-fix-parsearmarch.patch to fix parsing armv{6,7}hl archs.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 2 10:12:32 UTC 2015 - idonmez@suse.com
|
Mon Mar 2 10:12:32 UTC 2015 - idonmez@suse.com
|
||||||
@@ -2013,7 +2049,7 @@ Tue Oct 21 08:39:22 UTC 2014 - dmueller@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 29 09:40:52 UTC 2014 - idonmez@suse.com
|
Mon Sep 29 09:40:52 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
- Rename llvm-remove-werror-date-time.patch to
|
- Rename llvm-remove-werror-date-time.patch to
|
||||||
llvm-remove-clang-only-flags.patch and remove more clang only
|
llvm-remove-clang-only-flags.patch and remove more clang only
|
||||||
flags.
|
flags.
|
||||||
|
|
||||||
@@ -2025,7 +2061,7 @@ Fri Sep 26 08:54:08 UTC 2014 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 25 10:16:50 UTC 2014 - idonmez@suse.com
|
Thu Sep 25 10:16:50 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
- Require llvm-clang not just clang
|
- Require llvm-clang not just clang
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 17 11:01:31 UTC 2014 - idonmez@suse.com
|
Wed Sep 17 11:01:31 UTC 2014 - idonmez@suse.com
|
||||||
@@ -2056,9 +2092,9 @@ Thu Sep 4 12:26:10 UTC 2014 - idonmez@suse.com
|
|||||||
* Major update, see http://llvm.org/releases/3.5.0/docs/ReleaseNotes.html
|
* Major update, see http://llvm.org/releases/3.5.0/docs/ReleaseNotes.html
|
||||||
- Use upstream pristine tarballs
|
- Use upstream pristine tarballs
|
||||||
- Add libc++/libc++abi support clang (only on x86_64)
|
- Add libc++/libc++abi support clang (only on x86_64)
|
||||||
- Add libcxxabi-exceptions.patch to fix libcxxabi exception handling
|
- Add libcxxabi-exceptions.patch to fix libcxxabi exception handling
|
||||||
- Add libcxx-libdir.patch to fix libdir on 64bit arches
|
- Add libcxx-libdir.patch to fix libdir on 64bit arches
|
||||||
- Remove asan-disable-hugemalloctest.patch and
|
- Remove asan-disable-hugemalloctest.patch and
|
||||||
cmake-patchversion.patch, fixed upstream.
|
cmake-patchversion.patch, fixed upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@@ -2093,7 +2129,7 @@ Sat Jun 21 13:40:52 UTC 2014 - arnaud@versini.eu
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 13 10:44:33 UTC 2014 - peter.trommler@ohm-hochschule.de
|
Tue May 13 10:44:33 UTC 2014 - peter.trommler@ohm-hochschule.de
|
||||||
|
|
||||||
- build compiler-rt on ppc64 (don't delete it)
|
- build compiler-rt on ppc64 (don't delete it)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 3 11:58:28 UTC 2014 - idonmez@suse.com
|
Thu Apr 3 11:58:28 UTC 2014 - idonmez@suse.com
|
||||||
@@ -2104,12 +2140,12 @@ Thu Apr 3 11:58:28 UTC 2014 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 22 18:18:57 CET 2014 - ro@suse.de
|
Sat Feb 22 18:18:57 CET 2014 - ro@suse.de
|
||||||
|
|
||||||
- complete ifarchs for s390
|
- complete ifarchs for s390
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 24 13:15:48 UTC 2014 - idonmez@suse.com
|
Fri Jan 24 13:15:48 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
- Remove non-existing doc subpackage
|
- Remove non-existing doc subpackage
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 24 09:23:08 UTC 2014 - idonmez@suse.com
|
Fri Jan 24 09:23:08 UTC 2014 - idonmez@suse.com
|
||||||
@@ -2189,7 +2225,7 @@ Wed Dec 4 13:33:55 UTC 2013 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 4 10:07:59 UTC 2013 - idonmez@suse.com
|
Wed Dec 4 10:07:59 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Update to r196371 from release_34 branch
|
- Update to r196371 from release_34 branch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 4 03:27:29 UTC 2013 - termim@gmail.com
|
Wed Dec 4 03:27:29 UTC 2013 - termim@gmail.com
|
||||||
@@ -2228,7 +2264,7 @@ Thu Oct 17 10:23:32 UTC 2013 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 9 11:16:08 UTC 2013 - dmueller@suse.com
|
Wed Oct 9 11:16:08 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
- use %arm, not arm in arch conditions
|
- use %arm, not arm in arch conditions
|
||||||
- add arm-remove-xfails.diff: remove XFAILs in testsuite
|
- add arm-remove-xfails.diff: remove XFAILs in testsuite
|
||||||
that pass and thereby make check fail
|
that pass and thereby make check fail
|
||||||
|
|
||||||
@@ -2252,7 +2288,7 @@ Wed Aug 28 11:07:16 UTC 2013 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 28 11:02:06 UTC 2013 - idonmez@suse.com
|
Wed Aug 28 11:02:06 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Add s390x support
|
- Add s390x support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 28 10:57:32 UTC 2013 - idonmez@suse.com
|
Wed Aug 28 10:57:32 UTC 2013 - idonmez@suse.com
|
||||||
@@ -2273,24 +2309,24 @@ Thu Aug 22 10:59:28 UTC 2013 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 21 11:04:35 UTC 2013 - idonmez@suse.com
|
Wed Aug 21 11:04:35 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Only enable PowerPC on ppc64
|
- Only enable PowerPC on ppc64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 12 16:43:26 UTC 2013 - idonmez@suse.com
|
Mon Aug 12 16:43:26 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Disable shared libs on PowerPC
|
- Disable shared libs on PowerPC
|
||||||
- Disable ARCMT, it only makes sense for iOS/OSX
|
- Disable ARCMT, it only makes sense for iOS/OSX
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 6 05:51:46 UTC 2013 - idonmez@suse.com
|
Tue Aug 6 05:51:46 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Fix build
|
- Fix build
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 17 12:54:40 UTC 2013 - idonmez@suse.com
|
Wed Jul 17 12:54:40 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Disable building unit-tests, should fix undefined reference
|
- Disable building unit-tests, should fix undefined reference
|
||||||
problem on ARM & PowerPC
|
problem on ARM & PowerPC
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 16 08:35:00 UTC 2013 - coolo@suse.com
|
Tue Jul 16 08:35:00 UTC 2013 - coolo@suse.com
|
||||||
@@ -2355,7 +2391,7 @@ Tue May 14 11:23:07 UTC 2013 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 9 09:05:41 UTC 2013 - idonmez@suse.com
|
Thu May 9 09:05:41 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Add unreachable-code.patch to fix unreachable code warnings on SLE
|
- Add unreachable-code.patch to fix unreachable code warnings on SLE
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 8 08:56:28 UTC 2013 - idonmez@suse.com
|
Wed May 8 08:56:28 UTC 2013 - idonmez@suse.com
|
||||||
@@ -2383,7 +2419,7 @@ Wed Jan 16 18:38:01 UTC 2013 - llunak@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 11 11:56:09 UTC 2013 - idonmez@suse.com
|
Fri Jan 11 11:56:09 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
- Add pre-generated doc files, remove sphinx dependency
|
- Add pre-generated doc files, remove sphinx dependency
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 8 15:16:56 UTC 2013 - llunak@suse.com
|
Tue Jan 8 15:16:56 UTC 2013 - llunak@suse.com
|
||||||
@@ -2460,7 +2496,7 @@ Fri Nov 30 07:27:46 UTC 2012 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 20 08:59:09 UTC 2012 - idonmez@suse.com
|
Tue Nov 20 08:59:09 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Stop excluding ppc64 architecture
|
- Stop excluding ppc64 architecture
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 20 08:25:54 UTC 2012 - idonmez@suse.com
|
Tue Nov 20 08:25:54 UTC 2012 - idonmez@suse.com
|
||||||
@@ -2549,12 +2585,12 @@ Mon Jun 18 20:26:51 UTC 2012 - llunak@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 15 09:01:26 UTC 2012 - idonmez@suse.com
|
Tue May 15 09:01:26 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Update to final 3.1 release
|
- Update to final 3.1 release
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 10 11:40:06 UTC 2012 - idonmez@suse.com
|
Thu May 10 11:40:06 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Depend on python-base so we don't pull whole Mesa
|
- Depend on python-base so we don't pull whole Mesa
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 8 08:21:42 UTC 2012 - llunak@suse.com
|
Tue May 8 08:21:42 UTC 2012 - llunak@suse.com
|
||||||
@@ -2596,74 +2632,74 @@ Thu Apr 26 10:55:02 UTC 2012 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 25 09:40:32 UTC 2012 - idonmez@suse.com
|
Wed Apr 25 09:40:32 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- More fixes to llvm-config
|
- More fixes to llvm-config
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 24 10:12:32 UTC 2012 - idonmez@suse.com
|
Tue Apr 24 10:12:32 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Fix llvm-config --libs output
|
- Fix llvm-config --libs output
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Apr 22 19:24:24 UTC 2012 - idonmez@suse.com
|
Sun Apr 22 19:24:24 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Update to svn revision 155320 from 3.1 branch
|
- Update to svn revision 155320 from 3.1 branch
|
||||||
* AVX fixes
|
* AVX fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 17 07:48:50 UTC 2012 - idonmez@suse.com
|
Tue Apr 17 07:48:50 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Update to svn revision 154914 from 3.1 branch
|
- Update to svn revision 154914 from 3.1 branch
|
||||||
|
|
||||||
Major new features:
|
Major new features:
|
||||||
|
|
||||||
* AddressSanitizer, a fast memory error detector.
|
* AddressSanitizer, a fast memory error detector.
|
||||||
* MachineInstr Bundles, Support to model instruction
|
* MachineInstr Bundles, Support to model instruction
|
||||||
bundling / packing.
|
bundling / packing.
|
||||||
* ARM Integrated Assembler, A full featured assembler
|
* ARM Integrated Assembler, A full featured assembler
|
||||||
and direct-to-object support for ARM.
|
and direct-to-object support for ARM.
|
||||||
* Basic Block Placement Probability driven basic block placement.
|
* Basic Block Placement Probability driven basic block placement.
|
||||||
|
|
||||||
LLVM IR and Core Improvements
|
LLVM IR and Core Improvements
|
||||||
|
|
||||||
* IR support for half float
|
* IR support for half float
|
||||||
* IR support for vectors of pointers, including vector GEPs.
|
* IR support for vectors of pointers, including vector GEPs.
|
||||||
* Module flags have been introduced.
|
* Module flags have been introduced.
|
||||||
* Loads can now have range metadata attached to them to
|
* Loads can now have range metadata attached to them to
|
||||||
describe the possible values being loaded.
|
describe the possible values being loaded.
|
||||||
* Inline cost heuristics have been completely overhauled
|
* Inline cost heuristics have been completely overhauled
|
||||||
and now closely model constant propagation through call sites,
|
and now closely model constant propagation through call sites,
|
||||||
disregard trivially dead code costs, and
|
disregard trivially dead code costs, and
|
||||||
can model C++ STL iterator patterns.
|
can model C++ STL iterator patterns.
|
||||||
|
|
||||||
Optimizer Improvements
|
Optimizer Improvements
|
||||||
|
|
||||||
* The loop unroll pass now is able to unroll loops with
|
* The loop unroll pass now is able to unroll loops with
|
||||||
run-time trip counts. This feature is turned off by default,
|
run-time trip counts. This feature is turned off by default,
|
||||||
and is enabled with the -unroll-runtime flag.
|
and is enabled with the -unroll-runtime flag.
|
||||||
* A new basic-block autovectorization pass is available.
|
* A new basic-block autovectorization pass is available.
|
||||||
Pass -vectorize to run this pass along with some associated
|
Pass -vectorize to run this pass along with some associated
|
||||||
post-vectorization cleanup passes.
|
post-vectorization cleanup passes.
|
||||||
|
|
||||||
X86-32 and X86-64 Target Improvements
|
X86-32 and X86-64 Target Improvements
|
||||||
|
|
||||||
* Bug fixes and improved support for AVX1
|
* Bug fixes and improved support for AVX1
|
||||||
* Support for AVX2 (still incomplete at this point)
|
* Support for AVX2 (still incomplete at this point)
|
||||||
|
|
||||||
ARM Target Improvements
|
ARM Target Improvements
|
||||||
|
|
||||||
* The constant island pass now supports basic block and
|
* The constant island pass now supports basic block and
|
||||||
constant pool entry alignments greater than 4 bytes.
|
constant pool entry alignments greater than 4 bytes.
|
||||||
|
|
||||||
Clang Changes
|
Clang Changes
|
||||||
|
|
||||||
* New: -Wdangling-else, -Wstrncat-size
|
* New: -Wdangling-else, -Wstrncat-size
|
||||||
* Improved: -Wformat, -Wempty-body, -Wliteral-conversion
|
* Improved: -Wformat, -Wempty-body, -Wliteral-conversion
|
||||||
* Clang 3.1 adds support for anonymous structs and anonymous unions,
|
* Clang 3.1 adds support for anonymous structs and anonymous unions,
|
||||||
added in the latest ISO C standard. Use -std=c11 or -std=gnu11
|
added in the latest ISO C standard. Use -std=c11 or -std=gnu11
|
||||||
to enable support for the new language standard.
|
to enable support for the new language standard.
|
||||||
The new C11 features are backwards-compatible and are available
|
The new C11 features are backwards-compatible and are available
|
||||||
as an extension in all language modes.
|
as an extension in all language modes.
|
||||||
* All warning and language selection flags which previously accepted
|
* All warning and language selection flags which previously accepted
|
||||||
c1x have been updated to accept c11. The old c1x forms have been removed.
|
c1x have been updated to accept c11. The old c1x forms have been removed.
|
||||||
* Generalized constant expressions
|
* Generalized constant expressions
|
||||||
* Lambda expressions
|
* Lambda expressions
|
||||||
@@ -2672,22 +2708,22 @@ Tue Apr 17 07:48:50 UTC 2012 - idonmez@suse.com
|
|||||||
* User-defined literals
|
* User-defined literals
|
||||||
* Forward-declared enumerations
|
* Forward-declared enumerations
|
||||||
* Atomics (both libc++'s and libstdc++4.7's <atomic> are supported)
|
* Atomics (both libc++'s and libstdc++4.7's <atomic> are supported)
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 20 12:40:27 UTC 2012 - idonmez@suse.com
|
Tue Mar 20 12:40:27 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
- Target i586-linux for 32bit builds
|
- Target i586-linux for 32bit builds
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 27 21:33:48 UTC 2011 - idonmez@suse.com
|
Tue Dec 27 21:33:48 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Add upstream fix for llvm PR11642
|
- Add upstream fix for llvm PR11642
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 25 15:29:46 UTC 2011 - idonmez@suse.com
|
Sun Dec 25 15:29:46 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Don't run gcc for ada files, just fail instead.
|
- Don't run gcc for ada files, just fail instead.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 22 15:33:24 UTC 2011 - idonmez@suse.com
|
Thu Dec 22 15:33:24 UTC 2011 - idonmez@suse.com
|
||||||
@@ -2698,12 +2734,12 @@ Thu Dec 22 15:33:24 UTC 2011 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 5 13:19:22 UTC 2011 - idoenmez@suse.de
|
Mon Dec 5 13:19:22 UTC 2011 - idoenmez@suse.de
|
||||||
|
|
||||||
- Switch to 3-stage bootstrap
|
- Switch to 3-stage bootstrap
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 2 12:22:07 UTC 2011 - idoenmez@suse.de
|
Fri Dec 2 12:22:07 UTC 2011 - idoenmez@suse.de
|
||||||
|
|
||||||
- Build first stage compiler with -O0 to workaround gcc 4.5 bug
|
- Build first stage compiler with -O0 to workaround gcc 4.5 bug
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 1 18:04:15 UTC 2011 - idoenmez@suse.de
|
Thu Dec 1 18:04:15 UTC 2011 - idoenmez@suse.de
|
||||||
@@ -2725,7 +2761,7 @@ Wed Nov 16 14:28:17 UTC 2011 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 10 14:54:50 UTC 2011 - idonmez@suse.com
|
Thu Nov 10 14:54:50 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Disable ARM support, VM goes out of memory while compiling it
|
- Disable ARM support, VM goes out of memory while compiling it
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 10 10:33:01 UTC 2011 - idonmez@suse.com
|
Thu Nov 10 10:33:01 UTC 2011 - idonmez@suse.com
|
||||||
@@ -2742,12 +2778,12 @@ Mon Nov 7 15:05:52 UTC 2011 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 7 09:17:40 UTC 2011 - idonmez@suse.com
|
Mon Nov 7 09:17:40 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Fix LLVMgold.so path for x86-64
|
- Fix LLVMgold.so path for x86-64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 6 22:03:12 UTC 2011 - idonmez@suse.com
|
Sun Nov 6 22:03:12 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Enable ld gold support
|
- Enable ld gold support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 1 11:31:57 UTC 2011 - idonmez@suse.com
|
Tue Nov 1 11:31:57 UTC 2011 - idonmez@suse.com
|
||||||
@@ -2758,12 +2794,12 @@ Tue Nov 1 11:31:57 UTC 2011 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 28 20:54:16 UTC 2011 - idonmez@suse.com
|
Fri Oct 28 20:54:16 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Add llvm-pr9614-part{1,2}.patch to fix LLVM PR9614
|
- Add llvm-pr9614-part{1,2}.patch to fix LLVM PR9614
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 28 08:23:03 UTC 2011 - idonmez@suse.com
|
Fri Oct 28 08:23:03 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Fixup dependencies so that llvm-clang doesn't depend
|
- Fixup dependencies so that llvm-clang doesn't depend
|
||||||
on llvm-clang-devel
|
on llvm-clang-devel
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@@ -2781,12 +2817,12 @@ Fri Oct 21 06:57:07 UTC 2011 - idonmez@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 20 17:56:08 UTC 2011 - idonmez@suse.com
|
Thu Oct 20 17:56:08 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Enable ARM code generation
|
- Enable ARM code generation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 19 15:47:10 UTC 2011 - idonmez@suse.com
|
Wed Oct 19 15:47:10 UTC 2011 - idonmez@suse.com
|
||||||
|
|
||||||
- Fix libdir on x86_64
|
- Fix libdir on x86_64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 18 10:42:09 UTC 2011 - idonmez@suse.com
|
Tue Oct 18 10:42:09 UTC 2011 - idonmez@suse.com
|
||||||
@@ -2796,12 +2832,12 @@ Tue Oct 18 10:42:09 UTC 2011 - idonmez@suse.com
|
|||||||
* -Wc++98-compat warnings for the lexer
|
* -Wc++98-compat warnings for the lexer
|
||||||
* Add flags for the remaining shift related warnings
|
* Add flags for the remaining shift related warnings
|
||||||
(-Wshift-count-negative, -Wshift-count-overflow).
|
(-Wshift-count-negative, -Wshift-count-overflow).
|
||||||
* Only warn in -Wliteral-conversion if the conversion
|
* Only warn in -Wliteral-conversion if the conversion
|
||||||
loses information
|
loses information
|
||||||
* Added clang_getCompletionAnnotation and
|
* Added clang_getCompletionAnnotation and
|
||||||
clang_getCompletionNumAnnotations to retrieve annotations
|
clang_getCompletionNumAnnotations to retrieve annotations
|
||||||
from completion string.
|
from completion string.
|
||||||
* Add support for -std=gnu90 and -std=c++03, for compatibility
|
* Add support for -std=gnu90 and -std=c++03, for compatibility
|
||||||
with modern gcc.
|
with modern gcc.
|
||||||
- Switch to tar.bz2 and remove xz dependency
|
- Switch to tar.bz2 and remove xz dependency
|
||||||
|
|
||||||
@@ -2843,7 +2879,7 @@ Fri Aug 12 09:22:18 UTC 2011 - idonmez@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 3 11:18:31 UTC 2011 - idonmez@novell.com
|
Wed Aug 3 11:18:31 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to r136773
|
- Update to r136773
|
||||||
* Many AVX fixes
|
* Many AVX fixes
|
||||||
* Support for C++0x unicode string and character literals
|
* Support for C++0x unicode string and character literals
|
||||||
|
|
||||||
@@ -2857,19 +2893,19 @@ Tue Jul 19 14:03:21 UTC 2011 - vljn@ovi.com
|
|||||||
Mon Jul 11 08:33:59 UTC 2011 - idonmez@novell.com
|
Mon Jul 11 08:33:59 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to r134888
|
- Update to r134888
|
||||||
* Type system rewrite
|
* Type system rewrite
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 9 09:27:17 UTC 2011 - idonmez@novell.com
|
Sat Jul 9 09:27:17 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to r134813
|
- Update to r134813
|
||||||
* Mainly gcc compatibility fixes
|
* Mainly gcc compatibility fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 8 11:31:27 UTC 2011 - idonmez@novell.com
|
Fri Jul 8 11:31:27 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to r134698
|
- Update to r134698
|
||||||
* Up to 80x speed improvements with -Wuninitialized
|
* Up to 80x speed improvements with -Wuninitialized
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 7 11:37:40 UTC 2011 - idonmez@novell.com
|
Thu Jul 7 11:37:40 UTC 2011 - idonmez@novell.com
|
||||||
@@ -2878,7 +2914,7 @@ Thu Jul 7 11:37:40 UTC 2011 - idonmez@novell.com
|
|||||||
- Disable assertions because they are not thread safe
|
- Disable assertions because they are not thread safe
|
||||||
- Update to r134611
|
- Update to r134611
|
||||||
* Many C++ fixes and speedups
|
* Many C++ fixes and speedups
|
||||||
* Updates for AVX instruction support
|
* Updates for AVX instruction support
|
||||||
* gcc 4.6.1 support
|
* gcc 4.6.1 support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@@ -2889,19 +2925,19 @@ Sat Jul 2 19:31:38 UTC 2011 - idonmez@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 5 14:39:53 UTC 2011 - idonmez@novell.com
|
Sun Jun 5 14:39:53 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to r132667
|
- Update to r132667
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun May 29 16:34:46 UTC 2011 - idonmez@novell.com
|
Sun May 29 16:34:46 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Update to use cmake buildsystem
|
- Update to use cmake buildsystem
|
||||||
- Remove unmaintained ocaml support
|
- Remove unmaintained ocaml support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 26 11:01:57 UTC 2011 - idonmez@novell.com
|
Thu May 26 11:01:57 UTC 2011 - idonmez@novell.com
|
||||||
|
|
||||||
- Drop ocaml support because its unmaintained
|
- Drop ocaml support because its unmaintained
|
||||||
- Update to latest svn revision 132050
|
- Update to latest svn revision 132050
|
||||||
+ Start of the upcoming 3.0 version
|
+ Start of the upcoming 3.0 version
|
||||||
+ Support for gcc 4.6 c++ headers
|
+ Support for gcc 4.6 c++ headers
|
||||||
+ Better support for C++0x
|
+ Better support for C++0x
|
||||||
@@ -2909,7 +2945,7 @@ Thu May 26 11:01:57 UTC 2011 - idonmez@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 29 12:07:59 UTC 2011 - idoenmez@novell.com
|
Fri Apr 29 12:07:59 UTC 2011 - idoenmez@novell.com
|
||||||
|
|
||||||
- Fix ocaml dependency
|
- Fix ocaml dependency
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 7 08:22:48 UTC 2011 - idoenmez@novell.com
|
Thu Apr 7 08:22:48 UTC 2011 - idoenmez@novell.com
|
||||||
@@ -2934,7 +2970,7 @@ Mon Mar 7 20:09:51 CET 2011 - jslaby@suse.de
|
|||||||
Wed Dec 22 11:41:15 UTC 2010 - dmacvicar@suse.de
|
Wed Dec 22 11:41:15 UTC 2010 - dmacvicar@suse.de
|
||||||
|
|
||||||
- Do not require specific ffi version but gather the
|
- Do not require specific ffi version but gather the
|
||||||
appropiate one from the distro
|
appropiate one from the distro
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 10 04:57:21 UTC 2010 - reddwarf@opensuse.org
|
Fri Dec 10 04:57:21 UTC 2010 - reddwarf@opensuse.org
|
||||||
@@ -2944,7 +2980,7 @@ Fri Dec 10 04:57:21 UTC 2010 - reddwarf@opensuse.org
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 29 10:31:49 UTC 2010 - ismail@namtrac.org
|
Mon Nov 29 10:31:49 UTC 2010 - ismail@namtrac.org
|
||||||
|
|
||||||
- Fix C include paths
|
- Fix C include paths
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 26 12:48:54 UTC 2010 - ismail@namtrac.org
|
Fri Nov 26 12:48:54 UTC 2010 - ismail@namtrac.org
|
||||||
@@ -2952,7 +2988,7 @@ Fri Nov 26 12:48:54 UTC 2010 - ismail@namtrac.org
|
|||||||
- Fix header path for openSUSE 11.4
|
- Fix header path for openSUSE 11.4
|
||||||
- Enabled PIC for x86 for loadable module support
|
- Enabled PIC for x86 for loadable module support
|
||||||
- Enable package tests for llvm and clang
|
- Enable package tests for llvm and clang
|
||||||
- Disable package timestamps to silence an rpmlint warning
|
- Disable package timestamps to silence an rpmlint warning
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 2 00:00:00 UTC 2010 - anschneider@exsuse.de
|
Wed Jun 2 00:00:00 UTC 2010 - anschneider@exsuse.de
|
||||||
|
149
llvm17.keyring
149
llvm17.keyring
@@ -1,3 +1,4 @@
|
|||||||
|
# Tobias Hieta <tobias@hieta.se>
|
||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
mQGNBGLtemUBDADClvDIromq0Y4TX+wyRyYCq5WusPQheQuY8dVCXd9KhMpYAv8U
|
mQGNBGLtemUBDADClvDIromq0Y4TX+wyRyYCq5WusPQheQuY8dVCXd9KhMpYAv8U
|
||||||
@@ -39,6 +40,8 @@ w2nCoGWkAcfeuih+jfyEjN24NK+sE/bM+krwVv430ewJwm1bVUqKrbOb9aa6V9gP
|
|||||||
9RmlwZlOTFGcWBYl/cfRONn9qi9a6w==
|
9RmlwZlOTFGcWBYl/cfRONn9qi9a6w==
|
||||||
=Lvw+
|
=Lvw+
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
# Tom Stellard <tstellar@redhat.com>
|
||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
mQINBFrqgT0BEAC7xo0WH+eNrLlU5LrCk59KmImn1abFcmWNd8kYr5XfqmJKyVqo
|
mQINBFrqgT0BEAC7xo0WH+eNrLlU5LrCk59KmImn1abFcmWNd8kYr5XfqmJKyVqo
|
||||||
@@ -66,18 +69,18 @@ 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
|
||||||
@@ -88,17 +91,113 @@ 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
|
||||||
=tMzl
|
pGgAsOk/q/OlhWqcrlM=
|
||||||
|
=bEwW
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
# Hans Wennborg <hans@chromium.org>
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
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
|
||||||
|
6U4RlBcEgKU=
|
||||||
|
=43Mw
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
# Muhammad Omair Javaid (LLVM Release Signing Key) <omair.javaid@linaro.org>
|
||||||
|
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
mDMEZw7PSRYJKwYBBAHaRw8BAQdABNbFOdYdCukaIGdkMQpHrSeDIZt/7bUSVwYD
|
||||||
|
dX7JnHy0Sk11aGFtbWFkIE9tYWlyIEphdmFpZCAoTExWTSBSZWxlYXNlIFNpZ25p
|
||||||
|
bmcgS2V5KSA8b21haXIuamF2YWlkQGxpbmFyby5vcmc+iJMEExYKADsWIQQPuWgk
|
||||||
|
YG0V/dVMPQkv/GKdP1Y73AUCZw7PSQIbAwULCQgHAgIiAgYVCgkICwIEFgIDAQIe
|
||||||
|
BwIXgAAKCRAv/GKdP1Y73LHWAPoDDIf+zv4qbPmdSNN1JwjB6/U+3ZfW0bDhrxhF
|
||||||
|
1TzU9gEAyeG9bPukFmygisr2FBt+YV0Xe/il5zhYfTyP4pNNqQq4OARnDs9JEgor
|
||||||
|
BgEEAZdVAQUBAQdA8W6MXoRWNhKJEWM/AgeJwy19kkflnK+yFVEXnWaPXGIDAQgH
|
||||||
|
iHgEGBYKACAWIQQPuWgkYG0V/dVMPQkv/GKdP1Y73AUCZw7PSQIbDAAKCRAv/GKd
|
||||||
|
P1Y73KmXAP0R/TCQcZy3E2eqgBhVUY3/0N0amRWDjssxw/O/7P/PcwD/aFQdB9Vt
|
||||||
|
f9xntjl+EcZ58U5mbwhBTYLmHpCqZUP+ugk=
|
||||||
|
=s2el
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
28
llvm17.spec
28
llvm17.spec
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package llvm17
|
# spec file for package llvm17
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
%bcond_without use_lld
|
%bcond_without use_lld
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%ifarch aarch64 x86_64
|
%ifarch aarch64 ppc64le s390x x86_64
|
||||||
%bcond_without lldb
|
%bcond_without lldb
|
||||||
%bcond_without lldb_python
|
%bcond_without lldb_python
|
||||||
%else
|
%else
|
||||||
@@ -95,6 +95,12 @@
|
|||||||
%global llvm_experimental_targets ""
|
%global llvm_experimental_targets ""
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%ifnarch ppc64le
|
||||||
|
%global openmp_cpu %{target_cpu}
|
||||||
|
%else
|
||||||
|
%global openmp_cpu ppc64
|
||||||
|
%endif
|
||||||
|
|
||||||
%define _plv %{!?product_libs_llvm_ver:%{_sonum}}%{?product_libs_llvm_ver}
|
%define _plv %{!?product_libs_llvm_ver:%{_sonum}}%{?product_libs_llvm_ver}
|
||||||
|
|
||||||
# Expands to -n if we're providing the distribution default for the given package.
|
# Expands to -n if we're providing the distribution default for the given package.
|
||||||
@@ -412,6 +418,14 @@ Patch24: opt-viewer-Find-style-css-in-usr-share.patch
|
|||||||
Patch25: check-no-llvm-exegesis.patch
|
Patch25: check-no-llvm-exegesis.patch
|
||||||
# PATCH-FIX-OPENSUSE lld-default-sha1.patch
|
# PATCH-FIX-OPENSUSE lld-default-sha1.patch
|
||||||
Patch26: lld-default-sha1.patch
|
Patch26: lld-default-sha1.patch
|
||||||
|
# PATCH-FIX-UPSTREAM: Use symbol versioning also for libclang-cpp.so.
|
||||||
|
Patch27: clang-shlib-symbol-versioning.patch
|
||||||
|
# PATCH-FIX-UPSTREAM: use shlib.quote to fix Python 3.13 compatibility
|
||||||
|
Patch28: libcxx-use-shlex-quote.patch
|
||||||
|
# PATCH-FIX-UPSTREAM: Adapt lldb to support Python 3.13
|
||||||
|
Patch29: lldb-support-python-3.13.patch
|
||||||
|
# PATCH-FIX-UPSTREAM: Remove unused imports fix Python 3.13 compatibility
|
||||||
|
Patch30: libcxx-remove-unused-imports.patch
|
||||||
BuildRequires: binutils-devel >= 2.21.90
|
BuildRequires: binutils-devel >= 2.21.90
|
||||||
BuildRequires: cmake >= 3.13.4
|
BuildRequires: cmake >= 3.13.4
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@@ -428,7 +442,7 @@ Requires(post): update-alternatives
|
|||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
# llvm does not work on s390
|
# llvm does not work on s390
|
||||||
ExcludeArch: s390
|
ExcludeArch: s390
|
||||||
%if %{with ffi}
|
%if %{with ffi} || %{with openmp}
|
||||||
BuildRequires: pkgconfig(libffi)
|
BuildRequires: pkgconfig(libffi)
|
||||||
%endif
|
%endif
|
||||||
%if %{with valgrind}
|
%if %{with valgrind}
|
||||||
@@ -853,6 +867,7 @@ pushd clang-%{_version}.src
|
|||||||
%patch -P 6 -p1
|
%patch -P 6 -p1
|
||||||
%patch -P 7 -p2
|
%patch -P 7 -p2
|
||||||
%patch -P 9 -p2
|
%patch -P 9 -p2
|
||||||
|
%patch -P 27 -p2
|
||||||
|
|
||||||
# We hardcode openSUSE
|
# We hardcode openSUSE
|
||||||
rm unittests/Driver/DistroTest.cpp
|
rm unittests/Driver/DistroTest.cpp
|
||||||
@@ -880,6 +895,7 @@ popd
|
|||||||
%if %{with lldb}
|
%if %{with lldb}
|
||||||
pushd lldb-%{_version}.src
|
pushd lldb-%{_version}.src
|
||||||
%patch -P 11 -p1
|
%patch -P 11 -p1
|
||||||
|
%patch -P 29 -p2
|
||||||
popd
|
popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@@ -889,6 +905,8 @@ sed -i '/set(LLVM_COMMON_CMAKE_UTILS/ s/CMAKE_CURRENT_SOURCE_DIR/CMAKE_SOURCE_DI
|
|||||||
sed -i '\"runtimes/cmake/Modules" s/CMAKE_CURRENT_SOURCE_DIR/CMAKE_SOURCE_DIR/g' libcxx{,abi}-%{_version}.src/CMakeLists.txt
|
sed -i '\"runtimes/cmake/Modules" s/CMAKE_CURRENT_SOURCE_DIR/CMAKE_SOURCE_DIR/g' libcxx{,abi}-%{_version}.src/CMakeLists.txt
|
||||||
pushd libcxx-%{_version}.src
|
pushd libcxx-%{_version}.src
|
||||||
%patch -P 15 -p2
|
%patch -P 15 -p2
|
||||||
|
%patch -P 28 -p2
|
||||||
|
%patch -P 30 -p2
|
||||||
rm test/libcxx/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp
|
rm test/libcxx/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp
|
||||||
rm test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp
|
rm test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp
|
||||||
rm test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp
|
rm test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp
|
||||||
@@ -1694,8 +1712,8 @@ fi
|
|||||||
%{_libdir}/libomptarget-nvptx-*.bc
|
%{_libdir}/libomptarget-nvptx-*.bc
|
||||||
%ifarch aarch64 ppc64le x86_64
|
%ifarch aarch64 ppc64le x86_64
|
||||||
%{_libdir}/libomptarget.devicertl.a
|
%{_libdir}/libomptarget.devicertl.a
|
||||||
%{_libdir}/libomptarget.rtl.{%{target_cpu},amdgpu,cuda}.so
|
%{_libdir}/libomptarget.rtl.{%{openmp_cpu},amdgpu,cuda}.so
|
||||||
%{_libdir}/libomptarget.rtl.{%{target_cpu},amdgpu,cuda}.so.%{_soname}
|
%{_libdir}/libomptarget.rtl.{%{openmp_cpu},amdgpu,cuda}.so.%{_soname}
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
%{_libdir}/cmake/openmp
|
%{_libdir}/cmake/openmp
|
||||||
|
Reference in New Issue
Block a user