Home
last modified time | relevance | path

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

123

/external/elfutils/tests/
Drun-test-includes.sh3 . $srcdir/test-subr.sh
5 echo '#include "libelf.h"' \
6 | ${CC} -c -o /dev/null -I ${abs_srcdir}/../libelf -xc -
8 | ${CC} -c -o /dev/null -I ${abs_srcdir}/../libelf -xc -
11 | ${CC} -c -o /dev/null -I ${abs_srcdir}/../libelf \
12 -I ${abs_srcdir}/../libdw -xc -
14 | ${CC} -c -o /dev/null -I ${abs_srcdir}/../libelf \
15 -I ${abs_srcdir}/../libdw -xc -
18 | ${CC} -c -o /dev/null -I ${abs_srcdir}/../libelf \
19 -I ${abs_srcdir}/../libdw -I ${abs_srcdir}/../libdwfl -xc -
[all …]
Drun-nm-self.sh18 . $srcdir/test-subr.sh
24 ET_DYN=${abs_top_builddir}/libelf/libelf.so
25 for what_arg in --debug-syms --defined-only --dynamic --extern-only; do
26 for format_arg in --format=bsd --format=sysv --format=posix; do
27 for out_arg in --numeric-sort --no-sort --reverse-sort; do
29 # --dynamic doesn't make sense for ET_REL.
30 if ! test "$what_arg" = "--dynamic" -a "$self_file" = "$ET_REL"; then
31 testrun ${abs_top_builddir}/src/nm $what_arg $format_arg $out_arg $self_file > /dev/null
Dtest-subr.sh2 # Copyright (C) 2005-2015, 2017 Red Hat, Inc.
19 # This file is sourced by ". $srcdir/test-subr.sh" at the start of
23 set -e
26 test_dir="test-$$"
27 mkdir -p "$test_dir"
38 rm -f $remove_files; cd ..; rmdir $test_dir
50 bunzip2 -c ${abs_srcdir}/${file}.bz2 > ${file} || exit 77
67 diff -u $outfile -
73 rm -f $remove_files
77 # See test-wrapper.sh, which sets the environment for this.
[all …]
/external/bcc/
DINSTALL.md3 * [Kernel Configuration](#kernel-configuration)
5 - [Debian](#debian---binary)
6 - [Ubuntu](#ubuntu---binary)
7 - [Fedora](#fedora---binary)
8 - [Arch](#arch---binary)
9 - [Gentoo](#gentoo---portage)
10 - [openSUSE](#opensuse---binary)
11 - [RHEL](#rhel---binary)
12 - [Amazon Linux 1](#amazon-linux-1---binary)
13 - [Amazon Linux 2](#amazon-linux-2---binary)
[all …]
/external/libbpf/ci/managers/
Ddebian.sh3 PHASES=(${@:-SETUP RUN RUN_ASAN CLEANUP})
4 DEBIAN_RELEASE="${DEBIAN_RELEASE:-testing}"
5 CONT_NAME="${CONT_NAME:-libbpf-debian-$DEBIAN_RELEASE}"
6 ENV_VARS="${ENV_VARS:-}"
7 DOCKER_RUN="${DOCKER_RUN:-docker run}"
8 REPO_ROOT="${REPO_ROOT:-$PWD}"
14 echo -e "\033[33;1m$1\033[0m"
18 echo -e "\033[31;1m$1\033[0m"
25 set -eu
35 docker --version
[all …]
/external/bpftool/.github/workflows/
Drelease.yaml6 - 'v[0-9]+.[0-9]+.[0-9]*'
9 group: ${{ github.workflow }}-${{ github.event.after }}
10 cancel-in-progress: true
13 # https://github.com/llvm/llvm-project/releases/tag/llvmorg-15.0.0
14 LLVM_URL_PREFIX: https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.0
15 LLVM_arm64: clang+llvm-15.0.0-aarch64-linux-gnu
16 LLVM_amd64: clang+llvm-15.0.0-x86_64-linux-gnu-rhel-8.4
21 runs-on: ubuntu-22.04
24 FILE_STRING_ARCH_amd64: x86-64
32 - name: Install dependencies (amd64)
[all …]
Dstatic-build.yaml6 - '.github/workflows/static-build.yaml'
7 - 'include/**'
8 - 'libbpf/**'
9 - 'src/**'
12 - master
15 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }}
16 cancel-in-progress: true
20 runs-on: ubuntu-22.04
22 LLVM_URL_PREFIX: https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.0
23 LLVM_PATH: clang+llvm-15.0.0-x86_64-linux-gnu-rhel-8.4
[all …]
Dbuild.yaml6 - '.github/workflows/build.yaml'
7 - 'docs/**'
8 - 'include/**'
9 - 'libbpf/**'
10 - 'src/**'
13 - master
16 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }}
17 cancel-in-progress: true
22 fail-fast: false
24 os: [ubuntu-20.04, ubuntu-22.04]
[all …]
/external/iproute2/
Dconfigure4 INCLUDE=${1:-"$PWD/include"}
10 TMPDIR=$(mktemp -d config.XXXXXX)
11 trap 'status=$?; rm -rf $TMPDIR; exit $status' EXIT HUP INT QUIT TERM
15 echo -n "$2"
16 command -v $1 >/dev/null 2>&1 && (echo "$3:=y" >> $CONFIG; echo "yes") || (echo "no"; return 1)
33 : ${PKG_CONFIG:=pkg-config}
52 $CC -I$INCLUDE -o $TMPDIR/atmtest $TMPDIR/atmtest.c -latm >/dev/null 2>&1
53 if [ $? -eq 0 ]
60 rm -f $TMPDIR/atmtest.c $TMPDIR/atmtest
65 if ! ${PKG_CONFIG} xtables --exists
[all …]
/external/bpftool/
DDockerfile2 # $ docker build -f Dockerfile -t bpftool .
4 # $ docker run --rm -ti --privileged --pid=host bpftool prog
12 apt-get update && \
13 apt-get -y install --no-install-recommends \
14 build-essential \
15 libelf-dev \
16 libz-dev \
17 libcap-dev \
18 clang llvm llvm-dev lld \
19 binutils-dev \
[all …]
/external/libbpf/.github/actions/build-selftests/
Daction.yml1 name: 'build-selftests'
4 repo-path:
19 - shell: bash
23 …sudo apt-get install -y qemu-kvm zstd binutils-dev elfutils libcap-dev libelf-dev libdw-dev python…
25 - shell: bash
29 export REPO_PATH="${{ inputs.repo-path }}"
/external/oss-fuzz/projects/frr/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder
19 RUN apt-get update && apt-get install -y git autoconf automake libtool make \
20 libreadline-dev texinfo libjson-c-dev pkg-config bison flex python3-pip \
21 libc-ares-dev python3-dev python3-sphinx build-essential libsystemd-dev \
22 libsnmp-dev libcap-dev libelf-dev libpcre3-dev libpcre2-dev
26 RUN git clone --depth 1 --branch fuzz https://github.com/FRRouting/frr
28 RUN git clone --depth 1 https://github.com/qlyoung/corpi
/external/libbpf/.github/actions/setup/
Daction.yml6 - id: variables
14 echo sudo apt-get update >> /tmp/ci_setup
15 …echo sudo apt-get install -y aptitude qemu-kvm zstd binutils-dev elfutils libcap-dev libelf-dev li…
17 echo export AUTHOR_EMAIL="$(git log -1 --pretty=\"%aE\")" >> /tmp/ci_setup
/external/mesa3d/.gitlab-ci/container/debian/
Darm64_build.sh4 set -e
5 set -o xtrace
9 apt-get -y install ca-certificates
10 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/*
11 …b.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" |…
12 apt-get update
16 libssl-dev
20 apt-utils
21 android-libext4-utils
30 flatbuffers-compiler
[all …]
Dx86_64_build-base.sh5 # .gitlab-ci/image-tags.yml tags:
8 set -e
9 set -o xtrace
14 apt-get install -y ca-certificates
15 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/*
16 …b.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" |…
24 apt-utils
28 "clang-${LLVM_VERSION}"
29 "clang-format-${LLVM_VERSION}"
30 dpkg-cross
[all …]
Dx86_64_test-base.sh5 # .gitlab-ci/image-tags.yml tags:
8 set -e
9 set -o xtrace
13 apt-get install -y ca-certificates gnupg2 software-properties-common
15 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/*
17 …b.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" |…
30 "clang-${LLVM_VERSION}"
32 glslang-tools
34 libasound2-dev
35 libcap-dev
[all …]
/external/stg/
DDockerfile1 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3 # Copyright 2022-2023 Google LLC
20 ARG debian_version=stable-slim
22 # docker build -t stg .
23 RUN apt-get update && \
24 apt-get install -y \
25 build-essential \
26 pkg-config \
28 libelf-dev \
29 libdw-dev \
[all …]
DREADME.md1 # Symbol-Type Graph (STG)
3 The STG (symbol-type graph) is an ABI representation and this
26 | ---------------- | ----------------------------------------------------- |
27 | Arch Linux (AUR) | [stg-git](https://aur.archlinux.org/packages/stg-git) |
44 | ------------- | ----------------- | ----------------- | --------- |
46 | ELF, BTF | libelf-dev | elfutils-devel | 0.189 |
47 | DWARF | libdw-dev | elfutils-devel | 0.189 |
48 | XML | libxml2-dev | libxml2-devel | 2.9 |
49 | BTF | linux-libc-dev | kernel-headers | 5.19 |
50 | native format | libprotobuf-dev | protobuf-devel | 3.19 |
[all …]
/external/bcc/debian/
Dcontrol5 Standards-Version: 3.9.5
6 Build-Depends: debhelper (>= 9), cmake,
8 llvm-9-dev | llvm-8-dev | llvm-6.0-dev | llvm-3.8-dev [!arm64] | llvm-3.7-dev [!arm64],
9 …libclang-9-dev | libclang-8-dev | libclang-6.0-dev | libclang-3.8-dev [!arm64] | libclang-3.7-dev
10 …clang-format-9 | clang-format-8 | clang-format-6.0 | clang-format-3.8 [!arm64] | clang-format-3.7 …
11 libelf-dev, bison, flex, libfl-dev, libedit-dev, zlib1g-dev, git,
12 python (>= 2.7), python-netaddr, python-pyroute2 | python3-pyroute2, luajit,
13 libluajit-5.1-dev, arping, inetutils-ping | iputils-ping, iperf, netperf,
14 ethtool, devscripts, python3, dh-python
15 # add 'libdebuginfod-dev' to Build-Depends for libdebuginfod support
[all …]
/external/elfutils/config/
Delfutils.spec.in1 # -*- rpm-spec-*-
7 Source: ftp://sourceware.org/pub/elfutils/%{version}/elfutils-%{version}.tar.bz2
10 Requires: elfutils-libelf = %{version}-%{release}
11 Requires: elfutils-libs = %{version}-%{release}
13 Requires: elfutils-debuginfod-client = %{version}-%{release}
17 BuildRequires: gcc-c++
24 BuildRequires: zlib-devel
25 BuildRequires: bzip2-devel
26 BuildRequires: xz-devel
27 BuildRequires: libzstd-devel
[all …]
/external/bcc/docker/build/
DDockerfile.ubuntu15 RUN apt-get update && apt-get install -y curl gnupg &&\
17 deb http://apt.llvm.org/${SHORTNAME}/ llvm-toolchain-${SHORTNAME} main\n\
18 deb-src http://apt.llvm.org/${SHORTNAME}/ llvm-toolchain-${SHORTNAME} main\n\
19 deb http://apt.llvm.org/${SHORTNAME}/ llvm-toolchain-${SHORTNAME}-${LLVM_VERSION} main\n\
20 deb-src http://apt.llvm.org/${SHORTNAME}/ llvm-toolchain-${SHORTNAME}-${LLVM_VERSION} main\n" &&\
22 curl -L https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
27 RUN apt-get update && apt-get install -y \
28 util-linux \
30 binutils-dev \
37 libelf-dev \
[all …]
/external/mesa3d/.gitlab-ci/container/
Dcross_build.sh4 set -e
5 set -o xtrace
15 "crossbuild-essential-$arch"
18 "libdrm-dev:$arch"
19 "libelf-dev:$arch"
20 "libexpat1-dev:$arch"
21 "libffi-dev:$arch"
22 "libpciaccess-dev:$arch"
24 "libvulkan-dev:$arch"
25 "libx11-dev:$arch"
[all …]
/external/rust/crates/smallvec/.github/workflows/
Dmain.yml17 os: [ubuntu-latest]
19 - toolchain: stable
21 - toolchain: beta
23 - os: windows-latest
26 runs-on: ${{ matrix.os }}
29 - uses: actions/checkout@v4
31 - name: Install packages for fuzzing
33 … sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-de…
35 - name: Install toolchain
36 uses: dtolnay/rust-toolchain@master
[all …]
/external/crosvm/e2e_tests/guest_under_test/
Dinstall_build_deps.sh3 # Use of this source code is governed by a BSD-style license that can be
8 set -e
11 gcc-aarch64-linux-gnu \
12 qemu-user-static \
13 squashfs-tools-ng \
14 libelf-dev \
19 binfmt-support
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.rocm9 ARG ROCM_PATH=/opt/rocm-5.1.0
14 RUN apt-get --allow-unauthenticated update && apt install -y wget software-properties-common
17 RUN apt-get clean all
18 RUN wget -qO - https://repo.radeon.com/rocm/rocm.gpg.key | apt-key add -;
19 RUN bin/bash -c 'if [[ $ROCM_DEB_REPO == https://repo.radeon.com/rocm/* ]] ; then \
26 RUN apt-get update --allow-insecure-repositories && DEBIAN_FRONTEND=noninteractive apt-get install
27 build-essential \
29 clang-6.0 \
30 clang-format-6.0 \
31 clang-tidy-6.0 \
[all …]

123