Home
last modified time | relevance | path

Searched +full:musl +full:- +full:dev (Results 1 – 25 of 91) sorted by relevance

1234

/external/trusty/musl/
Dconfigure13 --srcdir=DIR source directory [detected]
16 --prefix=PREFIX main installation prefix [/usr/local/musl]
17 --exec-prefix=EPREFIX installation prefix for executable files [PREFIX]
20 --bindir=DIR user executables [EPREFIX/bin]
21 --libdir=DIR library files for the linker [PREFIX/lib]
22 --includedir=DIR include files for the C compiler [PREFIX/include]
23 --syslibdir=DIR location for the dynamic linker [/lib]
26 --target=TARGET configure to run on target TARGET [detected]
27 --host=HOST same as --target
28 --build=BUILD build system type; used only to infer cross-compiling
[all …]
/external/linux-kselftest/tools/testing/selftests/wireguard/qemu/
DMakefile1 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
13 CBUILD := $(shell gcc -dumpmachine)
14 HOST_ARCH := $(firstword $(subst -, ,$(CBUILD)))
19 MIRROR := https://download.wireguard.com/qemu-test/distfiles/
21 KERNEL_BUILD_PATH := $(BUILD_PATH)/kernel$(if $(findstring yes,$(DEBUG_KERNEL)),-debug)
28 $(1)_NAME := $(2)-$$($(1)_VERSION)
36 mkdir -p $(DISTFILES_PATH)
37-x $$@.lock -c '[ -f $$@ ] && exit 0; wget -O $$@.tmp $(MIRROR)$(1) || wget -O $$@.tmp $(2)$(1) ||…
46 … $(call tar_download,WIREGUARD_TOOLS,wireguard-tools,1.0.20210914,.tar.xz,https://git.zx2c4.com/wi…
[all …]
/external/toybox/www/
Dfaq.html2 <!--#include file="header.html" -->
25 <!-- get binaries -->
43 and <a href=http://landley.net/notes-2006.html#28-09-2006>started over from
45 <a href=http://lists.busybox.net/pipermail/busybox/2006-September/058617.html>protracted licensing …
48 <a href=http://landley.net/notes-2011.html#13-11-2011>relaunched</a>
50 <a href=http://landley.net/aboriginal/about.html#selfhost>self-hosting</a>.
54 after a lot of thinking <a href=http://landley.net/talks/ohio-2013.txt>about
55 licenses</a> and <a href=http://landley.net/notes-2011.html#21-03-2011>the
59 <a href=http://landley.net/talks/celf-2013.txt>strategy</a>
60 to make Android self-hosting using toybox. This helped
[all …]
/external/toybox/scripts/
Dmcm-buildall.sh3 # Script to build all cross and native compilers supported by musl-libc.
8 if [ ! -d litecross ]
10 echo Run this script in musl-cross-make directory to make "ccc" directory.
12 echo " "git clone https://github.com/richfelker/musl-cross-make
13 echo " "cd musl-cross-make
14 echo ' ~/toybox/scripts/mcm-buildall.sh'
19 # in a gcc tuple TARGET-linux-muslEXTRA with CONFIG appended to $GCC_CONFIG
20 # (and thus the gcc ./configure command line). So i686:: builds i686-linux-musl
21 # and sh2eb::fdpic:--with-cpu=mj2 builds sh2eb-linux-muslfdpic adding
22 # --with-cpu=mj2 to the gcc ./configure command line. @RENAME (if present)
[all …]
/external/musl/
Dconfigure13 --srcdir=DIR source directory [detected]
16 --prefix=PREFIX main installation prefix [/usr/local/musl]
17 --exec-prefix=EPREFIX installation prefix for executable files [PREFIX]
20 --bindir=DIR user executables [EPREFIX/bin]
21 --libdir=DIR library files for the linker [PREFIX/lib]
22 --includedir=DIR include files for the C compiler [PREFIX/include]
23 --syslibdir=DIR location for the dynamic linker [/lib]
26 --target=TARGET configure to run on target TARGET [detected]
27 --host=HOST same as --target
28 --build=BUILD build system type; used only to infer cross-compiling
[all …]
/external/toybox/toys/other/
Dhwclock.c1 /* hwclock.c - get and set the hwclock
8 USE_HWCLOCK(NEWTOY(hwclock, ">0(fast)f(rtc):u(utc)l(localtime)t(systz)s(hctosys)r(show)w(systohc)[-
14 usage: hwclock [-rswtlu] [-f FILE]
16 Get/set the hardware clock. Default is hwclock -ruf /dev/rtc0
18 -f Use specified device FILE instead of /dev/rtc0 (--rtc)
19 -l Hardware clock uses localtime (--localtime)
20 -r Show hardware clock time (--show)
21 -s Set system time from hardware clock (--hctosys)
22 -t Inform kernel of non-UTC clock's timezone so it returns UTC (--systz)
23 -u Hardware clock uses UTC (--utc)
[all …]
/external/ltp/ci/
Dalpine.sh1 #!/bin/sh -eux
2 # SPDX-License-Identifier: GPL-2.0-or-later
3 # Copyright (c) 2019-2022 Petr Vorel <petr.vorel@gmail.com>
8 acl-dev \
16 keyutils-dev \
17 libaio-dev \
19 libcap-dev \
20 libselinux-dev \
21 libsepol-dev \
22 libtirpc-dev \
[all …]
/external/rust/crates/libm/
DCargo.toml.orig3 categories = ["no-std"]
7 license = "MIT OR Apache-2.0"
10 repository = "https://github.com/rust-lang/libm"
23 # musl libc.
24 musl-reference-tests = ['rand']
28 "crates/compiler-builtins-smoke-test",
29 "crates/libm-bench",
32 [dev-dependencies]
33 no-panic = "0.1.8"
35 [build-dependencies]
[all …]
DCargo.toml28 categories = ["no-std"]
29 license = "MIT OR Apache-2.0"
30 repository = "https://github.com/rust-lang/libm"
35 [dev-dependencies.no-panic]
38 [build-dependencies.rand]
44 musl-reference-tests = ["rand"]
/external/pcre/.github/workflows/
Dbuild.yml8 runs-on: ubuntu-latest
10 - name: Checkout
13 - name: Prepare
16 - name: Configure
17 run: ./configure CPPFLAGS='-Wall -Wextra' --enable-jit --enable-pcre2-16 --enable-pcre2-32
19 - name: Build
20 run: make -j2
22 - name: Test (main test script)
25 - name: Test (JIT test program)
28 - name: Test (pcre2grep test script)
[all …]
/external/bazelbuild-rules_rust/.github/workflows/
Drelease.yaml1 ---
7 - main
9 - version.bzl
16 BAZEL_STARTUP_FLAGS: --bazelrc=${{ github.workspace }}/.github/github.bazelrc
20 runs-on: ubuntu-20.04
22 - uses: actions/checkout@v3
25 - name: Ensure branch is 'main'
27 git fetch origin &> /dev/null
28 branch="$(git rev-parse --abbrev-ref HEAD)"
35 - name: Ensure release does not already exist
[all …]
/external/mesa3d/docs/
Dgitlab-ci.yml1 .docs-base:
5 - .fdo.ci-fairy
9 - public/
11 - apk --no-cache add coreutils graphviz py3-clang clang-dev musl-dev linux-headers
12 - pip3 install sphinx===5.1.1 mako===1.2.3 hawkmoth===0.16.0
13 - sphinx-build -W -b $BUILDER docs public
16 extends: .docs-base
20 - !reference [.no_scheduled_pipelines-rules, rules]
21- if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH && $CI_COMMIT_…
22 changes: &docs-or-ci
[all …]
/external/strace/tests-m32/
Ddev-yy.c2 * Check printing of character/block device numbers in -yy mode.
53 { "/dev/zero", 1, 5, false, false }, in main()
54 { "/dev/full", 1, 7, false, false }, in main()
55 { "/dev/sda", 8, 0, true, true }, in main()
61 * some libcs (yes, musl, I'm looking at you now) are too in main()
/external/strace/tests-mx32/
Ddev-yy.c2 * Check printing of character/block device numbers in -yy mode.
53 { "/dev/zero", 1, 5, false, false }, in main()
54 { "/dev/full", 1, 7, false, false }, in main()
55 { "/dev/sda", 8, 0, true, true }, in main()
61 * some libcs (yes, musl, I'm looking at you now) are too in main()
/external/strace/tests/
Ddev-yy.c2 * Check printing of character/block device numbers in -yy mode.
53 { "/dev/zero", 1, 5, false, false }, in main()
54 { "/dev/full", 1, 7, false, false }, in main()
55 { "/dev/sda", 8, 0, true, true }, in main()
61 * some libcs (yes, musl, I'm looking at you now) are too in main()
/external/rust/crates/vmm-sys-util/src/linux/
Dioctl.rs7 // SPDX-License-Identifier: BSD-3-Clause
10 //! [`ioctl`](http://man7.org/linux/man-pages/man2/ioctl.2.html).
32 ) -> ::std::os::raw::c_ulong { in ioctl_expr()
54 pub fn $name() -> ::std::os::raw::c_ulong {
61 pub fn $name($($v: ::std::os::raw::c_uint),+) -> ::std::os::raw::c_ulong {
205 // The type of the `req` parameter is different for the `musl` library. This will enable
206 // successful build for other non-musl libraries.
207 #[cfg(target_env = "musl")]
209 #[cfg(all(not(target_env = "musl"), not(target_os = "android")))]
211 #[cfg(all(not(target_env = "musl"), target_os = "android"))]
[all …]
/external/libcap/
DMakefile11 all test sudotest install clean: %: %-here
12 $(MAKE) -C libcap $@
14 $(MAKE) -C pam_cap $@
17 $(MAKE) -C go $@
18 rm -f cap/go.sum
20 $(MAKE) -C tests $@
21 $(MAKE) -C progs $@
22 $(MAKE) -C doc $@
24 all-here:
26 test-here:
[all …]
/external/ltp/lib/
Dtst_test.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz>
4 * Copyright (c) Linux Test Project, 2016-2021
37 #include "ltp-version.h"
48 #define MUSL_GIT_URL "https://git.musl-libc.org/cgit/musl/commit/src/linux/clone.c?id="
49 #define CVE_DB_URL "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-"
57 static float duration = -1;
58 static float timeout_mul = -1;
98 if (access("/dev/shm", F_OK) == 0) { in setup_ipc()
99 snprintf(shm_path, sizeof(shm_path), "/dev/shm/ltp_%s_%d", in setup_ipc()
[all …]
/external/crosvm/e2e_tests/guest_under_test/initramfs/
DContainerfile2 # Use of this source code is governed by a BSD-style license that can be
7 RUN echo "\ndeb-src http://deb.debian.org/debian bookworm main non-free-firmware\n" >> /etc/apt/sou…
9 RUN apt-get update
10 RUN apt-get install -y bash-static git meson linux-headers-amd64 wget bison gettext
14 …com/uutils/coreutils/releases/download/0.0.20/coreutils-0.0.20-x86_64-unknown-linux-musl.tar.gz -O…
15 RUN tar -zxvf coreutils.tar.gz
17 # Download source code and build util-linux
18 RUN git clone https://github.com/util-linux/util-linux.git
19 WORKDIR /root/util-linux
21 RUN apt-get build-dep -y util-linux
[all …]
/external/ltp/docparse/
Dtestinfo.pl2 # SPDX-License-Identifier: GPL-2.0-or-later
4 # Copyright (c) 2020-2021 Petr Vorel <pvorel@suse.cz>
16 our @TAGS_GIT = ("linux-git", "linux-stable-git", "glibc-git", "musl-git");
22 use constant MUSL_GIT_URL => "https://git.musl-libc.org/cgit/musl/commit/src/linux/clone.c?id=";
23 use constant CVE_DB_URL => "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-";
52 // -*- mode:doc; -*-
78 if ('known-fail') {
172 $content .= print_defined("URL", $json->{'testsuite'}->{'url'});
173 $content .= print_defined("Version", $json->{'testsuite'}->{'version'});
174 $content .= print_defined("Default timeout", $json->{'defaults'}->{'timeout'}, "seconds");
[all …]
/external/libpng/
Dconfig.guess3 # Copyright 1992-2023 Free Software Foundation, Inc.
7 timestamp='2023-08-22'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/external/curl/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/external/libogg/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/external/sg3_utils/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/external/speex/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]

1234