From d27c7cf19879380a621ff08ed1275300bc064ef7 Mon Sep 17 00:00:00 2001 From: wangcaoyu Date: Thu, 9 May 2024 22:31:49 +0800 Subject: [PATCH] change LIB_CLG_PATH to '' Signed-off-by: wangcaoyu --- build-tools/capi_parser/src/utils/constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-tools/capi_parser/src/utils/constants.py b/build-tools/capi_parser/src/utils/constants.py index aed1044ee..2181425f1 100644 --- a/build-tools/capi_parser/src/utils/constants.py +++ b/build-tools/capi_parser/src/utils/constants.py @@ -19,7 +19,9 @@ import enum class StringConstant(enum.Enum): - LIB_CLG_PATH = r'/home/tools/llvm/lib/libclang.so' # 共享库 + # TODO: change LIB_CLG_PATH to /home/tools/llvm/lib/libclang.so + # by relative path + LIB_CLG_PATH = r'' # 共享库 FUNK_NAME = "ohos_ndk_headers" REPLACE_WAREHOUSE = '\\interface_sdk_c\\interface_sdk_c' # 拉到本地仓路径(去掉磁盘) # 拉到本地仓的三方库绝对路径 -- Gitee