Skip to content
Snippets Groups Projects
Commit 2cb0b2ba authored by Thierry Escande's avatar Thierry Escande
Browse files

prebuilts: Disable _FORTIFY_SOURCE for native libselinux


This patch disables the macro _FORTIFY_SOURCE for libselinux native
compilation with gcc. This fixes the following error:
 "inlining failed in call to always_inline ‘syslog’: function body can be overwritten at link time".

Signed-off-by: default avatarThierry Escande <thierry.escande@huawei.com>
parent 7400fb56
No related branches found
No related tags found
1 merge request!30Fix OpenHarmony 3.1 file-rdeps errors
...@@ -16,3 +16,4 @@ SRC_URI += "file://patches/productdefine_common.patch;apply=no;subdir=src" ...@@ -16,3 +16,4 @@ SRC_URI += "file://patches/productdefine_common.patch;apply=no;subdir=src"
SRC_URI += "file://patches/third_party_libevdev.patch;apply=no;subdir=src" SRC_URI += "file://patches/third_party_libevdev.patch;apply=no;subdir=src"
SRC_URI += "file://patches/third_party_libusb.patch;apply=no;subdir=src" SRC_URI += "file://patches/third_party_libusb.patch;apply=no;subdir=src"
SRC_URI += "file://patches/third_party_e2fsprogs-backports-to-3.1.patch;apply=no;subdir=src" SRC_URI += "file://patches/third_party_e2fsprogs-backports-to-3.1.patch;apply=no;subdir=src"
SRC_URI += "file://patches/third_party_selinux.patch;apply=no;subdir=src"
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: Apache-2.0
Patch for //third_party/selinux git repository of OpenHarmony 3.1 codebase.
This disables the _FORTIFY_SOURCE macro for native build with gcc.
This fixes the following compiler error for libselinux:
"error: inlining failed in call to always_inline ‘syslog’: function body can be overwritten at link time"
Signed-off-by: Thierry Escande <thierry.escande@huawei.com>
Upstream-Status: Inappropriate
diff --git a/third_party/selinux/BUILD.gn b/third_party/selinux/BUILD.gn
index 34616600..a9ca7cf5 100644
--- a/third_party/selinux/BUILD.gn
+++ b/third_party/selinux/BUILD.gn
@@ -199,6 +199,11 @@ ohos_shared_library("libselinux") {
"-DAUDITD_LOG_TAG=1003",
"-DPCRE2_CODE_UNIT_WIDTH=8",
]
+
+ if (!is_clang) {
+ cflags += [ "-U_FORTIFY_SOURCE" ]
+ }
+
deps = [
":libsepol",
"$LIBPCRE2_ROOT_DIR:libpcre2",
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment