diff --git a/naiveproxy/Makefile b/naiveproxy/Makefile index 40d7ee9a5..d11cc4ced 100644 --- a/naiveproxy/Makefile +++ b/naiveproxy/Makefile @@ -5,12 +5,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=naiveproxy -PKG_VERSION:=107.0.5304.87-1 +PKG_VERSION:=107.0.5304.87-3 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/klzgrad/naiveproxy/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=f97f0ad880e5a784bd3fa5dd5d114434ab7e393736d90a902c0d2d3ec95e9ff0 +PKG_HASH:=a97787c8fff1d3569398dd9cbd263ca8688c919352db08478d2cc2668559cf23 PKG_LICENSE:=BSD 3-Clause PKG_LICENSE_FILES:=LICENSE diff --git a/naiveproxy/src/init_env.sh b/naiveproxy/src/init_env.sh index 89dff8001..eb777f358 100755 --- a/naiveproxy/src/init_env.sh +++ b/naiveproxy/src/init_env.sh @@ -44,10 +44,6 @@ symbol_level=1 is_clang=true use_sysroot=false -use_allocator=\"none\" -use_allocator_shim=false -use_partition_alloc=false - fatal_linker_warnings=false treat_warnings_as_errors=false @@ -92,6 +88,12 @@ case "${target_arch}" in ;; "mipsel"|"mips64el") naive_flags+=" use_thin_lto=false chrome_pgo_phase=0 mips_arch_variant=\"r2\"" - [ "${target_arch}" == "mipsel" ] && naive_flags+=" mips_float_abi=\"soft\"" + if [ "${target_arch}" == "mipsel" ]; then + if [ "${cpu_subtype}" == "24kf" ]; then + naive_flags+=" mips_float_abi=\"hard\"" + else + naive_flags+=" mips_float_abi=\"soft\"" + fi + fi ;; esac