blob: 7e71c29b4b4f1e3a300585357749f9ae0e655067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# This file adds functions to use the Picolibc library as the system libc
# Copyright © 2022 Joakim Nohlgård
# Licensed under the GPL v2 or later. See COPYING in the root of this package
picolibc_get()
{
CT_Fetch PICOLIBC
}
picolibc_extract()
{
CT_ExtractPatch PICOLIBC
}
picolibc_headers()
{
CT_DoStep INFO "Installing C library headers"
CT_DoExecLog ALL cp -a "${CT_SRC_DIR}/picolibc/newlib/libc/include/." "${CT_HEADERS_DIR}"
CT_EndStep
}
picolibc_main()
{
CT_DoStep INFO "Installing C library"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-libc"
do_picolibc_common_install
CT_Popd
CT_EndStep
}
|