Previously, HOST_CROSS_OS/ARCH were fixed to windows/x86. This change makes the setting configuration and adds the support for new OS/ARCH combo: linux_bionic/arm64. linux_bionic is the Linux-based host target that uses Bionic (instead of glibc) as libc. Previously, it supported only x86_64 and the x86_64 target was NOT configured via Make, but directly via editing soong.variables file. Now, the support for arm64 is being added in the Soong side and this change makes it possible to configure the target via Make. The new HOST_CROSS_OS/ARCH combo will be used for building the host-side tools (adb, crosvm, etc.) for running Cuttlefish natively on Linux/ARM hosts. Bug: 159685774 Test: HOST_CROSS_OS=linux_bionic HOST_CROSS_ARCH=arm64 m nothing Change-Id: I6b8ed8f7e26908749bbe778fbdcc34cfbde68179
23 lines
792 B
Makefile
23 lines
792 B
Makefile
#
|
|
# Copyright (C) 2020 The Android Open Source Project
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# Configuration for builds hosted on linux_arm-arm64
|
|
# Included by combo/select.mk
|
|
|
|
define $(combo_var_prefix)transform-shared-lib-to-toc
|
|
$(call _gen_toc_command_for_elf,$(1),$(2))
|
|
endef
|