Merge "Add missing includes for crtend modules" am: 6a4177c42d am: f8e3668ce2

Original change: https://android-review.googlesource.com/c/platform/bionic/+/1637585

Change-Id: Ib58e435b7c02c2a6b18d515665d4f5c71765b534
This commit is contained in:
Liz Kammer 2021-03-16 13:50:59 +00:00 committed by Automerger Merge Worker
commit 76ae8abac5

View file

@ -2126,7 +2126,10 @@ cc_object {
cc_object {
name: "crtend_so",
local_include_dirs: ["include"],
local_include_dirs: [
"include",
"private", // crtend_so.S depends on private/bionic_asm_arm64.h
],
srcs: ["arch-common/bionic/crtend_so.S"],
defaults: ["crt_so_defaults"],
@ -2181,7 +2184,10 @@ cc_object {
// We rename crtend.o to crtend_android.o to avoid a
// name clash between gcc and bionic.
name: "crtend_android",
local_include_dirs: ["include"],
local_include_dirs: [
"include",
"private", // crtend.S depends on private/bionic_asm_arm64.h
],
srcs: ["arch-common/bionic/crtend.S"],
defaults: ["crt_defaults"],