Unfortunately, meson's check is totally broken.
Fortunately, it's fairly easy to workaround.
Fixes compilation with all ARM platforms that don't support NEON.
Signed-off-by: Rosen Penev <redacted>
TARGET_LDFLAGS += -Wl,--gc-sections -liconv
+define Build/Prepare
+ $(call Build/Prepare/Default)
+ifneq ($(findstring arm,$(CONFIG_ARCH)),)
+ifeq ($(findstring neon,$(CONFIG_TARGET_OPTIMIZATION)),)
+ $(SED) '/remap_neon\.c/d' $(PKG_BUILD_DIR)/src/pulsecore/meson.build
+endif
+endif
+endef
+
define Build/InstallDev
$(INSTALL_DIR) \
$(1)/usr/lib/pkgconfig \