Commit 226bba3c by Arthur Eubanks Committed by Commit Bot

Add -Wno-pointer-to-int-cast

This is the last remaining instance of the warning across Chromium. It's fixed upstream but I can't seem to figure out how to successfully roll deqp. So suppressing it here for now. This can be removed once the deqp in Angle has https://github.com/KhronosGroup/VK-GL-CTS/pull/199. Change-Id: Ie954bb2a3d86ea0de644e2a78051531b396e88a8 Bug: chromium:1054220 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2165365Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent 821726de
......@@ -1177,6 +1177,11 @@ if (build_angle_deqp_tests && !is_fuchsia) {
# This is a bit of a hack so one test can capture memory limits.
include_dirs = [ "$deqp_path/external/vulkancts/framework/vulkan" ]
# TODO(https://crbug.com/1054220): remove once deqp in Angle contains https://github.com/KhronosGroup/VK-GL-CTS/pull/199
if (is_clang) {
cflags += [ "-Wno-pointer-to-int-cast" ]
}
}
template("angle_deqp_khr_gtest") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment