2020-03-08 19:11:23 +01:00
|
|
|
PKG_NAME = qcbor
|
|
|
|
PKG_URL = https://github.com/laurencelundblade/QCBOR
|
2023-04-22 17:48:14 +02:00
|
|
|
# v1.2
|
|
|
|
PKG_VERSION = 92d3f89030baff4af7be8396c563e6c8ef263622
|
2020-03-08 19:11:23 +01:00
|
|
|
PKG_LICENSE = BSD-3-Clause
|
|
|
|
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
|
2021-03-13 16:00:02 +01:00
|
|
|
# some variable seem uninitialized to gcc with -Og but are not
|
|
|
|
# https://gcc.gnu.org/bugzilla/buglist.cgi?quicksearch=may%20be%20used%20uninitialized
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42145
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90710#c1
|
|
|
|
CFLAGS += -Wno-maybe-uninitialized
|
|
|
|
|
2020-03-08 19:11:23 +01:00
|
|
|
all:
|
2021-03-12 15:50:14 +01:00
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/src -f $(RIOTBASE)/Makefile.base MODULE=$(PKG_NAME)
|