| /third_party/libuv/.github/workflows/ |
| D | CI-unix.yml | 1 name: CI-unix 6 - '**' 7 - '!docs/**' 8 - '!src/win/**' 9 - '!.**' 10 - '.github/workflows/CI-unix.yml' 13 - v[0-9].* 14 - master 17 build-linux: 18 runs-on: ubuntu-latest [all …]
|
| /third_party/rust/crates/libc/ci/docker/mips-unknown-linux-gnu/ |
| D | Dockerfile | 3 RUN apt-get update && apt-get install -y --no-install-recommends \ 4 gcc libc6-dev qemu-user ca-certificates \ 5 gcc-mips-linux-gnu libc6-dev-mips-cross \ 6 qemu-system-mips linux-headers-generic 8 ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \ 9 CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu" \
|
| /third_party/exfatprogs/.github/workflows/ |
| D | c-cpp.yml | 6 - master 7 - exfat-next 10 - master 11 - exfat-next 16 runs-on: ubuntu-latest 19 - uses: actions/checkout@v4 20 - name: before test 22 sudo apt-get install linux-headers-$(uname -r) xz-utils \ 23 gcc-mips-linux-gnu qemu-system-mips \ 24 qemu-user [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 15 arch: [x86_64, thumb, mips, powerpc] 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 [all …]
|
| /third_party/rust/crates/libc/ci/docker/mips-unknown-linux-musl/ |
| D | Dockerfile | 3 RUN apt-get update && apt-get install -y --no-install-recommends \ 4 gcc libc6-dev qemu-user ca-certificates qemu-system-mips curl \ 5 xz-utils patch 10 # See build_dir/target-mips_24kc_musl/linux-ath79_generic/linux-5.4.154 12 # See staging_dir/toolchain-mips_24kc_gcc-8.4.0_musl/info.mk 13 …UN curl --retry 5 -L https://downloads.openwrt.org/releases/21.02.1/targets/ath79/generic/openwrt-… 14 tar xJf - -C /toolchain --strip-components=1 18 RUN patch /toolchain/staging_dir/toolchain-mips_24kc_gcc-8.4.0_musl/include/linux/kernel.h </toolch… 20 ENV PATH=$PATH:/rust/bin:/toolchain/staging_dir/toolchain-mips_24kc_gcc-8.4.0_musl/bin \ 22 CC_mips_unknown_linux_musl=mips-openwrt-linux-musl-gcc \ [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;}" 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" 42 [ -z "$OUTPUT" ] && OUTPUT="$TOP/${CROSS_SHORT:-host}" [all …]
|
| /third_party/rust/crates/rustix/ci/ |
| D | getsockopt-timeouts.patch | 6 [here]: https://gitlab.com/qemu-project/qemu/-/issues/885 8 --- 9 linux-user/generic/sockbits.h | 2 ++ 10 linux-user/mips/sockbits.h | 2 ++ 11 linux-user/sparc/sockbits.h | 2 ++ 12 linux-user/syscall.c | 6 ++++++ 15 diff --git a/linux-user/generic/sockbits.h b/linux-user/generic/sockbits.h 17 --- a/linux-user/generic/sockbits.h 18 +++ b/linux-user/generic/sockbits.h 19 @@ -36,6 +36,8 @@ [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/flatbuffers/tests/docker/languages/ |
| D | Dockerfile.testing.rust.big_endian.1_51_0 | 1 FROM rust:1.51.0-slim as base 2 RUN apt -qq update -y && apt -qq install -y \ 3 gcc-mips-linux-gnu \ 8 qemu-user 9 RUN rustup target add mips-unknown-linux-gnu 14 RUN rustc --version 15 RUN ./RustTest.sh mips-unknown-linux-gnu
|
| /third_party/flatbuffers/tests/ |
| D | RustTest.sh | 2 set -e 10 # http://www.apache.org/licenses/LICENSE-2.0 18 if [[ "$1" == "mips-unknown-linux-gnu" ]]; then 19 TARGET_FLAG="--target mips-unknown-linux-gnu" 20 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc 21 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu" 35 cargo run $TARGET_FLAG -- --quiet 40 rustup component add rust-src --toolchain nightly 41 rustup target add thumbv7m-none-eabi 46 cargo test $TARGET_FLAG -- --quiet [all …]
|
| /third_party/rust/crates/libc/ci/ |
| D | README.md | 14 * `run-docker.sh` - a shell script run by most builders, it will execute 17 * `run.sh` - the actual script which runs tests for a particular architecture. 19 * `dox.sh` - build the documentation of the crate and publish it to gh-pages. 34 * Android runs in a [docker image][android-docker] with an emulator, the NDK, 36 * The MIPS, ARM, and AArch64 builds all use the QEMU userspace emulator to run 42 * The BSD builds, currently OpenBSD and FreeBSD, use QEMU to boot up a system 45 [Actions config]: https://github.com/rust-lang/libc/tree/HEAD/.github/workflows 46 [Cirrus config]: https://github.com/rust-lang/libc/blob/HEAD/.cirrus.yml 47 [android-docker]: https://github.com/rust-lang/libc/blob/HEAD/ci/docker/x86_64-linux-android/Docker… 49 ## QEMU section in CI Systems [all …]
|
| /third_party/rust/crates/nix/ |
| D | .cirrus.yml | 8 RUSTFLAGS: -D warnings 9 RUSTDOCFLAGS: -D warnings 18 - . $HOME/.cargo/env || true 19 - $TOOL +$TOOLCHAIN -Vv 20 - rustc +$TOOLCHAIN -Vv 21 - $TOOL +$TOOLCHAIN $BUILD $ZFLAGS --target $TARGET --all-targets 22 - $TOOL +$TOOLCHAIN doc $ZFLAGS --no-deps --target $TARGET 23 - $TOOL +$TOOLCHAIN clippy $ZFLAGS --target $TARGET --all-targets -- -D warnings 24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi 25 …- if [ -z "$NOHACK" ]; then curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/downl… [all …]
|
| /third_party/rust/crates/nix/test/ |
| D | test_fcntl.rs | 33 // QEMU does not handle openat well enough to satisfy this test 34 // https://gitlab.com/qemu-project/qemu/-/issues/829 35 #[cfg_attr(qemu, ignore)] 253 // QEMU does not support copy_file_range. Skip under qemu 254 #[cfg_attr(qemu, ignore)] 374 // they run under QEMU. 396 mem::zeroed() // required for Linux/mips in test_ofd_write_lock() 434 mem::zeroed() // required for Linux/mips in test_ofd_read_lock() 453 fn lock_info(inode: usize) -> Option<(String, String)> { in lock_info()
|
| /third_party/rust/crates/nix/test/sys/ |
| D | test_socket.rs | 72 #[cfg_attr(qemu, ignore)] 124 ts - sys_time in test_timestamping() 126 sys_time - ts in test_timestamping() 183 fn calculate_hash<T: Hash>(t: &T) -> u64 { in calculate_hash() 243 // Internally, name is null-prefixed (abstract namespace) in test_abstract_uds_addr() 327 ) -> Option<SockaddrStorage> in sendrecv() 329 Fs: Fn(RawFd, &[u8], MsgFlags) -> Result<usize> + Send + 'static, in sendrecv() 403 // Disable the test under emulation because it fails in Cirrus-CI. Lack 404 // of QEMU support is suspected. 405 #[cfg_attr(qemu, ignore)] [all …]
|
| D | test_wait.rs | 13 // Safe: The child only calls `pause` and/or `_exit`, which are async-signal-safe. in test_wait_signal() 36 #[cfg(not(any(target_arch = "mips", target_arch = "mips64")))] 40 // Safe: The child only calls `pause` and/or `_exit`, which are async-signal-safe. in test_waitid_signal() 60 // Safe: Child only calls `_exit`, which is async-signal-safe. in test_wait_exit() 79 #[cfg(not(any(target_arch = "mips", target_arch = "mips64")))] 83 // Safe: Child only calls `_exit`, which is async-signal-safe. in test_waitid_exit() 144 // FIXME: qemu-user doesn't implement ptrace on most arches 155 fn ptrace_child() -> ! { in ptrace_child()
|
| /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/skia/third_party/externals/libjpeg-turbo/ |
| D | ChangeLog.md | 7 non-GCC-compatible compilers for Un*x/Arm platforms. 9 2. Fixed a regression introduced by 2.1 beta1[13] that prevented the Arm 32-bit 11 included `-mfloat-abi=softfp` or `-mfloat-abi=hard`. 15 Android systems when running AArch32/Thumb builds of libjpeg-turbo built with 18 4. Added a command-line argument (`-copy icc`) to jpegtran that causes it to 22 5. libjpeg-turbo should now build and run on CHERI-enabled architectures, which 26 64-bit SSE2 Huffman encoder when attempting to losslessly transform a 27 specially-crafted malformed JPEG image. 40 decompress a specially-crafted malformed progressive JPEG image caused the 47 4. Fixed a floating point exception (CVE-2021-20205) that occurred when [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 | 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> 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 28 <a href=https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg06430.html>quite yet</a>.)</p> [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> 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 28 <a href=https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg06430.html>quite yet</a>.)</p> [all …]
|
| /third_party/FreeBSD/ |
| D | UPDATING | 9 https://docs.freebsd.org/en/books/handbook/cutting-edge/#makeworld 16 14.1-RELEASE. 56 non-compliant MTAs; please see the first 8.18.1 release note in 89 Move standard include files to the clibs-dev package and move clang 90 internal libraries and headers to clang and clang-dev. Upgrading systems 94 pkg upgrade -y FreeBSD-utilities 95 pkg upgrade -y FreeBSD-utilities-dev 96 pkg upgrade -y 114 Following the general removal of MIPS support, the ath(4) AHB bus- 122 Out-of-tree kernel modules will need to be rebuilt. [all …]
|
| /third_party/libffi/ |
| D | ChangeLog | 3 Date: Mon Jun 28 21:10:49 2021 -0400 9 Date: Mon Jun 28 19:50:29 2021 -0400 15 Date: Mon Jun 28 18:50:31 2021 -0400 21 Date: Mon Jun 28 18:45:11 2021 -0400 27 Date: Mon Jun 28 14:59:07 2021 -0400 33 Date: Mon Jun 28 11:51:35 2021 -0700 39 Date: Mon Jun 28 07:24:19 2021 -0700 41 Fix the assertions in cls-24byte (#652) 43 * Fix the assertions in cls-24byte 49 Date: Mon Jun 28 09:53:01 2021 -0400 [all …]
|
| /third_party/libuv/ |
| D | ChangeLog | 11 * build,win: remove extraneous -lshell32 (Ben Noordhuis) 19 * test: check if ipv6 link-local traffic is routable (Ben Noordhuis) 35 * test_fs.c: Fix issue on 32-bit systems using btrfs (Stephen Gallagher) 37 * misc: ignore libuv-release-tool files (Jameson Nash) 45 * test: skip tcp-write-in-a-row on IBM i (Abdirahim Musse) 61 * unix: support full TCP keep-alive on Solaris (Andy Pan) 67 * freebsd: fix build on non-intel archs (David Carlier) 75 * build: re-enable msvc-asan job on CI (Jameson Nash) 83 * fix: always zero-terminate idna output (Ben Noordhuis) 85 * fix: reject zero-length idna inputs (Ben Noordhuis) [all …]
|
| /third_party/NuttX/ |
| D | ReleaseNotes | 14 "nuttx-6.27"). 16 NuttX-0.1.0 17 ----------- 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 52 ----------- [all …]
|
| D | README.md | 5 - Getting Help 6 - Mailing Lists 7 - Issue Tracker 8 - Source Code 9 - Website Source Code 11 - Installing Cygwin 12 - Ubuntu Bash under Windows 10 13 - Using macOS 15 - Download and Unpack 16 - Semi-Optional apps/ Package [all …]
|