Searched +full:qemu +full:- +full:user +full:- +full:static (Results 1 – 25 of 38) sorted by relevance
12
| /third_party/libuv/.github/workflows/ |
| D | CI.yml | 6 build-windows: 7 runs-on: windows-${{ matrix.config.server }} 8 name: build-${{ matrix.config.toolchain}}-${{ matrix.config.arch}} 10 fail-fast: false 13 - {toolchain: Visual Studio 15 2017, arch: Win32, server: 2016} 14 - {toolchain: Visual Studio 15 2017, arch: x64, server: 2016} 15 - {toolchain: Visual Studio 16 2019, arch: Win32, server: 2019} 16 - {toolchain: Visual Studio 16 2019, arch: x64, server: 2019} 17 - {toolchain: Visual Studio 17 2022, arch: Win32, server: 2022} 18 - {toolchain: Visual Studio 17 2022, arch: x64, server: 2022} [all …]
|
| /third_party/toybox/scripts/ |
| D | mkroot.sh | 4 [ -z "$NOCLEAR" ] && 5 exec env -i NOCLEAR=1 HOME="$HOME" PATH="$PATH" LINUX="$LINUX" \ 9 while [ $# -ne 0 ] 18 if [ -z "$CROSS_COMPILE" ] 21 if ! cc --static -xc - -o /dev/null <<< "int main(void) {return 0;}" 23 echo "Warning: host compiler can't create static binaries." >&2 29 [ -z "$CROSS_SHORT" ] && CROSS_SHORT="${CROSS_BASE/-*/}" 31 if [ -z "$CROSS_PATH" ] 40 [ -z "$BUILD" ] && BUILD="$TOP/build" 41 [ -z "$AIRLOCK" ] && AIRLOCK="$TOP/airlock" [all …]
|
| /third_party/lz4/.circleci/images/primary/ |
| D | Dockerfile | 1 FROM circleci/buildpack-deps:bionic 3 RUN sudo apt-get -y -qq update 4 RUN sudo apt-get -y install software-properties-common 5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test 6 RUN sudo apt-get -y install cmake 7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm 8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i386 9 RUN sudo apt-get -y install clang clang-tools 10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-6 11 RUN sudo apt-get -y install valgrind [all …]
|
| /third_party/littlefs/.github/workflows/ |
| D | test.yml | 5 CFLAGS: -Werror 6 MAKEFLAGS: -j 11 runs-on: ubuntu-18.04 13 fail-fast: false 18 - uses: actions/checkout@v2 19 - name: install 22 sudo apt-get update -qq 23 sudo apt-get install -qq python3 python3-pip lcov 25 gcc --version 27 # setup a ram-backed disk to speed up reentrant tests [all …]
|
| /third_party/libuv/test/ |
| D | test-connection-fail.c | 29 static uv_tcp_t tcp; 30 static uv_connect_t req; 31 static int connect_cb_calls; 32 static int close_cb_calls; 34 static uv_timer_t timer; 35 static int timer_close_cb_calls; 36 static int timer_cb_calls; 39 static void on_close(uv_handle_t* handle) { in on_close() 44 static void timer_close_cb(uv_handle_t* handle) { in timer_close_cb() 49 static void timer_cb(uv_timer_t* handle) { in timer_cb() [all …]
|
| /third_party/openssl/ |
| D | NOTES-ANDROID.md | 5 ------------------- 15 ------------- 17 Android is a cross-compiled target and you can't rely on `./Configure` 19 target explicitly; there are `android-arm`, `android-arm64`, `android-mips`, 20 `android-mip64`, `android-x86` and `android-x86_64` (`*MIPS` targets are no 23 Do not pass --cross-compile-prefix (as you might be tempted), as it 30 to point at the `NDK` directory. If you're using a side-by-side NDK the path 31 will look something like `/some/where/android-sdk/ndk/<ver>`, and for a 32 standalone NDK the path will be something like `/some/where/android-ndk-<ver>`. 34 The NDK customarily supports multiple Android API levels, e.g. `android-14`, [all …]
|
| /third_party/openssl/.github/workflows/ |
| D | cross-compiles.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 16 cross-compilation: 18 fail-fast: false 21 # arch: the architecture to build for, this defines the tool-chain 22 # prefix {arch}- and the Debian compiler package gcc-{arch} 29 # tests: omit this to run all the tests using QEMU, set it to "none" 35 arch: aarch64-linux-gnu, 36 libs: libc6-dev-arm64-cross, 37 target: linux-aarch64 39 arch: alpha-linux-gnu, [all …]
|
| /third_party/jerryscript/tools/ |
| D | apt-get-install-qemu-arm.sh | 9 # http://www.apache.org/licenses/LICENSE-2.0 21 ${SUDO} apt-get update -q 22 ${SUDO} apt-get install -q -y \ 23 gcc-arm-linux-gnueabihf libc6-dev-armhf-cross \ 24 qemu-user-static
|
| /third_party/optimized-routines/ |
| D | config.mk.dist | 3 # Copyright (c) 2018-2020, Arm Limited. 4 # SPDX-License-Identifier: MIT 13 #CROSS_COMPILE = aarch64-none-linux-gnu- 17 CFLAGS = -std=c99 -pipe -O3 18 CFLAGS += -Wall -Wno-missing-braces 19 CFLAGS += -Werror=implicit-function-declaration 23 HOST_CFLAGS = -std=c99 -O2 24 HOST_CFLAGS += -Wall -Wno-unused-function 27 HOST_CFLAGS += -g 28 CFLAGS += -g [all …]
|
| /third_party/jerryscript/ |
| D | .travis.yml | 9 script: tools/run-tests.py $OPTS 14 - name: "Checks" 16 …- tools/run-tests.py --check-signed-off=travis --check-doxygen --check-vera --check-license --chec… 17 - travis_wait 40 tools/run-tests.py --check-cppcheck 22 - name: "Linux/x86-64 Build, Correctness & Debugger Tests" 24 - OPTS="--quiet --jerry-tests --jerry-test-suite --jerry-debugger" 26 - name: "Linux/x86 (cpointer-32bit) Build & Correctness Tests" 28 …- OPTS="--quiet --jerry-tests --jerry-test-suite --buildoptions=--compile-flag=-m32,--cpointer-32b… 31 packages: [gcc-multilib] 33 - name: "Linux/ARM Build & Correctness Tests" [all …]
|
| /third_party/flutter/skia/third_party/externals/sdl/docs/ |
| D | README-raspberrypi.md | 23 sudo apt-get install libudev-dev libasound2-dev libdbus-1-dev 28 sudo apt-get install libraspberrypi0 libraspberrypi-bin libraspberrypi-dev 36 will be placed in /opt/rpi-tools 38 sudo git clone --depth 1 https://github.com/raspberrypi/tools /opt/rpi-tools 42 After unzipping, you'll get file with a name like: "<date>-wheezy-raspbian.img" 43 Let's assume the sysroot will be built in /opt/rpi-sysroot. 45 export SYSROOT=/opt/rpi-sysroot 46 sudo kpartx -a -v <path_to_raspbian_image>.img 47 sudo mount -o loop /dev/mapper/loop0p2 /mnt 48 sudo cp -r /mnt $SYSROOT [all …]
|
| /third_party/rust/crates/bindgen/.github/workflows/ |
| D | bindgen.yml | 6 - main 9 - main 12 rustfmt-clippy: 13 runs-on: ubuntu-latest 16 - uses: actions/checkout@v3 18 - name: Install stable 19 uses: actions-rs/toolchain@v1 22 # TODO: Should ideally be stable, but we use some nightly-only 28 - name: Run rustfmt 29 uses: actions-rs/cargo@v1 [all …]
|
| /third_party/toybox/www/ |
| D | faq.html | 2 <!--#include file="header.html" --> 26 <!-- get binaries --> 37 and <a href=http://landley.net/notes-2006.html#28-09-2006>started over from 39 <a href=http://lists.busybox.net/pipermail/busybox/2006-September/058617.html>protracted licensing … 42 <a href=http://landley.net/notes-2011.html#13-11-2011>relaunched</a> 44 <a href=http://landley.net/aboriginal/about.html#selfhost>self-hosting</a>. 48 after a lot of thinking <a href=http://landley.net/talks/ohio-2013.txt>about 49 licenses</a> and <a href=http://landley.net/notes-2011.html#21-03-2011>the 53 <a href=http://landley.net/talks/celf-2013.txt>strategy</a> 54 to make Android self-hosting using toybox. This helped [all …]
|
| D | about.html | 2 <!--#include file="header.html" --> 7 a single <a href=license.html>BSD-licensed</a> executable. It's simple, small, fast, and reasonably 8 standards-compliant (<a href=http://opengroup.org/onlinepubs/9699919799>POSIX-2008</a> and <a href=… 11 <a href=http://landley.net/aboriginal/about.html#selfhost>self-hosting</a> 16 (<a href=http://landley.net/talks/celf-2013.txt>outline</a>, 27 1) a set of posix-ish command line utilities, 28 2) a compiler<a name="1_back"></a><sup><font size=-3><a href=#1>[1]</a></font></sup>, 36 <p>The <a href=http://landley.net/talks/celf-2013.txt>2013 toybox talk</a> 42 …=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=4m22s>Software needed to become self-hosting</a></li> 47 …<li>11m30s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=11m30s>Open source can't do User I… [all …]
|
| D | index.html | 2 <!--#include file="header.html" --> 5 into a single BSD-licensed executable that's simple, small, fast, 6 reasonably standards-compliant, and powerful enough to turn Android into 11 <a name="30-11-2021" /><a href="#30-11-2021"><hr><h2><b>November 30, 2021</b></h2></a> 15 <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote> 17 <p><a href=downloads/toybox-0.8.6.tar.gz>Toybox 0.8.6</a> 19 is out, with prebuilt <a href=downloads/binaries/0.8.6>static binaries</a> and 21 bootable under QEMU (using vanilla linux-5.15).</p> 26 …c support for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012497… 27 although it just builds a chroot filesystem, you can't boot a hexagon kernel under qemu [all …]
|
| D | news.html | 2 <!--#include file="header.html" --> 5 into a single BSD-licensed executable that's simple, small, fast, 6 reasonably standards-compliant, and powerful enough to turn Android into 11 <a name="30-11-2021" /><a href="#30-11-2021"><hr><h2><b>November 30, 2021</b></h2></a> 15 <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote> 17 <p><a href=downloads/toybox-0.8.6.tar.gz>Toybox 0.8.6</a> 19 is out, with prebuilt <a href=downloads/binaries/0.8.6>static binaries</a> and 21 bootable under QEMU (using vanilla linux-5.15).</p> 26 …c support for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012497… 27 although it just builds a chroot filesystem, you can't boot a hexagon kernel under qemu [all …]
|
| /third_party/rust/crates/rust-openssl/.circleci/ |
| D | config.yml | 6 key: registry-{{ .BuildNum }} 8 - /usr/local/cargo/registry/index 10 key: lib-{{ checksum "~/lib_key" }}-{{ checksum "test/build_openssl.sh" }} 18 - /openssl 20 key: deps-1.19.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2 28 - target 29 - /usr/local/cargo/registry/cache 34 - image: rust:1.19.0 36 - checkout 37 - run: apt-get update [all …]
|
| /third_party/libwebsockets/ |
| D | changelog | 2 --------- 7 - Add full CBOR stream parsing and writing support, with huge 9 See ./READMEs/README.cbor-lecp.md 10 - Add COSE key and signing / validation support with huge amount of 14 See ./READMEs/README.cbor-cose.md 15 - JIT Trust: for constrained devices, provides a way to determine the 19 See ./READMEs/README.jit-trust.md 20 - Add support for client Netscape cookie jar with caching 21 - Secure Streams: issue LWSSSCS_EVENT_WAIT_CANCELLED state() when 22 lws_cancel_service() called, so cross-thread events can be handled [all …]
|
| /third_party/mesa3d/docs/ |
| D | meson.rst | 5 --------------- 19 <https://mesonbuild.com/Getting-meson.html>`__ to install the 25 Unix-like OSes 31 .. code-block:: console 33 sudo apt-get install meson # Ubuntu 37 .. code-block:: console 44 You'll also need `Ninja <https://ninja-build.org/>`__. If it's not 45 already installed, use apt-get or dnf to install the *ninja-build* 53 modules (Mako). You also need pkg-config (a hard dependency of Meson), 57 .. code-block:: console [all …]
|
| /third_party/musl/ |
| D | WHATSNEW | 1 0.5.0 - initial release 5 0.5.9 - signal ABI bugfix, various cleanup and fixes: 25 many internal improvements have been made to the syscall-related code 30 0.6.0 - x86_64 port, various important bugs fixed 48 0.7.0 - major improvements to posix conformance and completeness 61 malloc(0) now returns a non-null pointer. 64 hanging), and non-default-type mutex behavior. 67 libgcc with dwarf2 unwind support, and possibly other low-level tools. 69 improved musl-gcc compiler wrapper. 76 0.7.1 - improvements to completeness, bug fixes [all …]
|
| /third_party/python/Modules/ |
| D | _posixsubprocess.c | 35 # include <sys/linux-syscalls.h> 41 /* If this is ever expanded to non-Linux platforms, verify what calls are 53 # define dirfd(dirp) ((dirp)->dd_fd) 70 #define POSIX_CALL(call) do { if ((call) == -1) goto error; } while (0) 72 static struct PyModuleDef _posixsubprocessmodule; 74 /* Convert ASCII to a positive int, no libc call. no overflow. -1 on error. */ 75 static int 80 num = num * 10 + (*name - '0'); in _pos_int_from_ascii() 84 return -1; /* Non digit found, not a number. */ in _pos_int_from_ascii() 90 /* When /dev/fd isn't mounted it is often a static directory populated [all …]
|
| /third_party/libxml2/test/relaxng/ |
| D | libvirt.rng | 2 …"http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> 3 <!-- We handle only document defining a domain --> 8 <!-- 10 --> 38 <value>static</value> 52 <value>qemu</value> 209 <!-- 211 - an optional id attribute with a number on the domain element 212 - a mandatory name 213 - an optional uuid [all …]
|
| /third_party/libuv/ |
| D | ChangeLog | 7 * macos: don't use thread-unsafe strtok() (Ben Noordhuis) 60 * loop: add pending work to loop-alive check (Jameson Nash) 68 * bench: add `uv_queue_work` ping-pong measurement (Momtchil Momtchev) 72 * test: fix benchmark-ping-udp (Ryan Liptak) 92 * doc: checkout -> check out (wyckster) 100 * test: use closefd in runner-unix.c (Guilherme Íscaro) 135 * test: fix typo in test-tty-escape-sequence-processing.c (Ikko Ashimine) 151 * test: remove `dns-server.c` as it is not used anywhere (Darshan Sen) 153 * build: fix non-cmake android builds (YAKSH BARIYA) 161 * pipe: remove useless assertion (~locpyl-tidnyd) [all …]
|
| /third_party/NuttX/ |
| D | ReleaseNotes | 14 "nuttx-6.27"). 16 NuttX-0.1.0 17 ----------- 20 with support for the Linux user mode simulation and the TI TMS320C5471 23 This release has been verified on both the Linux user-mode and C5471 25 for the C5471 can be found in arch/c5471/doc/test-results.txt. 29 NuttX-0.1.1 30 ----------- 42 This release has been verified on the Linux user-mode platform, the 51 NuttX-0.1.2 [all …]
|
| /third_party/python/Doc/whatsnew/ |
| D | 3.8.rst | 34 sufficient; the e-mail address isn't necessary. 59 Summary -- Release highlights 66 .. PEP-sized items next. 74 ---------------------- 79 <https://en.wikipedia.org/wiki/Walrus#/media/File:Pacific_Walrus_-_Bull_(8247646168).jpg>`_. 95 The operator is also useful with while-loops that compute 118 Positional-only parameters 119 -------------------------- 127 In the following example, parameters *a* and *b* are positional-only, 145 the built-in :func:`divmod` function does not accept keyword arguments:: [all …]
|
12