You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
293 B
15 lines
293 B
#
|
|
# Copyright (c) 2020-2024, Arm Limited. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
include lib/libc/libc_common.mk
|
|
|
|
ifeq (${ARCH},aarch64)
|
|
LIBC_SRCS += $(addprefix lib/libc/aarch64/, \
|
|
memset.S)
|
|
else
|
|
LIBC_SRCS += $(addprefix lib/libc/aarch32/, \
|
|
memset.S)
|
|
endif
|
|
|