Commit graph

861 commits

Author SHA1 Message Date
Timm Bäder
6445604fbc Update to 19.1.4 2024-11-21 14:55:34 +01:00
Konrad Kleine
56e8e3009c Don't build HTML documentation. Add lldb man pages.
* Install a redirection index.html page to point users to the
  upstream HTML documentation.
* Remove myst parser patch for RHEL.
* Remove -DLLVM_INCLUDE_DOCS
* Add lldb man-pages
2024-11-21 14:55:34 +01:00
Josh Stone
028a8240db Fix profiling after a binutils NOTE change
Resolves: rhbz#2322754
Ref: https://github.com/llvm/llvm-project/issues/114605
Ref: https://github.com/llvm/llvm-project/pull/114907
2024-11-21 14:55:34 +01:00
Konrad Kleine
7cc769a9d3 [make] Use mock instead of rpmbuild
I always wanted to use `mock` instead of `rpmbuild` for building release
and snapshot builds. I disliked `mock` for a very particular reason.
When a build failed and I wanted to go in and change the last running
script and re-run it, I thought this wasn't possible. Little did I know.

Here are the make targets and what they do now:

```
Available targets
-----------------
get-sources-snapshot                  - Downloads all sources we need
for a snapshot build.
get-sources-release                   - Downloads all sources we need
for a release build.
srpm-release                          - Builds an SRPM that can be used
for a release build.
srpm-snapshot                         - Builds an SRPM that can be used
for a snapshot build.
scrub-chroot                          - Completely remove the fedora
chroot and cache.
mockbuild-release                     - Start a mock build of the
release SRPM.
mockbuild-snapshot                    - Start a mock build of the
snapshot SRPM.
edit-last-failing-script              - Opens the last failing or
running script from mock in your editor
                                        of choice for you to edit it and
later re-run it in mock with:
                                        "make
mockbuild-rerun-last-script-...".
mockbuild-rerun-last-script           - Re-runs the last failing or
running script of your release/mock mockbuild.
help                                  - Display this help text.
get-llvm-version-release              - Determines the LLVM version
given in the llvm.spec file.
get-llvm-version-snapshot             - Determines the LLVM version
given in the version.spec.inc file.
get-spec-file-release                 - Parses the spec file for the
Release: tag
get-srpm-release                      - Determines the name of the SRPM
used for release builds
                                        Can be overriden by giving "make
... SRPM_PATH=foo.src.rpm".
get-srpm-snapshot                     - Determines the name of the SRPM
used for snapshot builds
                                        Can be overriden by giving "make
... SRPM_PATH=foo.src.rpm".
```

When you want to build a release build for fedora you can do so by
running `make mockbuild-release` it will download the sources for you
and create an SRPM that it will pass to `mock` for the final build.

To build for `centos` you can use `make mockbuild-release
MOCK_CHROOT=centos-stream-9-x86_64`.
2024-11-21 14:55:34 +01:00
Tulio Magno Quites Machado Filho
280f80421e Keep using DWARF-5 on all snapshot builds
We want to continue testing DWARF-5 on all snapshot builds, including on
RHEL 8 and 9.
This is in-sync with
https://src.fedoraproject.org/tests/clang/pull-request/48 .

Fixes: 8451454bdb (Port changes from RHEL 9)
2024-11-21 14:55:34 +01:00
Timm Bäder
56f9d140ef Install i386 config files for x86_64 2024-11-21 14:55:34 +01:00
Konrad Kleine
b66165f497 Fix --gcc-install-dir
This should fix this error:

```
clang: error: '/opt/rh/gcc-toolset-14/root/usr' does not contain a GCC installation
```
2024-11-21 14:55:34 +01:00
Konrad Kleine
617e9db92f Port changes from RHEL 9
This change brings back some patches we had applied in LLVM 18.
And since the `bundle_compat_lib` switch in RHEL still builds LLVM 18,
I've added them here. This was easily possible due to #323.

This effectively allows us to build LLVM 19 in RHEL9 (see also RHEL-57461).

I've also added the `--gcc-install-dir` to the config file which is used
once clang is installed. This is to tell clang in RHEL which standard
library to link against.

