Home
last modified time | relevance | path

Searched +full:release +full:- +full:linux (Results 1 – 11 of 11) sorted by relevance

/picolibc-latest/.github/workflows/
DMakefile2 make-workflow \
4 variants-cmake \
6 targets-cmake-linux \
7 steps-head \
8 steps-cmake \
9 steps-minsize \
10 steps-release
12 all: linux.yml zephyr.yml
14 linux.yml: $(LINUX_DEPS)
15 ./make-workflow > $@
[all …]
Dzephyr.yml6 - main
9 - main
14 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15 cancel-in-progress: true
18 # .github/do-zephyr --buildtype release
22 DOCKERFILE: picolibc/.github/Dockerfile-zephyr
23 IMAGE_FILE: dockerimg-zephyr.tar.zst
25 PACKAGES_FILE: picolibc/.github/zephyr-packages.txt
26 EXTRA_FILE: picolibc/.github/zephyr-files.txt
29 cache-maker:
[all …]
Dlinux.yml1 name: Linux
6 - main
9 - main
14 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15 cancel-in-progress: true
18 # CCache is disabled for the Linux jobs for now.
22 IMAGE_FILE: dockerimg-linux.tar.zst
23 IMAGE: picolibc-linux
24 PACKAGES_FILE: picolibc/.github/linux-packages.txt
25 EXTRA_FILE: picolibc/.github/linux-files.txt
[all …]
Dmake-workflow6 for arch in linux; do
7 echo " $build-$arch:"
8 cat variants-$build
9 cat targets-$build-$arch
10 cat steps-head
11 cat steps-$build
15 for build in minsize release; do
16 for arch in linux; do
17 echo " $build-$arch:"
19 cat targets-$arch
[all …]
Dhead-zephyr6 - main
9 - main
14 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15 cancel-in-progress: true
18 # .github/do-zephyr --buildtype release
22 DOCKERFILE: picolibc/.github/Dockerfile-zephyr
23 IMAGE_FILE: dockerimg-zephyr.tar.zst
25 PACKAGES_FILE: picolibc/.github/zephyr-packages.txt
26 EXTRA_FILE: picolibc/.github/zephyr-files.txt
29 cache-maker:
[all …]
/picolibc-latest/.github/
Dlinux-files.txt1 https://github.com/ZakKemble/avr-gcc-build/releases/download/v12.1.0-1/avr-gcc-12.1.0-x64-linux.tar…
2 https://maps.altusmetrum.org/qemu-m68k.tar.xz
3 https://maps.altusmetrum.org/m68k-unknown-elf.tar.xz
4 https://maps.altusmetrum.org/msp430-unknown-elf.tar.xz
5 https://maps.altusmetrum.org/sh-unknown-elf-1.tar.xz
6 https://maps.altusmetrum.org/qemu-arm.tar.xz
7 https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-18.1.3/LL…
/picolibc-latest/
DREADME.md2 Copyright © 2018-2023 Keith Packard
7 [AVR Libc](https://www.nongnu.org/avr-libc/).
11 * ![Linux](https://github.com/picolibc/picolibc/workflows/Linux/badge.svg?branch=main)
19 from Newlib, none of the GPL-related bits used to build the library
20 are left in the repository, so all of the source code uses BSD-like
21 licenses, a mixture of 2- and 3- clause BSD itself and a variety of
24 There are two files used for testing printf, test/printf-tests.c and
32 license information in the Debian standard machine-readable format. It
33 was generated using the make-copyrights and find-copyright
41 * ARC (32- and 64- bit)
[all …]
/picolibc-latest/newlib/libc/stdlib/
Dmallocr.c8 /* ---------- To make a malloc.h, start cutting here ------------ */
28 This is not the fastest, most space-conserving, most portable, or
30 while also being among the most space-conserving, portable and tunable.
31 Consistent balance across these factors results in a good general-purpose
32 allocator. For a high-level description, see
43 Release the chunk of memory pointed to by p, or no effect if p is null.
50 size argument of zero (re)allocates a minimum-sized chunk.
60 Equivalent to valloc(minimum-page-that-holds(n)), that is,
68 Release all but pad bytes of freed top-most memory back
84 Alignment: 8-byte
[all …]
/picolibc-latest/newlib/libc/stdio/
Dfopencookie.c8 <<fopencookie>>---open a stream with custom callbacks
42 <[functions.read]> should return -1 on failure, or else the number of
46 <[functions.write]> should return -1 on failure, or else the number of
50 <[functions.seek]> should return -1 on failure, and 0 on success, with
57 <[functions.close]> should return -1 on failure, or 0 on success. It
79 This function is a newlib extension, copying the prototype from Linux.
109 if ((result = c->readfn (c->cookie, buf, n)) < 0 && errno) in fcreader()
122 if (c->fp->_flags & __SAPP && c->fp->_seek) in fcwriter()
125 c->fp->_seek64 (cookie, 0, SEEK_END); in fcwriter()
127 c->fp->_seek (cookie, 0, SEEK_END); in fcwriter()
[all …]
Dfunopen.c8 <<funopen>>, <<fropen>>, <<fwopen>>---open a stream with custom callbacks
35 <[readfn]> should return -1 on failure, or else the number of bytes
41 <[writefn]> should return -1 on failure, or else the number of bytes
47 <[seekfn]> should return (fpos_t)-1 on failure, or else the current
54 <[closefn]> should return -1 on failure, or 0 on success. It is
78 It is not portable. See also the <<fopencookie>> interface from Linux.
116 if ((result = c->readfn (c->cookie, buf, n)) < 0 && errno) in funreader()
130 if ((result = c->writefn (c->cookie, buf, n)) < 0 && errno) in funwriter()
145 if ((result = c->seekfn (c->cookie, (fpos_t) off, whence)) < 0 && errno) in funseeker()
150 if ((result = c->seekfn (c->cookie, (_fpos64_t) off, whence)) < 0 && errno) in funseeker()
[all …]
/picolibc-latest/newlib/
DChangeLog-20151 2015-12-21 Freddie Chopin <freddie.chopin@gmail.com>
6 2015-12-21 Freddie Chopin <freddie.chopin@gmail.com>
17 2015-12-17 Anton Kolesov <Anton.Kolesov@synopsys.com>
20 * libc/machine/arc/memcmp-bs-norm.S: Use new GCC defines to detect
23 * libc/machine/arc/memcpy-archs.S: Likewise.
24 * libc/machine/arc/memcpy-bs.S: Likewise.
25 * libc/machine/arc/memcpy.S: Likewise. * libc/machine/arc/memset-archs.S: Likewise.
26 * libc/machine/arc/memset-archs.S: Likewise.
27 * libc/machine/arc/memset-bs.S: Likewise.
30 * libc/machine/arc/strchr-bs-norm.S: Likewise.
[all …]