• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_NANO_VARS)
20
21src_files :=            \
22    memcmp.c            \
23    memmove.c           \
24    memset.c            \
25    strcasecmp.c        \
26    strlen.c            \
27    strncpy.c           \
28
29LOCAL_MODULE := libnanolibc_os
30LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD
31LOCAL_LICENSE_CONDITIONS := notice
32LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
33LOCAL_MODULE_TAGS := optional
34
35LOCAL_SRC_FILES := $(src_files)
36
37LOCAL_SRC_FILES_cortexm4 += memcpy-armv7m.S
38LOCAL_SRC_FILES_x86 += memcpy.c
39
40include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)
41
42include $(CLEAR_NANO_VARS)
43
44LOCAL_MODULE := libnanolibc
45LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD
46LOCAL_LICENSE_CONDITIONS := notice
47LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
48LOCAL_MODULE_TAGS := optional
49
50LOCAL_SRC_FILES := $(src_files)
51LOCAL_SRC_FILES +=      \
52    memcpy.c            \
53    aeabi.cpp           \
54    cxa.cpp             \
55    new.cpp             \
56    crt.c               \
57
58LOCAL_C_INCLUDES = $(LOCAL_PATH)
59LOCAL_EXPORT_C_INCLUDE_DIRS := \
60    $(LOCAL_C_INCLUDES)
61
62include $(BUILD_NANOHUB_APP_STATIC_LIBRARY)
63