Searched +full:- +full:xvjf (Results 1 – 8 of 8) sorted by relevance
/external/selinux/.circleci/ |
D | config.yml | 9 - image: circleci/python:3.6 12 - checkout 15 - run: sudo apt-get update -qq 16 …- run: sudo apt-get install -qq bison clang clang-tools flex gawk gettext libaudit-dev libcap-dev … 18 - run: 24 - run: 27 …curl --location --retry 10 -o refpolicy.tar.bz2 https://github.com/SELinuxProject/refpolicy/releas… 28 tar -xvjf refpolicy.tar.bz2 29 sed -e "s,^PREFIX :=.*,PREFIX := $DESTDIR/usr," -i refpolicy/support/Makefile.devel 30 sudo make -C refpolicy install-headers [all …]
|
/external/oss-fuzz/projects/cairo/ |
D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 FROM gcr.io/oss-fuzz-base/base-builder 17 RUN apt-get update && apt-get install -y python3-pip gtk-doc-tools libffi-dev autotools-dev libtool… 18 RUN pip3 install -U meson==0.56.0 ninja 20 RUN git clone --depth 1 git://git.sv.nongnu.org/freetype/freetype2.git 21 ADD https://ftp.gnome.org/pub/gnome/sources/glib/2.64/glib-2.64.2.tar.xz $SRC 22 RUN tar xvJf $SRC/glib-2.64.2.tar.xz 23 RUN git clone --depth 1 https://gitlab.freedesktop.org/cairo/cairo.git && \ 24 zip -q $SRC/cairo_seed_corpus.zip $SRC/cairo/test/reference/*
|
/external/oss-fuzz/projects/poppler/ |
D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 18 RUN apt-get update && apt-get install -y wget autoconf automake libtool pkg-config gperf 21 RUN git clone --depth 1 https://github.com/madler/zlib.git 22 RUN git clone --depth 1 git://git.sv.nongnu.org/freetype/freetype2.git 23 RUN git clone --depth 1 https://github.com/mm2/Little-CMS.git 24 RUN git clone --depth 1 https://github.com/uclouvain/openjpeg 25 RUN git clone --depth 1 https://github.com/glennrp/libpng.git 26 RUN git clone --depth 1 https://gitlab.freedesktop.org/fontconfig/fontconfig.git 27 RUN git clone --depth 1 https://gitlab.freedesktop.org/cairo/cairo.git [all …]
|
/external/oss-fuzz/projects/gdk-pixbuf/ |
D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 FROM gcr.io/oss-fuzz-base/base-builder 17 RUN apt-get update && apt-get install -y python3-pip gtk-doc-tools libffi-dev 20 RUN git clone --depth 1 https://gitlab.gnome.org/GNOME/gdk-pixbuf.git 21 ADD https://ftp.gnome.org/pub/gnome/sources/glib/2.64/glib-2.64.2.tar.xz $SRC 22 RUN tar xvJf $SRC/glib-2.64.2.tar.xz 24 RUN git clone --depth 1 https://github.com/glennrp/libpng.git && \ 25 git clone --depth 1 https://github.com/MozillaSecurity/fuzzdata.git && \ 27 …find $SRC/gdk-pixbuf/tests/ \( -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' \) -exec cp -v '{}… 28 find $SRC/libpng -name "*.png" | grep -v crashers | xargs cp -t corpus/ && \ [all …]
|
/external/skia/infra/bots/assets/valgrind/ |
D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 29 VALGRIND = 'valgrind-3.15.0' 32 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 48 subprocess.check_call(['tar', 'xvjf', TARBALL]) 61 subprocess.check_call(['./configure', '--prefix=%s' % INSTALL_DIR]) 73 for lib in ['memcheck-amd64-linux']: 77 libname = 'vgpreload_%s-amd64-linux.so' % lib 102 parser.add_argument('--target_dir', '-t', required=True)
|
/external/tensorflow/tensorflow/tools/ci_build/devtoolset/ |
D | build_devtoolset.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 17 # Builds a devtoolset cross-compiler targeting manylinux 2010 (glibc 2.12 / 24 devtoolset-7) 27 devtoolset-8) 31 echo "Usage: $0 {devtoolset-7|devtoolset-8} <target-directory>" 36 mkdir -p "${TARGET}" 38 wget "http://old-releases.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.12.1-0ubuntu6_amd64.deb" && \ 39 unar "libc6_2.12.1-0ubuntu6_amd64.deb" && \ 40 tar -C "${TARGET}" -xvzf "libc6_2.12.1-0ubuntu6_amd64/data.tar.gz" && \ [all …]
|
/external/selinux/.github/workflows/ |
D | run_tests.yml | 8 runs-on: ubuntu-latest 12 python-ruby-version: 13 - {python: 3.9, ruby: 2.7} 14 - {python: 3.9, ruby: 2.7, other: test-flags-override} 15 - {python: 3.9, ruby: 2.7, other: test-debug} 16 - {python: 3.9, ruby: 2.7, other: linker-bfd} 17 - {python: 3.9, ruby: 2.7, other: linker-gold} 19 - {python: 3.8, ruby: 2.7} 20 - {python: 3.7, ruby: 2.7} 21 - {python: 3.6, ruby: 2.7} [all …]
|
/external/llvm/docs/ |
D | GettingStarted.rst | 46 * ``cd where-you-want-llvm-to-live`` 47 * ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm`` 51 * ``cd where-you-want-llvm-to-live`` 53 * ``svn co http://llvm.org/svn/llvm-project/cfe/trunk clang`` 55 #. Checkout Compiler-RT (required to build the sanitizers) **[Optional]**: 57 * ``cd where-you-want-llvm-to-live`` 59 * ``svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt`` 63 * ``cd where-you-want-llvm-to-live`` 65 * ``svn co http://llvm.org/svn/llvm-project/openmp/trunk openmp`` 69 * ``cd where-you-want-llvm-to-live`` [all …]
|