Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,10 @@ def parse_hook_qt6_libinput(ec, eprefix):
Add dependency on libinput to Qt6.
This is not included in upstream EasyBuild as it brings a dependency on system-d
"""
qt6_toolchain_version_to_libinput_version_map = {'14.3.0': '1.30.1'}
qt6_toolchain_version_to_libinput_version_map = {
'14.3.0': '1.30.1',
'15.2.0': '1.31.3',
}
if ec.name == 'Qt6':
# Only enforcing from GCCcore 14.3.0 onwards for Qt6 6.9.3 onwards
if ec.toolchain.version >= LooseVersion('14.3.0'):
Expand Down
Loading