1# Copyright (C) 2022 Huawei Technologies Co., Ltd. 2# Licensed under the Mulan PSL v2. 3# You can use this software according to the terms and conditions of the Mulan 4# PSL v2. 5# You may obtain a copy of Mulan PSL v2 at: 6# http://license.coscl.org.cn/MulanPSL2 7# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY 8# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 9# NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. 10# See the Mulan PSL v2 for more details. 11 12# set gcc compiler 13ifneq ($(TARGET_IS_ARM64), y) 14 CC = arm-linux-gnueabi-gcc 15 LD = arm-linux-gnueabi-ld 16 READELF = arm-linux-gnueabi-readelf 17else 18 CC = aarch64-linux-gnu-gcc 19 LD = aarch64-linux-gnu-ld 20 READELF = aarch64-linux-gnu-readelf 21endif 22