Searched +full:libabigail +full:- +full:fedora +full:- +full:base (Results 1 – 9 of 9) sorted by relevance
| /external/libabigail/ |
| D | README-DOCKER.md | 1 # Libabigail Docker 3 Libabigail comes with two Dockerfile in [docker](docker) to build each of: 5 - a Fedora base image (recommended) 6 - an Ubuntu base image. 18 $ docker build -f docker/Dockerfile.fedora -t ghcr.io/woodard/libabigail-fedora . 21 $ docker build -f docker/Dockerfile.ubuntu -t ghcr.io/woodard/libabigail-ubuntu-22.04 . 24 Note that currently the fedora image is deployed to `ghcr.io/woodard/libabigail:latest`. 31 $ docker run -it ghcr.io/woodard/libabigail-ubuntu-22.04 bash 38 /opt/abigail-env/.spack-env/view/bin/abidiff 41 Since the ubuntu base uses spack, you can interact with spack. [all …]
|
| D | NEWS | 4 Ben Woodard via Libabigail (5): 7 Bug 27512 - Remove broken zip-archive support 12 configure: add --enable-rpm415 option 13 Add check-self-compare to release regression testing 16 Add has-spdx-header.sh script 17 Add replace-spdx-license.sh script 18 Add helper files to perform the re-licensing 19 Re-license the project to Apache v2 With LLVM Exception 22 Add a license-change-2020.txt file 25 Use C++11 for the code base [all …]
|
| D | ChangeLog | 1 2021-10-04 Dodji Seketeli <dodji@redhat.com> 6 2021-09-23 Dodji Seketeli <dodji@redhat.com> 8 Bug 27086 - Consider all C++ virtual destructors when there are many 9 * src/abg-dwarf-reader.c (build_or_get_fn_decl_if_not_suppressed): 10 Do not try to re-use a virtual destructor of a class, based on its 13 * tests/data/test-types-stability/PR27086-libstdc++.so.6.0.26: 17 * tests/test-types-stability.cc (elf_paths): Add the test input 20 2021-09-23 Dodji Seketeli <dodji@redhat.com> 22 dwarf-reader: Indent 23 * src/abg-dwarf-reader.cc (finish_member_function_reading): Fix [all …]
|
| /external/libabigail/.github/workflows/ |
| D | build-container.yaml | 5 # Always have a base image ready to go - this is a nightly build 7 - cron: 0 3 * * * 18 - develop 32 fail-fast: false 35 # Dockerfiles to build, container names to use, and to tag as libabigail:latest? 36 container: [["Dockerfile.fedora", "ghcr.io/woodard/libabigail-fedora", true], 37 ["Dockerfile.ubuntu", "ghcr.io/woodard/libabigail-ubuntu-22.04", false], 38 ["Dockerfile.fedora-base", "ghcr.io/woodard/libabigail-fedora-base", false]] 40 runs-on: ubuntu-latest 43 - name: Checkout [all …]
|
| /external/libabigail/docker/ |
| D | Dockerfile.fedora | 1 FROM ghcr.io/woodard/libabigail-fedora-base as builder 3 # docker build -f docker/Dockerfile.fedora -t ghcr.io/woodard/libabigail-fedora . 8 RUN mkdir -p build && \ 9 autoreconf -i && \ 11 CXXFLAGS="-g3 -fvar-tracking-assignments \ 12 -gstatement-frontiers -gvariable-location-views -grecord-gcc-switches -pipe -Wall \ 13 -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -Wp,-D_GLIBCXX_ASSERTIONS \ 14 -fstack-protector-strong -fstack-clash-protection -fcf-protection \ 15 -fasynchronous-unwind-tables -O2" CFLAGS="-g3 -fvar-tracking-assignments \ 16 -gstatement-frontiers -gvariable-location-views -grecord-gcc-switches -pipe -Wall \ [all …]
|
| D | Dockerfile.fedora-base | 3 FROM fedora:${fedora_version} as builder 5 # docker build -f docker/Dockerfile.fedora-base -t ghcr.io/woodard/libabigail-fedora-base . 7 RUN dnf install -y \ 11 elfutils-devel \ 12 gcc-c++ \ 15 libxml2-devel \ 16 python3-koji \ 17 python3-mock \ 18 python3-pyxdg \ 19 shared-mime-info \
|
| D | Dockerfile.test | 1 FROM ghcr.io/woodard/libabigail-fedora-base 3 # docker build -f docker/Dockerfile.test -t test . 5 RUN dnf install -y \ 9 elfutils-libs 14 RUN mkdir -p build && \ 15 autoreconf -i && \ 17 CXXFLAGS="-g3 -fvar-tracking-assignments \ 18 -gstatement-frontiers -gvariable-location-views -grecord-gcc-switches -pipe -Wall \ 19 -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -Wp,-D_GLIBCXX_ASSERTIONS \ 20 -fstack-protector-strong -fstack-clash-protection -fcf-protection \ [all …]
|
| /external/libabigail/doc/manuals/ |
| D | conf.py | 1 # -*- coding: utf-8 -*- 3 # Libabigail manuals documentation build configuration file, created by 4 # sphinx-quickstart on Fri Sep 26 09:50:31 2014. 21 # -- General configuration ----------------------------------------------------- 37 #source_encoding = 'utf-8-sig' 43 project = u'Libabigail' 44 copyright = u'2014-2022, Red Hat, Inc.' 60 # non-false value, then it is used: 72 # If true, '()' will be appended to :func: etc. cross-reference text. 90 # -- Options for HTML output --------------------------------------------------- [all …]
|
| /external/libabigail/src/ |
| D | abg-tools-utils.cc | 1 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 2 // -*- Mode: C++ -*- 4 // Copyright (C) 2013-2021 Red Hat, Inc. 46 #include "abg-dwarf-reader.h" 48 #include "abg-ctf-reader.h" 50 #include "abg-internal.h" 51 #include "abg-regex.h" 53 // <headers defining libabigail's API go under here> 56 #include <abg-ir.h> 57 #include "abg-config.h" [all …]
|