mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
glcompbench: Fix build with gcc7
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
+31
@@ -0,0 +1,31 @@
|
||||
From 49297e2fbe0420a255cbe67989d0ec539125412c Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sun, 23 Apr 2017 10:38:24 -0700
|
||||
Subject: [PATCH] waf: Disable errors due to -Wdeprecated
|
||||
|
||||
throw() has been deprecated in c++11 and removed
|
||||
from c++17, gcc7 is more pedandic about this warning
|
||||
we therefore add a workaround to ignore this warning
|
||||
for now.
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
wscript | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/wscript b/wscript
|
||||
index 485a9fb..7f59761 100644
|
||||
--- a/wscript
|
||||
+++ b/wscript
|
||||
@@ -79,7 +79,7 @@ def configure(ctx):
|
||||
ctx.check_cfg(package = pkg, uselib_store = uselib, args = '--cflags --libs',
|
||||
mandatory = True)
|
||||
|
||||
- ctx.env.append_unique('CXXFLAGS', '-Wall -Werror -std=c++11 -Wextra'.split(' '))
|
||||
+ ctx.env.append_unique('CXXFLAGS', '-Wall -Werror -std=c++11 -Wextra -Wno-error=deprecated'.split(' '))
|
||||
|
||||
# Prepend -O# and -g flags so that they can be overriden by the CFLAGS environment variable
|
||||
if Options.options.opt:
|
||||
--
|
||||
2.12.2
|
||||
|
||||
@@ -11,7 +11,8 @@ SRC_URI = "https://launchpad.net/glcompbench/trunk/${PV}/+download/${BPN}-${PV}.
|
||||
file://Fix_space_issues.patch \
|
||||
file://Fix_auto_ptr_deprecated.patch \
|
||||
file://0001-build-Specify-std-c-11-on-cmdline.patch \
|
||||
"
|
||||
file://0001-waf-Disable-errors-due-to-Wdeprecated.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "c939d9156fe940960098f38707fea827"
|
||||
SRC_URI[sha256sum] = "b04b738cec06c6786ceafa86e4735fd8b971c078265754854ef356b0379542ee"
|
||||
|
||||
Reference in New Issue
Block a user