From f542bc5fcfd7c8925a4e9f79f791273f00ef24b1 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 5 Nov 2019 09:40:25 +0100 Subject: [PATCH] pkg/oonf_api: blacklist unsupported architectures AVR8 and MSP430 are excluded because of missing features in their respective toolchains --- pkg/oonf_api/Makefile.dep | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pkg/oonf_api/Makefile.dep diff --git a/pkg/oonf_api/Makefile.dep b/pkg/oonf_api/Makefile.dep new file mode 100644 index 0000000000..a4a7c6099c --- /dev/null +++ b/pkg/oonf_api/Makefile.dep @@ -0,0 +1,5 @@ +# avr-libc does not provide `strings.h` +FEATURES_BLACKLIST += arch_avr8 + +# msp430-libc does not provide `strftime` +FEATURES_BLACKLIST += arch_msp430