From c2575b48db903d41bedd7ccd7cb36d2ff50bc140 Mon Sep 17 00:00:00 2001 From: zhouzebin Date: Mon, 24 Jul 2023 23:11:13 +0800 Subject: [PATCH] Aot without Meta Issue: https://gitee.com/openharmony/developtools_ace_ets2bundle/issues/I7NLR7 Signed-off-by: zhouzebin Change-Id: Ie3a89a9a910a4e39bf9ff3e7decbd89bfb3855c5 --- compiler/src/fast_build/ark_compiler/cache.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/compiler/src/fast_build/ark_compiler/cache.ts b/compiler/src/fast_build/ark_compiler/cache.ts index cfba824d3..a7bb19658 100644 --- a/compiler/src/fast_build/ark_compiler/cache.ts +++ b/compiler/src/fast_build/ark_compiler/cache.ts @@ -53,9 +53,7 @@ function getMetaInfo(projectConfig: any): string { const bundleName: string = projectConfig.bundleName ? projectConfig.bundleName : 'null_bundleName'; const allModuleNameHash: string = projectConfig.allModuleNameHash ? projectConfig.allModuleNameHash : 'null_allModuleNameHash'; - const aotCompileMode: string = projectConfig.aotCompileMode ? projectConfig.aotCompileMode : 'null_aotCompileMode'; - const apPath: string = projectConfig.apPath ? projectConfig.apPath : 'null_apPath'; - metaInfoArr.push(bundleName, allModuleNameHash, aotCompileMode, apPath); + metaInfoArr.push(bundleName, allModuleNameHash); } return metaInfoArr.join(':'); -- Gitee