Skip to content

Commit d5a9bb8

Browse files
authored
Merge pull request #139 from bedroge/qt6_limits
reduce number of cores used for Qt6 builds
2 parents 7e6cf6b + 2df95e3 commit d5a9bb8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eb_hooks.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1720,4 +1720,10 @@ def set_maximum(parallel, max_value):
17201720
'Qt5': {
17211721
CPU_TARGET_A64FX: (set_maximum, 8),
17221722
},
1723+
'Qt6': {
1724+
CPU_TARGET_A64FX: (set_maximum, 8),
1725+
CPU_TARGET_AARCH64_GENERIC: (divide_by_factor, 2),
1726+
CPU_TARGET_NEOVERSE_N1: (divide_by_factor, 2),
1727+
CPU_TARGET_NEOVERSE_V1: (divide_by_factor, 2),
1728+
},
17231729
}

0 commit comments

Comments
 (0)