8 Star 1 Fork 12

src-openEuler/distributed-build

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0007-feat-add-gn-files-to-use-packages-on-openeuler.patch 4.86 KB
一键复制 编辑 原始数据 按行查看 历史
zxstty 提交于 2023-12-06 15:52 +08:00 . change by zjq
From b6fa9cb06682311714ce18e6a65f243c6299af2f Mon Sep 17 00:00:00 2001
From: zxstty <zhaojiaqi18@huawei.com>
Date: Thu, 9 Nov 2023 11:10:52 +0800
Subject: [PATCH] 0007
---
.../bounds_checking_function/BUILD.gn | 28 +++++++++++++++++++
.../bounds_checking_function/include | 1 +
.../compiler_gn/third_party/cJSON/BUILD.gn | 25 +++++++++++++++++
.../compiler_gn/third_party/cJSON/cJSON.h | 1 +
.../compiler_gn/third_party/libxml2/BUILD.gn | 11 ++++++++
.../third_party/libxml2/include/libxml | 1 +
6 files changed, 67 insertions(+)
create mode 100644 openeuler/compiler_gn/third_party/bounds_checking_function/BUILD.gn
create mode 120000 openeuler/compiler_gn/third_party/bounds_checking_function/include
create mode 100644 openeuler/compiler_gn/third_party/cJSON/BUILD.gn
create mode 120000 openeuler/compiler_gn/third_party/cJSON/cJSON.h
create mode 100644 openeuler/compiler_gn/third_party/libxml2/BUILD.gn
create mode 120000 openeuler/compiler_gn/third_party/libxml2/include/libxml
diff --git a/openeuler/compiler_gn/third_party/bounds_checking_function/BUILD.gn b/openeuler/compiler_gn/third_party/bounds_checking_function/BUILD.gn
new file mode 100644
index 0000000..ae44b79
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/bounds_checking_function/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright (c) 2021 Huawei Device Co., Ltd.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+import("//build/ohos.gni")
+
+config("libsec_public_config") {
+ include_dirs = [ "include" ]
+ libs = [ "boundscheck" ]
+}
+
+ohos_static_library("libsec_static") {
+ #libs = [ "boundscheck" ]
+ all_dependent_configs = [ ":libsec_public_config" ]
+}
+
+ohos_shared_library("libsec_shared") {
+ #libs = [ "boundscheck" ]
+ all_dependent_configs = [ ":libsec_public_config" ]
+}
diff --git a/openeuler/compiler_gn/third_party/bounds_checking_function/include b/openeuler/compiler_gn/third_party/bounds_checking_function/include
new file mode 120000
index 0000000..bc414ef
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/bounds_checking_function/include
@@ -0,0 +1 @@
+/usr/include/
\ No newline at end of file
diff --git a/openeuler/compiler_gn/third_party/cJSON/BUILD.gn b/openeuler/compiler_gn/third_party/cJSON/BUILD.gn
new file mode 100644
index 0000000..48864a4
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/cJSON/BUILD.gn
@@ -0,0 +1,25 @@
+#Copyright (c) 2019-2021 Huawei Device Co., Ltd.
+#Licensed under the Apache License, Version 2.0 (the "License");
+#you may not use this file except in compliance with the License.
+#You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing, software
+#distributed under the License is distributed on an "AS IS" BASIS,
+#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#See the License for the specific language governing permissions and
+#limitations under the License.
+
+import("//build/ohos.gni")
+import("//build/config/sysroot.gni")
+config("cJSON_config") {
+ include_dirs = [ "${sysroot}/usr/include/cjson" ]
+ libs = [ "cjson" ]
+}
+ohos_static_library("cjson_static") {
+ public_configs = [ ":cJSON_config" ]
+}
+ohos_shared_library("cjson") {
+ public_configs = [ ":cJSON_config" ]
+}
diff --git a/openeuler/compiler_gn/third_party/cJSON/cJSON.h b/openeuler/compiler_gn/third_party/cJSON/cJSON.h
new file mode 120000
index 0000000..a75d9ff
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/cJSON/cJSON.h
@@ -0,0 +1 @@
+/usr/include/cjson/cJSON.h
\ No newline at end of file
diff --git a/openeuler/compiler_gn/third_party/libxml2/BUILD.gn b/openeuler/compiler_gn/third_party/libxml2/BUILD.gn
new file mode 100644
index 0000000..f097e1d
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/libxml2/BUILD.gn
@@ -0,0 +1,11 @@
+import("//build/ohos.gni")
+import("//build/config/sysroot.gni")
+config("libxml2_private_config") {
+ include_dirs = [ "${sysroot}/usr/include/libxml2" ]
+ libs = [ "xml2" ]
+}
+
+ohos_shared_library("libxml2") {
+ public_configs = [ ":libxml2_private_config" ]
+}
+
diff --git a/openeuler/compiler_gn/third_party/libxml2/include/libxml b/openeuler/compiler_gn/third_party/libxml2/include/libxml
new file mode 120000
index 0000000..8eb8d2d
--- /dev/null
+++ b/openeuler/compiler_gn/third_party/libxml2/include/libxml
@@ -0,0 +1 @@
+/usr/include/libxml2/libxml/
\ No newline at end of file
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/distributed-build.git
git@gitee.com:src-openeuler/distributed-build.git
src-openeuler
distributed-build
distributed-build
master

搜索帮助