We decided to no longer patch clang to default to DWARF4. Instead we tune
the default by adding `-gdwarf-4` to the config file.

RHEL-wise we've bumped the gts version from 13 to 14 (see RHEL-38228).
2024-11-21 14:55:34 +01:00
Nikita Popov
c9f442732d Don't install binutils-gold on RHEL 8
This subpackage is only available since RHEL 9.
2024-11-21 14:55:34 +01:00
Nikita Popov
7a666923d6 Add BuildRequires on binutils-gold
While we *are* building the gold plugin, I noticed that we're
no longer running the tests for it on f41 and rawhide. Add a
BuildRequires on binutils-gold to restore the tests.
2024-11-21 14:55:34 +01:00
Konrad Kleine
a139ec6b09 Patch numbering
We've established the habit of numbering patches the following way:

  0-499: All patches that are unconditionally applied
  500-1000: Patches applied under certain conditions (e.g. only on RHEL8)
  1500-1599: Patches for LLVM 15
  1600-1699: Patches for LLVM 16
  1700-1799: Patches for LLVM 17
  ...
  2000-2099: Patches for LLVM 20

The idea behind this is that the last range of patch numbers (e.g. 2000-2099) allow
us to "deprecate" a patch instead of deleting it right away.
Suppose llvm upstream in git is at version 20 and there's a patch living
in some PR that has not been merged yet. You can copy that patch and put it
in a line like:

  Patch2011: upstream.patch

As time goes by, llvm moves on to LLVM 21 and meanwhile the patch has landed.
There's no need for you to remove the "Patch2011:" line. In fact, we encourage you
to not remove it for some time. For compat libraries and compat packages we might
still need this patch and so we're applying it automatically for you in those
situations. Remember that a compat library is always at least one major version
behind the latest packaged LLVM version.

I've restored a patch for an older version of LLVM:

We needed to move the

`0001-Always-build-shared-libs-for-LLD.patch`

from the `0-499` range to the `19xx` (current release) and `20xx`
(snapshots) range. In addition the old version of the patch was restored
with the following command and added to the `18xx` range:

```
$ git show
0656f30e3739d2d371d58f2fad66d634a766e0fe:0001-Always-build-shared-libs-for-LLD.patch
> 0001-18-Always-build-shared-libs-for-LLD.patch
```

This was needed because the `bundle_compat_lib` (RHEL only) build
condition needs the old version of the patch.
2024-11-21 14:55:34 +01:00
Timm Bäder
66638c4d84 Update to 19.1.3 2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
6880c5f41b Update README.md for tests directory 2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
b440f913ed Update rpminspect config
rpminspect now allows to set unicode ignore rules on the dist-git config
Add the known example for misleading bidirectional shipped with
clang-tidy docs here, so we don't need to update the
rpminspect-data-fedora package every single new fedora release.
2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
2136a71a98 Update gating settings
With the addition of new testplans now we're making the plan result
reporting in bodhi separately (ci.fmf).
Updated the gating acceptance rules to require the two new plans.
lld-alternative is always required. kernel-ark is required only in
rawhide.
2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
0e8574b10c Add missing testplans from other components
kernel-ark-build to build latest upstream kernel-ark sources with clang
lld-alternative to test update-alternatives upon install/uninstall
2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
0b028e44fc Update build-gating plan to test all components
With the merge of all the packages into llvm now we need to test
all those with llvm, but the tests are still scattered across different
test repos. This commit adds discover steps to gather all the tests.
2024-11-21 14:55:34 +01:00
Nikita Popov
7ad7a4314c Include liblldb.so in bundle_compat_lib
This is needed by bpftrace now.
2024-11-21 14:55:34 +01:00
Tom Stellard
7f22f8a288 Add file entry for new clang-sycl-linker tool 2024-11-21 14:55:34 +01:00
Nikita Popov
76b3434767 Backport requires fixes from RHEL 10
Make the following changes:
 * Fix a number of `%{?isa}` to use `%{?_isa}` instead.
 * Add explicit lld-libs -> llvm-libs and lldb -> clang-libs
   dependencies (to satisfy rpminspect rpmdeps analysis).
 * Fix libomp-devel -> libomp dependency (it was accidentally
   using libomp-devel -> llvm instead).
 * Change all `= %{version}` requires to `= %{version}-%{release}`.
   We were mostly already doing this, but missed some places.
