From f0debe1b427359d48f928d0f8d2041e3afa9e8a9 Mon Sep 17 00:00:00 2001 From: mengyiping <1091773127@qq.com> Date: Thu, 2 Nov 2023 14:50:44 +0800 Subject: [PATCH] Bugfix Signed-off-by: mengyiping <1091773127@qq.com> --- services/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/BUILD.gn b/services/BUILD.gn index 501d894..001df2f 100644 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -16,7 +16,10 @@ import("//build/ohos.gni") config("concurrent_task_config") { visibility = [ ":*" ] cflags_cc = [ "-fexceptions" ] - cflags = [ "-fstack-protector-strong" ] + cflags = [ + "-fstack-protector-strong", + "-Wno-shift-negative-value", + ] include_dirs = [ "include", "../include", -- Gitee