From a83405657cac5499cb3715d2ddbe4da812ba524b Mon Sep 17 00:00:00 2001 From: "yingguofeng@huawei.com" Date: Mon, 12 May 2025 16:12:03 +0800 Subject: [PATCH] (Memory): Fix some issue 1.Fix Compiler error while open cmc Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IC6DA6 Signed-off-by: yingguofeng@huawei.com Change-Id: I0c3d610f22a05156f3fbb11858835837e72753a0 --- build/config/build_type.gni | 1 + toolchain_config.gni | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/build/config/build_type.gni b/build/config/build_type.gni index e45ecd07..097b009c 100644 --- a/build/config/build_type.gni +++ b/build/config/build_type.gni @@ -13,4 +13,5 @@ declare_args() { is_fastverify = false + enable_cmc_gc = false } diff --git a/toolchain_config.gni b/toolchain_config.gni index 5ed5f7e1..9442eb52 100644 --- a/toolchain_config.gni +++ b/toolchain_config.gni @@ -11,10 +11,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -if (!defined(enable_cmc_gc)) { - enable_cmc_gc = false -} - if (!defined(ark_standalone_build)) { ark_standalone_build = false } -- Gitee