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.
This PR should fix
dpf-plugins
building fault: https://archriscv.felixc.at/.status/log.htm?url=logs/dpf-plugins/dpf-plugins-1.7-2.log , althoughprojectm
itself can be built successfully with current riscv64 patch.The current patch uses
autoreconf
to update the outdatedconfig.{guess,sub}
, while also updatinglibtool
at the same time, which breaking the behavior ofsed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
in the original PKGBUILD, which causes projectm to be overlinked, more specifically linkinglibprojectm.so
tolibqt5gui.so
andlibqt5opengl.so
, meanwhileprojectm
's depends not containingqt5-base
.Although, the
dpf-plugins
doesn't depend onqt5-base
butprojectm
, then, boom.We believe in that just update the
config.{guess,sub}
is enough to build it.