2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
6fc421f466 Fix %postun scriptlet for llvm-devel when upgrading/downgrading
The scriptlet tried to run llvm-config-%{maj_ver} when upgrading or
downgrading to check if ${maj_ver} has changed. Since postun runs
after the package files have been uninstalled this will always fail
to run the command. We should run instead llvm-config%{exec_suffix},
which in the case of upgrades or downgrades will still be present,
installed from the new package.
2024-11-21 14:55:34 +01:00
Konrad Kleine
bb9a558674 Add pre-commit update to git blame ignore revs list 2024-11-21 14:55:34 +01:00
Konrad Kleine
cfa15b62ae [pre-commit]: pre-commit-hooks 5.0.0, tmt 1.38.0
After the update I ran: `pre-commit run -a`
2024-11-21 14:55:34 +01:00
Nikita Popov
6ab58dc689 Backport openmp fixes from RHEL 10
Backport patch from https://github.com/llvm/llvm-project/pull/111831
to fix openmp affinity tests on some brew ppc runners.

Also add one more openmp test to the ignore list for s390x.

Also add --time-tests to the lit args -- I had one instance where
openmp tests were running for 4h on s390x. If this happends again,
this should help determine which tests take so much time.
2024-11-21 14:55:34 +01:00
Timm Bäder
07d391355a Port a few changes from the llvm 18 compat packages
https://src.fedoraproject.org/rpms/lld18/pull-request/2
https://src.fedoraproject.org/rpms/clang18/pull-request/5
2024-11-21 14:55:34 +01:00
Nikita Popov
85ff72ec53 Skip openmp tests when builder uses 5-level page tables
A large number of openmp tests using tsan fail when we hit certain
machines on the rhel8-beefy channel in brew, because they appear
to the use 5-level page tables. This results in memory being
mapped in places where tsan does not expect it.
See https://github.com/llvm/llvm-project/issues/111492 for more
context.

Work around this by disabling the openmp tests that use tsan if
the cpu has the la57 feature.
2024-11-21 14:55:34 +01:00
Konrad Kleine
3ee21370a3 Remove %elif no which is unsupported on RHEL8 2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
e4189b9861 Add exception for badfuncs inspection (rpminspect)
As compiler-rt libraries are now part of llvm package, we need to set
the exception we previously had on compiler-rt repo in the llvm repo.
2024-11-21 14:55:34 +01:00
Nikita Popov
30e990e77f Only disable rpath during installation
We currently disable rpath during both build and install. Instead,
we use LD_LIBRARY_PATH to allow the built clang to find the
libLLVM.so etc objects.

However, this does not work well if the system clang and the
clang being built have the same version. During the build, we
use both the system clang and the just-built clang, and they
need to use the system and just-built shared objects respectively.
However, use of LD_LIBRARY_PATH causes us to always use the
just-built objects as long as the versions match.

This is a problem in two scenarios: When building compat packages
for the current system LLVM version, we mix system clang with
compat libraries, which assume different paths. And when building
release candidates, a build using a previous rc of a newer rc
may use ABI-incompatible objects, because we don't version sonames
on rc versions.

Fix this by keeping the rpath during the build and only stripping
it on installation using the CMAKE_SKIP_INSTALL_RPATH option.
For manually installed binaries, we need to also manually strip
the rpath using chrpath.

This way system clang will use system libraries, and just-built
clang will use just-built libraries.
2024-11-21 14:55:34 +01:00
Konrad Kleine
8a0468504a Add "Cleanup CMake arguments" commit to blame ignore list 2024-11-21 14:55:34 +01:00
Konrad Kleine
614bc5ae9f Cleanup CMake arguments
Before we had a very long list of CMake arguments.

There was no room for annotation through comments. Now we have a new
global called `%cmake_config_args` that one can append to.

I've created these `#regions` to group the options for each sub-project:

