Home
last modified time | relevance | path

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

/picolibc-latest/.github/workflows/
Dlinux.yml6 - 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
28 cache-maker:
[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
21 CCACHE_CMD: ccache
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
[all …]
Dsteps-head2 - name: Clone picolibc
7 - name: Restore the Docker Image
11 … key: ${{ env.IMAGE_FILE }}-${{ hashFiles( env.DOCKERFILE, env.PACKAGES_FILE, env.EXTRA_FILE ) }}
12 fail-on-cache-miss: true
14 - name: Load and Check the Docker Image
16 docker load -i $IMAGE_FILE
17 docker images -a $IMAGE
19 # The docker image contains ccache, but the ccache action uses the ccache
20 # outside docker for statistics, so install the same ccache version.
21 # Install in /usr/bin so the ccache action gets the expected environment.
[all …]
Dsteps-minsize1 - name: Minsize test
3-v $(readlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAG…
Dsteps-release1 - name: Release test
3-v $(readlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAG…
Dsteps-cmake1 - name: CMake test
3 …run -v $(readlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $…
Dhead6 - 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
28 cache-maker:
[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
21 CCACHE_CMD: ccache
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
[all …]
/picolibc-latest/.github/
DDockerfile-zephyr4 COPY .github/zephyr-packages.txt /
6 COPY .github/zephyr-files.txt /
8 COPY .github/zephyr-setup /
10 RUN apt-get update && \
11 apt-get install -y --no-install-recommends ca-certificates wget gnupg && \
12 (apt-get update || apt-get update || apt-get update) && \
13 (apt-get upgrade -y || apt-get upgrade -y || apt-get upgrade -y) && \
14 (xargs -a zephyr-packages.txt apt-get install -y --no-install-recommends || \
15 xargs -a zephyr-packages.txt apt-get install -y --no-install-recommends || \
16 xargs -a zephyr-packages.txt apt-get install -y --no-install-recommends || \
[all …]
/picolibc-latest/
DCMakeLists.txt2 # SPDX-License-Identifier: BSD-3-Clause
49 find_program(CCACHE_PROGRAM ccache)
51 message(STATUS "Using ccache: ${CCACHE_PROGRAM}")
81 # Use atomics for fgetc/ungetc for re-entrancy
128 set(TLS_MODEL "local-exec")
206 # Compiler has support for flag to prevent mis-optimizing memcpy/memset patterns
371 option(_MB_CAPABLE "Enable multi-byte support" OFF)
417 option(_WANT_IO_WCHAR "Support %ls/%lc formats in printf even without multi-byte" OFF)
458 # Obsoleted. Define time_t to long instead of using a 64-bit type
511 CHECK_INCLUDE_FILE(xtensa/config/core-isa.h _XTENSA_HAVE_CONFIG_CORE_ISA_H)
[all …]
DREADME.md2 Copyright © 2018-2023 Keith Packard
7 [AVR Libc](https://www.nongnu.org/avr-libc/).
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)
42 * ARM (32- and 64- bit)
[all …]