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:
Khem Raj
2017-04-23 22:20:54 -07:00
committed by Martin Jansa
parent 6f45b92f5f
commit 50cf14b462
2 changed files with 33 additions and 1 deletions
@@ -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"