Select Git revision
-
Bump msgpack to latest stable version 2.1.5 Relevent fixes for Ring: * fix unpack visitor to treat float32/64 correctly * fix alignment problem on some platform (includes arm) Change-Id: I3c3300c02e91435b0e72ae48e2614efad3e3b936 Reviewed-by:
Sébastien Blin <sebastien.blin@savoirfairelinux.com>
Bump msgpack to latest stable version 2.1.5 Relevent fixes for Ring: * fix unpack visitor to treat float32/64 correctly * fix alignment problem on some platform (includes arm) Change-Id: I3c3300c02e91435b0e72ae48e2614efad3e3b936 Reviewed-by:
Sébastien Blin <sebastien.blin@savoirfairelinux.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
rules.mak 728 B
# MSGPACK
MSGPACK_VERSION := cpp-2.1.5
MSGPACK_URL := https://github.com/msgpack/msgpack-c/archive/$(MSGPACK_VERSION).tar.gz
PKGS += msgpack
ifeq ($(call need_pkg,"msgpack >= 1.1"),)
PKGS_FOUND += msgpack
endif
MSGPACK_CMAKECONF := -DMSGPACK_CXX11=ON \
-DMSGPACK_BUILD_EXAMPLES=OFF \
-DMSGPACK_ENABLE_SHARED=OFF \
-DCMAKE_INSTALL_LIBDIR=lib
$(TARBALLS)/msgpack-c-$(MSGPACK_VERSION).tar.gz:
$(call download,$(MSGPACK_URL))
.sum-msgpack: msgpack-c-$(MSGPACK_VERSION).tar.gz
$(warning $@ not implemented)
touch $@
msgpack: msgpack-c-$(MSGPACK_VERSION).tar.gz .sum-msgpack
$(UNPACK)
$(MOVE)
.msgpack: msgpack toolchain.cmake
cd $< && $(HOSTVARS) $(CMAKE) . $(MSGPACK_CMAKECONF)
cd $< && $(MAKE) install
touch $@