```
  #region clang options
  #region compiler-rt options
  #region docs options
  #region lldb options
  #region llvm options
  #region openmp options
  #region test options
  #region misc options
```
2024-11-21 14:55:34 +01:00
Maxwell G
6590270474 Add 'Provides: clangd' to the clang-tools-extra subpackage 2024-11-21 14:55:34 +01:00
Nikita Popov
a76e355bad Add tasking/issue-69733.c to flaky test list
This spurious failure has been observed both on aarch64 in fedora
rawhide koji and on ppc64le in c10s koji.

I've filed an upstream issue to track this here:
https://github.com/llvm/llvm-project/issues/111140
2024-11-21 14:55:34 +01:00
Nikita Popov
baf115a7fb Add provides for libomp(major) and libomp-devel(major)
Forward-port from
https://src.fedoraproject.org/rpms/libomp18/pull-request/1.
2024-11-21 14:55:34 +01:00
Konrad Kleine
71f1e1178c Add #region #endregion comments
Each `#region XY` now has an `#endregion XY` instead of just
`#endregion`. This is optional and `XY` does not have to be repeated for
the "system" to work but it makes working with regions a bit more
convenient.

```
  #region globals...

  #region packages...

  #region prep...

  #region build...

  #region install...

  #region check...

  #region misc...

  #region files...

  #region changelog...
```
2024-11-21 14:55:34 +01:00
Konrad Kleine
6705db9611 Add changelog entry for 19.1.0 update 2024-11-21 14:55:34 +01:00
Konrad Kleine
28ab09b450 Copy over %changelog from b6b17b013e 2024-11-21 14:55:34 +01:00
Konrad Kleine
72968737bc Remove %llvm_snapshot_changelog_entry 2024-11-21 14:55:34 +01:00
Konrad Kleine
db57ee9a65 Add .git-blame-ignore-revs
When merging the `*.spec.inc` files into `llvm.spec` this became
necessary to preserve git history on llvm.spec.
2024-11-21 14:55:34 +01:00
Konrad Kleine
4618156485 Merge *.spec.inc files into llvm.spec
This commit should be listed in .git-blame-ignore-revs because it moved
the content of the files untouched into llvm.spec.
2024-11-21 14:55:34 +01:00
Nikita Popov
14dfc3149d Pass --with=snapshot_build in copr Makefile
We now no longer default to this in the spec file, so pass it
explicitly on copr.
2024-11-21 14:55:34 +01:00
Konrad Kleine
4466fbf9bc Disable snapshots by default
Since https://github.com/fedora-llvm-team/llvm-snapshots/pull/754 all
build chroots on Copr that are used for snapshot building will have
`--with=snapshot_build` set.

This addresses the concern [1] that Copr specific conditionals are
discouraged if not forbidden in spec files.

[1]: https://src.fedoraproject.org/rpms/llvm/pull-request/301#comment-221782
2024-11-21 14:55:34 +01:00
Nikita Popov
8e369591ab Rebase RHEL myst_parser patch 2024-11-21 14:55:34 +01:00
Nikita Popov
0f3a84b3d9 Remove clang-pseudo
Removed in https://github.com/llvm/llvm-project/pull/109154.
2024-11-21 14:55:34 +01:00
Nikita Popov
97dfdc4990 Remove clang-rename
Removed in https://github.com/llvm/llvm-project/pull/108988.
2024-11-21 14:55:34 +01:00
Nikita Popov
8ab3d3d63a Make rawhide compatible with snapshot builds 2024-11-21 14:55:34 +01:00
Jesus Checa Hidalgo
a9289293de Require rpmdeplint gating test only in rawhide
The test is run by CI only in rawhide. Requiring it in
all fedora branches will cause that all bodhi updates get
stuck due to the required test being absent.
2024-11-21 14:55:34 +01:00
Timm Bäder
4fb09cf1aa Update to 19.1.0 2024-09-19 07:58:16 +02:00
Timm Bäder
b7d0012532 Add parallel/bug631976.c to XFAIL
This tests spuriously fails on various arches.
2024-09-11 17:00:16 +02:00
Timm Bäder
59804f548d Merge branch 'big-merge-merge' into rawhide 2024-09-10 11:49:34 +02:00