48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
From 9801c82c2e5f8f2fd20115c3af413d912d305e4b Mon Sep 17 00:00:00 2001
|
|
From: tian hang <tian_hang@hoperun.com>
|
|
Date: Fri, 19 May 2023 09:37:15 +0000
|
|
Subject: [PATCH 11/11] feat:use .z for libs name
|
|
|
|
---
|
|
.../samgr/interfaces/innerkits/common/BUILD.gn | 4 ++--
|
|
.../samgr/interfaces/innerkits/samgr_proxy/BUILD.gn | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/common/BUILD.gn b/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/common/BUILD.gn
|
|
index bf8ddb3..4b46680 100644
|
|
--- a/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/common/BUILD.gn
|
|
+++ b/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/common/BUILD.gn
|
|
@@ -17,14 +17,14 @@ config("all_config_samgr_common") {
|
|
include_dirs = [
|
|
"include",
|
|
]
|
|
- libs = ["samgr_common",]
|
|
+ libs = ["samgr_common.z",]
|
|
}
|
|
|
|
config("config_samgr_common") {
|
|
include_dirs = [
|
|
"include",
|
|
]
|
|
- libs = ["samgr_common",]
|
|
+ libs = ["samgr_common.z",]
|
|
}
|
|
|
|
group("samgr_common") {
|
|
diff --git a/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy/BUILD.gn b/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy/BUILD.gn
|
|
index 44b42ad..b68ec17 100644
|
|
--- a/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy/BUILD.gn
|
|
+++ b/openeuler/compiler_gn/foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy/BUILD.gn
|
|
@@ -20,7 +20,7 @@ config("samgr_proxy_config") {
|
|
"//third_party/libxml2/include",
|
|
]
|
|
|
|
- libs = ["samgr_proxy",]
|
|
+ libs = ["samgr_proxy.z",]
|
|
}
|
|
|
|
#config("samgr_proxy_private_config") {
|
|
--
|
|
2.33.0
|
|
|