summaryrefslogtreecommitdiffstats
path: root/recipes-extended/dev86/dev86_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/dev86/dev86_git.bb')
-rw-r--r--recipes-extended/dev86/dev86_git.bb26
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"
4LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" 4LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
5SECTION = "console/tools" 5SECTION = "console/tools"
6 6
7BASE_PV="0.16.21" 7BASE_PV = "0.16.21"
8PV = "${BASE_PV}+git" 8PV = "${BASE_PV}+git"
9SRCREV = "e254e0b19651d3b8a20225b40281c9974a95dec4" 9SRCREV = "e254e0b19651d3b8a20225b40281c9974a95dec4"
10SRC_URI = "git://github.com/jbruchon/${BPN}.git;protocol=https;branch=master \ 10SRC_URI = "git://github.com/jbruchon/${BPN}.git;protocol=https;branch=master \
@@ -41,3 +41,27 @@ do_install() {
41} 41}
42 42
43FILES:${PN} += "${libdir}/bcc" 43FILES:${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]
58CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration"
59
60# http://errors.yoctoproject.org/Errors/Details/853302/
61CFLAGS += "-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]
65CFLAGS += "-Wno-error=incompatible-pointer-types"
66
67EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'"