diff options
Diffstat (limited to 'recipes-extended/dev86/dev86_git.bb')
-rw-r--r-- | recipes-extended/dev86/dev86_git.bb | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/recipes-extended/dev86/dev86_git.bb b/recipes-extended/dev86/dev86_git.bb index a3d0fded..d43d1200 100644 --- a/recipes-extended/dev86/dev86_git.bb +++ b/recipes-extended/dev86/dev86_git.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPL-2.0-only" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" |
5 | SECTION = "console/tools" | 5 | SECTION = "console/tools" |
6 | 6 | ||
7 | BASE_PV="0.16.21" | 7 | BASE_PV = "0.16.21" |
8 | PV = "${BASE_PV}+git" | 8 | PV = "${BASE_PV}+git" |
9 | SRCREV = "e254e0b19651d3b8a20225b40281c9974a95dec4" | 9 | SRCREV = "e254e0b19651d3b8a20225b40281c9974a95dec4" |
10 | SRC_URI = "git://github.com/jbruchon/${BPN}.git;protocol=https;branch=master \ | 10 | SRC_URI = "git://github.com/jbruchon/${BPN}.git;protocol=https;branch=master \ |
@@ -41,3 +41,27 @@ do_install() { | |||
41 | } | 41 | } |
42 | 42 | ||
43 | FILES:${PN} += "${libdir}/bcc" | 43 | FILES:${PN} += "${libdir}/bcc" |
44 | |||
45 | # http://gecko.lge.com:8000/Errors/Details/832862 | ||
46 | # http://errors.yoctoproject.org/Errors/Details/766930/ | ||
47 | # cpp.c:548:1: error: type of 'ch' defaults to 'int' [-Wimplicit-int] | ||
48 | # strsave.c:47:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
49 | # strsave.c:55:26: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] | ||
50 | # strsave.c:66:32: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
51 | # symbol.c:60:42: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
52 | # symbol.c:72:30: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
53 | # symbol.c:77:13: error: implicit declaration of function 'hash' [-Wimplicit-function-declaration] | ||
54 | # tok_class.c:305:43: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
55 | # tok_io.c:219:20: error: implicit declaration of function 'atoi' [-Wimplicit-function-declaration] | ||
56 | # tok_io.c:488:20: error: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] | ||
57 | # unproto.c:188:51: error: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] | ||
58 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
59 | |||
60 | # http://errors.yoctoproject.org/Errors/Details/853302/ | ||
61 | CFLAGS += "-std=gnu17" | ||
62 | |||
63 | # http://errors.yoctoproject.org/Errors/Details/853303/ | ||
64 | # ar.c:615:23: error: passing argument 1 of 'ctime' from incompatible pointer type [-Wincompatible-pointer-types] | ||
65 | CFLAGS += "-Wno-error=incompatible-pointer-types" | ||
66 | |||
67 | EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'" | ||