From dc14dbb022feb16b077d94403c150e358a1e287c Mon Sep 17 00:00:00 2001 From: Roman Rusyaev Date: Mon, 27 Dec 2021 14:40:53 +0300 Subject: [PATCH] Remove redundant option from ld flags This option can lead to unspecified behaviour because we're using C++17 standard. --- src/mapleall/BUILD.gn | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mapleall/BUILD.gn b/src/mapleall/BUILD.gn index 3314486b22..3b5f277d65 100644 --- a/src/mapleall/BUILD.gn +++ b/src/mapleall/BUILD.gn @@ -49,7 +49,6 @@ config("mapleallcompilecfg") { ldflags = [] ldflags += [ "-fPIC", - "-std=c++14", "-rdynamic", "-lpthread", "-Wl,-z,relro", -- Gitee