From 9d16e5de0c9118c827a9ac898c2ce754a8a394d7 Mon Sep 17 00:00:00 2001 From: Zachery Wu Date: Tue, 28 Sep 2021 10:01:20 +0800 Subject: [PATCH] fix OAT issue Signed-off-by: Zachery Wu --- .../prebuilts/usr/include/linux/compiler.h | 18 ++++++++++++++++++ .../usr/include/linux/compiler_types.h | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/linux-5.10/prebuilts/usr/include/linux/compiler.h b/linux-5.10/prebuilts/usr/include/linux/compiler.h index 8e89655..816833f 100644 --- a/linux-5.10/prebuilts/usr/include/linux/compiler.h +++ b/linux-5.10/prebuilts/usr/include/linux/compiler.h @@ -1,3 +1,21 @@ +/**************************************************************************** + **************************************************************************** + *** + *** This header was automatically generated from a Linux kernel header + *** of the same name, to make information necessary for userspace to + *** call into the kernel available to libc. It contains only constants, + *** structures, and macros generated from the original header, and thus, + *** contains no copyrightable information. + *** + *** To edit the content of this header, modify the corresponding + *** source file (e.g. under external/kernel-headers/original/) then + *** run bionic/libc/kernel/tools/update_all.py + *** + *** Any manual change here will be lost the next time this script will + *** be run. You've been warned! + *** + **************************************************************************** + ****************************************************************************/ #ifndef _UAPI_LINUX_COMPILER_H #define _UAPI_LINUX_COMPILER_H diff --git a/linux-5.10/prebuilts/usr/include/linux/compiler_types.h b/linux-5.10/prebuilts/usr/include/linux/compiler_types.h index 94f4fbe..e652814 100644 --- a/linux-5.10/prebuilts/usr/include/linux/compiler_types.h +++ b/linux-5.10/prebuilts/usr/include/linux/compiler_types.h @@ -1,3 +1,21 @@ +/**************************************************************************** + **************************************************************************** + *** + *** This header was automatically generated from a Linux kernel header + *** of the same name, to make information necessary for userspace to + *** call into the kernel available to libc. It contains only constants, + *** structures, and macros generated from the original header, and thus, + *** contains no copyrightable information. + *** + *** To edit the content of this header, modify the corresponding + *** source file (e.g. under external/kernel-headers/original/) then + *** run bionic/libc/kernel/tools/update_all.py + *** + *** Any manual change here will be lost the next time this script will + *** be run. You've been warned! + *** + **************************************************************************** + ****************************************************************************/ /* * The compiler.h file has been split into compiler.h and compiler_types.h. * However, to compile bionic we only need the compiler.h. -- Gitee