mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 13:18:36 -09:00
package/zlib-ng: fix build failure for PowerPC soft-float
As suggested in this review[1], when building for PowerPC with soft-float enabled, let's also disable both WITH_POWER8/9 that in order disables all the possible PowerPC acceleration instructions. Fixes: https://autobuild.buildroot.org/results/a0fa5a175c546993d818371a0de93b2e9845a183/ [1]: https://github.com/zlib-ng/zlib-ng/pull/2151/changes#r2803264882 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Romain Naour <romain.naour@smile.fr>
This commit is contained in:
committed by
Romain Naour
parent
d0f43c052c
commit
668b47bdab
@@ -30,13 +30,13 @@ else
|
||||
ZLIB_NG_CONF_OPTS += -DWITH_NEON=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_powerpc_power8),y)
|
||||
ifeq ($(BR2_powerpc_power8):$(BR2_POWERPC_SOFT_FLOAT),y:)
|
||||
ZLIB_NG_CONF_OPTS += -DWITH_POWER8=ON
|
||||
else
|
||||
ZLIB_NG_CONF_OPTS += -DWITH_POWER8=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_powerpc_power9),y)
|
||||
ifeq ($(BR2_powerpc_power9):$(BR2_POWERPC_SOFT_FLOAT),y:)
|
||||
ZLIB_NG_CONF_OPTS += -DWITH_POWER9=ON
|
||||
else
|
||||
ZLIB_NG_CONF_OPTS += -DWITH_POWER9=OFF
|
||||
|
||||
Reference in New Issue
Block a user