Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 942869 - gui-wm/hyprland: [suggestion] introduce clang USE flag
Summary: gui-wm/hyprland: [suggestion] introduce clang USE flag
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Julien Roy
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-11-04 09:31 UTC by Filip Kobierski
Modified: 2024-11-04 09:45 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Filip Kobierski 2024-11-04 09:31:03 UTC
Hyprland requires recent GCC/clang versions to work.

Right now the approach is to have the logic behind that in pkg_setup, like this:

```
pkg_setup() {
	[[ ${MERGE_TYPE} == binary ]] && return

	if tc-is-gcc && ver_test $(gcc-version) -lt 14 ; then
		eerror "Hyprland requires >=sys-devel/gcc-14 to build"
		eerror "Please upgrade GCC: emerge -v1 sys-devel/gcc"
		die "GCC version is too old to compile Hyprland!"
	elif tc-is-clang && ver_test $(clang-version) -lt 18 ; then
		eerror "Hyprland requires >=sys-devel/clang-18 to build"
		eerror "Please upgrade Clang: emerge -v1 sys-devel/clang"
		die "Clang version is too old to compile Hyprland!"
	fi
}
```

The ideal approach IMO would be to have the verison limits in BDEPEND.
However I have gcc-13 and clang-18 installed with gcc being my primary compiler.
Then that approach would allow me to compile when it shouldn't.

That is why I propose adding a clang USE flag to the ebuild to allow for choosing the right compiler, like firefox does for example.
That would add more flexibility, make the ebuild easier to work with.

What do you think about it?
Comment 1 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-11-04 09:32:21 UTC
We don't really do this unless a package has real non-trivial requirements like Firefox does, and even then, we don't love it. I don't consider this case to warrant it.

We're also going to stable GCC 14 soon (prep work is underway in bug 941869).
Comment 2 Filip Kobierski 2024-11-04 09:42:58 UTC
I see.
Could you please explain/link to why the clang USE flag is not wanted?
Comment 3 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-11-04 09:45:59 UTC
https://devmanual.gentoo.org/general-concepts/use-flags/index.html#when-not-to-use-use-flags

"You should not introduce USE flags that manipulate compiler flags or similar variables configured directly by the user (e.g. -O3, -flto). Instead, packages should avoid manipulating them at all, and let users set them directly."