From bcb869a387253f01ce58a740f2a2ea7aa389c421 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Thu, 24 Nov 2022 01:54:21 +0100 Subject: [PATCH] Revert "libretro-fbneo: dont build target with _TIME_BITS or _FILE_OFFSET_BITS for arm32 userland builds" This reverts commit e80603557c6f497ffe4b794cb13597faf16ec308. Signed-off-by: Matthias Reichl --- packages/emulation/libretro-fbneo/package.mk | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/emulation/libretro-fbneo/package.mk b/packages/emulation/libretro-fbneo/package.mk index bc2e9cc722..cef888f024 100644 --- a/packages/emulation/libretro-fbneo/package.mk +++ b/packages/emulation/libretro-fbneo/package.mk @@ -27,14 +27,6 @@ pre_configure_target() { PKG_MAKE_OPTS_TARGET+="-neon" fi fi - - # libretro-fbneo does not need / nor build successfully with _FILE_OFFSET_BITS or _TIME_BITS set - if [ "${TARGET_ARCH}" = "arm" ]; then - export CFLAGS=$(echo ${CFLAGS} | sed -e "s|-D_FILE_OFFSET_BITS=64||g") - export CFLAGS=$(echo ${CFLAGS} | sed -e "s|-D_TIME_BITS=64||g") - export CXXFLAGS=$(echo ${CXXFLAGS} | sed -e "s|-D_FILE_OFFSET_BITS=64||g") - export CXXFLAGS=$(echo ${CXXFLAGS} | sed -e "s|-D_TIME_BITS=64||g") - fi } makeinstall_target() {