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.
42 lines
745 B
42 lines
745 B
7 months ago
|
#
|
||
|
# Copyright (c) 2016-2021, ARM Limited and Contributors. All rights reserved.
|
||
|
#
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
#
|
||
|
|
||
|
LIBC_SRCS := $(addprefix lib/libc/, \
|
||
|
abort.c \
|
||
|
assert.c \
|
||
|
exit.c \
|
||
|
memchr.c \
|
||
|
memcmp.c \
|
||
|
memcpy.c \
|
||
|
memmove.c \
|
||
|
memrchr.c \
|
||
|
memset.c \
|
||
|
printf.c \
|
||
|
putchar.c \
|
||
|
puts.c \
|
||
|
snprintf.c \
|
||
|
strchr.c \
|
||
|
strcmp.c \
|
||
|
strlcat.c \
|
||
|
strlcpy.c \
|
||
|
strlen.c \
|
||
|
strncmp.c \
|
||
|
strnlen.c \
|
||
|
strrchr.c \
|
||
|
strtok.c \
|
||
|
strtoul.c \
|
||
|
strtoll.c \
|
||
|
strtoull.c \
|
||
|
strtol.c)
|
||
|
|
||
|
ifeq (${ARCH},aarch64)
|
||
|
LIBC_SRCS += $(addprefix lib/libc/aarch64/, \
|
||
|
setjmp.S)
|
||
|
endif
|
||
|
|
||
|
INCLUDES += -Iinclude/lib/libc \
|
||
|
-Iinclude/lib/libc/$(ARCH) \
|