@8x13b that was an upstream issue and is now fixed.
Search Criteria
Package Details: hyprland-git 0.45.0.r18.3fb47372-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/hyprland-git.git (read-only, click to copy) |
---|---|
Package Base: | hyprland-git |
Description: | Hyprland is an independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks |
Upstream URL: | https://github.com/hyprwm/Hyprland |
Licenses: | BSD-3-Clause |
Conflicts: | hyprland |
Provides: | hyprland |
Submitter: | hertog |
Maintainer: | Vaxry (zjeffer, alba4k) |
Last Packager: | alba4k |
Votes: | 98 |
Popularity: | 8.31 |
First Submitted: | 2022-04-12 20:26 (UTC) |
Last Updated: | 2024-11-21 17:56 (UTC) |
Dependencies (54)
- aquamarine-gitAUR
- cairo (cairo-gitAUR)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR)
- glslang (glslang-gitAUR)
- hyprcursor-gitAUR
- hyprlang-gitAUR
- hyprutils-gitAUR
- libdisplay-info (libdisplay-info-gitAUR)
- libdrm (libdrm-gitAUR)
- libglvnd (libglvnd-gitAUR)
- libinput (libinput-noaccumAUR, libinput-multiplierAUR, libinput-three-finger-dragAUR)
- libliftoff (libliftoff-gitAUR)
- libx11 (libx11-gitAUR)
- libxcb (libxcb-gitAUR)
- libxcomposite
- libxcursor
- libxfixes
- libxkbcommon (libxkbcommon-gitAUR)
- Show 34 more dependencies...
Required by (63)
- autoricer-bin (requires hyprland) (optional)
- focal-hyprland-git (requires hyprland)
- gbar-git (requires hyprland) (optional)
- grimblast-git (requires hyprland)
- hdisplays (requires hyprland) (make)
- hy3 (requires hyprland)
- hy3-git (requires hyprland)
- hycov-git (requires hyprland)
- hypr-trans-git (requires hyprland)
- hyprdim (requires hyprland)
- hyprdwl-git (requires hyprland)
- hyprforest-installer-bin (requires hyprland) (optional)
- hyprfreeze-git (requires hyprland)
- hyprgui (requires hyprland) (optional)
- hyprgui-bin (requires hyprland) (optional)
- hyprland-activewindow (requires hyprland)
- hyprland-autoname-workspaces-git (requires hyprland)
- hyprland-meta-git
- hyprland-plugin-borders-plus-plus (requires hyprland)
- hyprland-plugin-borders-plus-plus (requires hyprland) (make)
- Show 43 more...
Sources (2)
Latest Comments
« First ‹ Previous 1 .. 25 26 27 28 29 30 31 32 Next › Last »
That1Calculator commented on 2022-08-02 14:10 (UTC)
zoeleu commented on 2022-07-23 04:19 (UTC)
Hey, compiling this on a quad-core laptop absolutely murdered my computer because cmake is using 10 compile jobs at the same time. Could this be fixed here, or should it be reported upstream?
EinderJam commented on 2022-07-06 16:10 (UTC) (edited on 2022-07-06 21:41 (UTC) by EinderJam)
@primalmotion, @ryo1711
I managed to fix my issue:
/usr/lib/libwlroots.so.11032
was not owned by any package and caused conflicts when installinghyprland-git
/usr/lib/libwlroots.so
was a symlink belonging towlroots
, pointing onlibwlroots.so.11032
instead oflibwlroots.so.10
What I did:
-
reinstall
wlroots
to fix the symlinksudo pacman -S wlroots --asdeps
-
Remove
libwlroots.so.11032
sudo rm /usr/lib/libwlroots.so.11032
-
(re)install
hyprland-git
EinderJam commented on 2022-07-06 06:13 (UTC)
@ryu1711 Thank you! @That1Calculator are you aware of the issue?
ryo1711 commented on 2022-07-02 10:39 (UTC)
@EinderJam, @primalmotion, I get the error as well with wlroots
installed. Ignoring to build wlroots
in the PKGBUILD
(commenting out lines 66
, 67
, 68
and 84
) fixes it though.
EinderJam commented on 2022-07-02 06:39 (UTC)
@primalmotion I also get this error when building, with wlroots
installed, not wlroots-git
GuessWhatBBQ commented on 2022-06-30 12:45 (UTC) (edited on 2022-06-30 12:47 (UTC) by GuessWhatBBQ)
Cmake looks for wlroots in /usr i.e the library needs to be installed before it can begin compiling or cmake somehow needs to be pointed to the wlroots that was compiled in $(srcdir)/tmpwlr.
The best option would probably be to create a separate package in the AUR called wlroots-hyprland
with the required version of wlroots compiled and to make that a dependency of hyprland-git
so that it's installed in the system beforehand.
primalmotion commented on 2022-06-29 20:58 (UTC) (edited on 2022-06-29 20:59 (UTC) by primalmotion)
The last change broke the install process
error: failed to commit transaction (conflicting files)
hyprland-git: /usr/lib/libwlroots.so.11032 exists in filesystem
Errors occurred, no packages were upgraded.
-> exit status 1
I guess this is because I already have (and need) wlroots-git installed?
ErikR commented on 2022-06-26 12:42 (UTC)
Any way of installing hyprland-git while also having sway-git and wlroots-git installed?
Pinned Comments
zjeffer commented on 2024-07-17 16:50 (UTC) (edited on 2024-07-17 16:52 (UTC) by zjeffer)
Tips & tricks, common issues
using ccache/sccache
Precompiled headers (PCH) was enabled by default, this would most likely invalidate the compiler cache if any of the upstream header files change. To disable PCH, add the meson build option
-Db_pch=false
tobuild()
.Build with specific pull requests
Use
pick_mr <pull request number>
at the end ofprepare()
to merge pull requests locally. For example, to merge https://github.com/hyprwm/Hyprland/pull/6268, useEnable legacy renderer
In the
build()
function, add-D legacy_renderer=true
to meson setupCompilation errors
If you encounter compilation errors, try the following first:
protocols/
, such asprotocols/linux-dmabuf-v1.hpp
, then rebuild or installhyprwayland-scanner-git
;makepkg --cleanbuild
.Symbol not declared
Errors like
<symbol> was not declared in this scope
<symbol> has not been declared
are usually caused by missing headers. Please consider reporting this upstream or creating a pull request if it has not already been done.