Conversation
Member
Author
|
/packit rebuild-failed |
The `$0x7F` immediate prefix is x86 AT&T syntax, not valid PowerPC. Newer binutils on Fedora 44+ treats it as a symbol reference, causing a relocation in .text that the linker rejects for a shared object: ``` /usr/bin/ld.bfd: error: read-only segment has dynamic relocations ``` Also fix `mr %%r0, 1` (move register, expects two registers) to `li %%r0, 1` (load immediate), matching the existing `li` usage for the `execve` syscall number on the same code path. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
It seems that %cmake3 macros are no long provided in rawhide, nor is there a `Provides: cmake3`. https://fedoraproject.org/wiki/Changes/CMake4.0
The service has been down for quite some time now causing the CI to fail: ``` curl https://scan.coverity.com/download/other/linux64 \ % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 59 0 0 100 59 0 378 --:--:-- --:--:-- --:--:-- 378 100 1608 0 1549 100 59 7470 284 --:--:-- --:--:-- --:--:-- 7730 Error: Unable to process file command 'output' successfully. Error: Invalid format ' <head>' ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
make-srpm.shto use%cmakemacros instead of%cmake3(and corresponding%cmake_build,%ctest,%cmake_install), and changeBuildRequires: cmake3tocmake, following the Fedora CMake 4.0 change%undefine __cmake3_in_source_build$0x7F→0x7F,mr→li) rejected by newer binutils on Fedora 44+:mainbranch since the Coverity Scan service has been downTest plan