Searched +full:apt +full:- +full:get (Results 1 – 25 of 36) sorted by relevance
12
3 RUN apt-get update && apt-get install -y \4 apt-transport-https \5 ca-certificates \7 software-properties-common \11 RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor -…12 RUN apt-add-repository -y 'deb https://apt.kitware.com/ubuntu/ bionic main'15 RUN apt-get update && apt-get install -y \18 python3=3.6.7-1~18.04 \19 python3-pip=9.0.1-2.3* \21 cmake-data=3.20.5* \[all …]
7 - compiler: gcc9 apt:11 - lcov13 - compiler: gcc15 apt:17 - g++-multilib18 - libc6:i38620 - COMPILER=g++21 - C_COMPILER=gcc22 - BUILD_TYPE=Debug[all …]
1 # ===----------[all...]
4 "name": "%s-clang" % arch,10 …"apt-get update && apt-get install -y clang-8 cmake ninja-build lld-8 llvm-8-dev libc++-8-dev libc…11 … "git clone --depth=1 -b f18 https://github.com/flang-compiler/f18-llvm-project.git llvm-project",12 "mkdir llvm-project/build && cd llvm-project/build",13 …-8 CXX=clang++-8 CXXFLAGS="-stdlib=libc++" LDFLAGS="-fuse-ld=lld" cmake -GNinja -DCMAKE_BUILD_TYPE…17 …-8 CXX=clang++-8 CXXFLAGS="-UNDEBUG -stdlib=libc++" LDFLAGS="-fuse-ld=lld" cmake -GNinja -DCMAKE_B…18 "ninja -j8",19 "ctest --output-on-failure -j24",20 "ninja check-all",30 "name": "%s-gcc" % arch,[all …]
4 RUN dpkg --add-architecture i3865 RUN apt-get update && apt-get install -y build-essential clang subversion git \6 vim zip libstdc++6:i386 file binutils-dev binutils-gold cmake python-pip \7 ninja-build python38 RUN python -m pip install buildbot-worker==2.8.411 RUN apt-get install -y libmpfr-dev libmpc-dev14 RUN update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 2017 RUN useradd buildbot --create-home26 ENV WORKER_NAME="libc-x86_64-debian"29 RUN mkdir -p "${WORKER_NAME}/info/"[all …]
6 RUN apt-get update && \7 apt-get install -y --no-instal[all...]
1 #===- llvm/utils/docker/nvidia-cuda/build/Dockerfile --------[all...]
3 set -e7 echo -e "Creates a Ubuntu root file system image.\n"8 echo -e " --help\t\t\tDisplay this information."9 echo -e " --arch {armhf|arm64}\t\tSelects architecture of rootfs image."10 echo -e " --distro {bionic|focal}\tSelects Ubuntu distribution of rootfs image."11 echo -e " --size n{K|M|G}\t\tSets size of rootfs image to n Kilo, Mega or Giga bytes."21 echo -e "\nUpdating apt repositories. "22 echo -e "\nPress 'y' to continue or any other key to exit..."23 read -s -n 1 user_input25 sudo apt update[all …]
9 release-version:20 release-version:34 release-doxygen:36 runs-on: ubuntu-latest40 upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }}42 - name: Checkout LLVM45 - name: Setup Python env46 uses: actions/setup-python@v549 cache-dependenc[all...]
9 release-version:16 release-version:26 release-lit:28 runs-on: ubuntu-latest30 - name: Checkout LLVM33 ref: "llvmorg-${{ inputs.release-version }}"35 - name: Install dependencies37 sudo apt[all...]
9 release-version:20 release-version:30 release-documentation:32 runs-on: ubuntu-latest34 upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }}36 - name: Checkout LLVM39 - name: Setup Python env40 uses: actions/setup-python@v543 cache-dependenc[all...]
9 # The regex support here is limited, so just match everything that starts with llvmorg- and filter later.10 - 'llvmorg-*'13 validate-tag:15 runs-on: ubuntu-latest16 if: github.repository == 'llvm/llvm-project'18 release-version: ${{ steps.validate-tag.outputs.release-versio[all...]
10 - 'release/**'12 - 'clang/**'13 - '.github/workflows/libclang-abi-tests.yml'16 - 'release/**'18 - 'clang/**'19 - '.github/workflows/libclang-abi-test[all...]
10 - 'release/**'12 - 'llvm/**'13 - '.github/workflows/llvm-tests.yml'14 - '.github/workflows/llvm-project-tests.yml'17 - 'release/**'19 - 'llvm/**'20 - '[all...]
4 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception14 - 'main'16 - 'llvm/docs/**'17 - 'clang/docs/**'18 - 'clang/include/clang/Basic/AttrDocs.td'19 - 'clang/include/clang/Driver/ClangOptionDocs.td'20 - 'clan[all...]
1 #===- llvm/tools/clang/tools/clang-fuzzer ---------------------------------===//5 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7 #===----------------------------------------------------------------------===//8 # Produces an image that builds clang-proto-fuzzer10 RUN apt-get update -y11 RUN apt-get install -y autoconf automake libtool curl make g++ unzip wget git \12 binutils liblzma-dev libz-dev python-all cmake ninja-build subversion \13 pkg-config docbook2x17 # Get protobuf18 RUN wget -qO- https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-cpp-3.3.0.tar.gz…[all …]
3 Clangd uses a global index for project-wide code completion, navigation and18 tools you will need to set this CMake flag — `-DCLANGD_ENABLE_REMOTE=On`.20 ### System-installed libraries22 On Debian-like systems gRPC and Protobuf can be installed from apt:25 apt install libgrpc++-dev libprotobuf-dev protobuf-compiler-grpc37 # Get source code.38 $ git clone -b v1.36.3 https://github.com/grpc/grpc40 $ git submodule update --init45 $ cmake -DgRPC_INSTALL=ON -DCMAKE_INSTALL_PREFIX=${GRPC_INSTALL_PATH} -DCMAKE_BUILD_TYPE=Release ..52 By default, CMake will look for system-installed libraries when building remote[all …]
1 //===- ProfDataUtils.cpp - Utility functions for MD_prof Metadata --------265 APInt APS(128, S), APT(128, T); scaleProfData() local [all...]
4 - LLVM IR files (.ll) syntax highlighting.6 - TableGen files (.td) syntax highlighting.8 - PatternMatchers for LIT test output.9 (`$llvm-lit`, `$llvm-filecheck`)10 - Tasks to run LIT on current selected file.11 (`Terminal` -> `Run Task` -> `llvm-lit`)16 sudo apt-get install nodejs-dev node-gyp npm17 sudo npm install -g typescript npx vsce22 cd <extensions-installation-folder>23 cp -r llvm/utils/vscode/llvm .[all …]
1 <a name="perf-counters" />3 # User-Requested Performance Counters6 performance counters. This may be useful in investigation scenarios - narrowing21 To opt-in:22 * If using a Bazel build, add `--define pfm=1` to your build flags24 * Install `libpfm4-dev`, e.g. `apt-get install libpfm4-dev`.27 To use, pass a comma-separated list of counter names through the28 `--benchmark_perf_counters` flag. The names are decoded through libpfm - meaning,30 mapped by libpfm to platform-specifics - see libpfm33 The counter values are reported back through the [User Counters](../README.md#custom-counters)
8 `schedule <https://llvm.org/docs/HowToReleaseLLVM.html#annual-release-schedule>`__.25 However this should be verified so removals won't get forgotten.60 available on `<https://apt.llvm.org>`_. Once it is available the pre-commit CI67 The items that need changing are marked with ``LLVM POST-BRANCH``.74 Support for the ToT - 3 version is removed:76 - Search for ``LLVM RELEASE`` and address their comments77 - Search for test that have ``UNSUPPORTED`` or ``XFAIL`` for the no longer supported version78 - Search for ``TODO(LLVM-<ToT>)`` and address their comments