tinycbor: exclude Blackfin ADI toolchain
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Fri, 19 Aug 2016 12:19:36 +0000 (14:19 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Fri, 19 Aug 2016 12:39:42 +0000 (14:39 +0200)
As tinycbor uses fopencookie() which is not available with the Blackfin
ADI external toolchain (UCLIBC_HAS_GLIBC_CUSTOM_STREAMS is not enabled),
add a dependency on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX.

This avoids the following build failure:

src/open_memstream.c: In function ‘open_memstream’:
src/open_memstream.c:105: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘vtable’
src/open_memstream.c:105: error: ‘vtable’ undeclared (first use in this function)
src/open_memstream.c:105: error: (Each undeclared identifier is reported only once
src/open_memstream.c:105: error: for each function it appears in.)
src/open_memstream.c:105: error: expected expression before ‘{’ token
src/open_memstream.c:111: warning: implicit declaration of function ‘fopencookie’
src/open_memstream.c:111: warning: return makes pointer from integer without a cast

Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
[Thomas: improve commit message.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/tinycbor/Config.in

index 41f0b5fac3d49711c6dc4d1534f7ca7334c4f699..cf176e46fe313edc072f1d74291cebd2ddb70ffd 100644 (file)
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_TINYCBOR
        bool "tinycbor"
+       # package uses fopencookie(), not available with this toolchain
+       depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
        help
          Concise Binary Object Representation (CBOR) Library