jsoncpp: disable exceptions

Reduces size: 59724 to 44439

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2021-02-22 22:05:18 -08:00
parent d3a7eebb11
commit 55cec11ad8
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=jsoncpp
PKG_VERSION:=1.9.4
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/open-source-parsers/jsoncpp/tar.gz/$(PKG_VERSION)?
@ -49,8 +49,11 @@ endef
MESON_ARGS += \
-Db_lto=true \
-Dcpp_eh=none \
-Dcpp_rtti=false \
-Dtests=false
TARGET_CXXFLAGS += -DJSON_USE_EXCEPTION=0
TARGET_LDFLAGS += -Wl,--gc-sections
define Build/InstallDev