Skip to content

Instantly share code, notes, and snippets.

@julian-klode
Last active June 12, 2024 17:29
Show Gist options
  • Save julian-klode/4cd25443ea5013db5981a45bf7b42118 to your computer and use it in GitHub Desktop.
Save julian-klode/4cd25443ea5013db5981a45bf7b42118 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# Invoke me as
set -e
set -u
set -o pipefail
if [ "$0" != "/analyse.sh" ]; then
test -e /usr/bin/docker && docker=docker
test -e /usr/bin/podman && docker=podman
if ! test "$docker"; then
echo "Cannot find docker/podman" >&2
exit 1
fi
touch log
$docker run --rm -v $PWD/analyse.sh:/analyse.sh -v $PWD/log:/log docker.io/ubuntu:noble /analyse.sh pkgnames | shuf | parallel -N1 -j100% --line-buffer $docker run -i --rm -v $PWD/dwprod.py:/dwprod.py -v $PWD/lock:/lock -v $PWD/analyse.sh:/analyse.sh docker.io/ubuntu:noble /analyse.sh "$@" | while read line; do
case "$line" in
status*)
echo "$line" | cut -f2- -d" " >&2
;;
log*)
echo "$line" | cut -f2- -d" " >> log
;;
*)
echo "Unknown line: $line" >&2
;;
esac
done
exit
fi
pkgnames() {
/usr/lib/apt/apt-helper cat-file /var/lib/apt/lists/*_main_*amd64*Packages* | awk '/^Package:/ {print $2}' | grep -v -- -dbgsym$ | grep -v ^linux- | sort -u
}
dofile() {
pkg="$1"
file="$2"
if test -h "$file" || ! test -f "$file"; then
return 0
elif ! $readelf -h "$file" &>/dev/null; then
return 0 #echo "$pkg $file not-elf" >> log
else
echo "log $pkg $file elf"
if ! getproducers "$file"; then
echo "log $pkg $file crash"
fi
fi
}
case "$1" in
pkgnames)
http_proxy=http://host.containers.internal:8000 apt-get update -qq &>/dev/null
comm -23 <(pkgnames) <(awk '/ done$/ {print $1}' log | sort -u)
exit $?;;
srcnames)
http_proxy=http://host.containers.internal:8000 apt-get update -qq &>/dev/null
/usr/lib/apt/apt-helper cat-file /var/lib/apt/lists/*_main_*amd64*Packages* | awk '/^Package:/ {pkg=src=$2} /^Source:/ {src=$2} /^$/ {print pkg" "src;}'
exit $?;;
--llvm)
getproducers()
{
buildid=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p')
debug=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p' | sed -r 's^(..)(.*)^/usr/lib/debug/.build-id/\1\/\2.debug^')
if ! test -e $debug; then
echo "log $pkg $1 no-dbgsym"
return 0
fi
if test -z $debug; then
echo "log $pkg $1 using-binary"
debug="$1"
fi
llvm-dwarfdump "$debug" | sed -nr 's/\s*producer\s.*"(.*)".*/\1/p' | sort -u | sed "s#^#log $pkg $file produced-by #"
}
pkgs="elfutils file llvm"
readelf="eu-readelf"
shift;;
--eu)
getproducers()
{
buildid=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p')
debug=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p' | sed -r 's^(..)(.*)^/usr/lib/debug/.build-id/\1\/\2.debug^')
if [ "$buildid" ] && ! test -e $debug; then
dbg=$(/usr/lib/apt/apt-helper cat-file /var/lib/apt/lists/*Packages* | grep-dctrl -nsPackage -FBuild-IDs $buildid | xargs)
if [ "$dbg" ]; then
echo "status Found additional debug symbol for $pkg:$1: $dbg"
DEBIAN_FRONTEND=noninteractive eatmydata chronic apt install -y -qq $dbg | sed 's#^#status #'
else
echo "status Could not find additional debug symbol for $pkg:$1: $buildid in $debug"
fi
fi
if ! test -e $debug; then
echo "log $pkg $1 no-dbgsym"
return 0
fi
if test -z $debug; then
echo "log $pkg $1 using-binary"
debug="$1"
if echo "$1" | grep -q "\.ko\.zst$"; then
# kernel modules we can't analyse, skip them here (this is filtered by file extension in report.py)
echo "log $pkg $1 crash"
return 0
fi
fi
eu-readelf -winfo "$debug" | sed -nr 's/\s*producer\s.*"(.*)".*/\1/p' | sort -u | sed "s#^#log $pkg $file produced-by #"
}
pkgs="elfutils file"
readelf="eu-readelf"
shift;;
--py)
getproducers()
{
buildid=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p')
debug=$(file "$1" | sed -nr 's/.*BuildID[^=]*=([a-f0-9]*).*/\1/p' | sed -r 's^(..)(.*)^/usr/lib/debug/.build-id/\1\/\2.debug^')
if [ "$buildid" ] && ! test -e $debug; then
dbg=$(/usr/lib/apt/apt-helper cat-file /var/lib/apt/lists/*Packages* | grep-dctrl -nsPackage -FBuild-IDs $buildid | xargs)
if [ "$dbg" ]; then
echo "status Found additional debug symbol for $pkg:$1: $dbg"
DEBIAN_FRONTEND=noninteractive eatmydata chronic apt install -y -qq $dbg | sed 's#^#status #'
else
echo "status Could not find additional debug symbol for $pkg:$1: $buildid in $debug"
fi
fi
if ! test -e $debug; then
echo "log $pkg $1 no-dbgsym"
return 0
fi
if test -z $debug; then
echo "log $pkg $1 using-binary"
debug="$1"
if echo "$1" | grep -q "\.ko\.zst$"; then
# kernel modules we can't analyse, skip them here (this is filtered by file extension in report.py)
echo "log $pkg $1 crash"
return 0
fi
fi
/dwprod.py "$debug" | sort -u | sed "s#^#log $pkg $file produced-by #"
}
pkgs="elfutils python3-pyelftools file"
readelf="eu-readelf"
shift;;
*)
echo "status Unknown mode: $1" >&2
exit 1;
esac
export SUDO_FORCE_REMOVE=yes
echo "status Preparing system..."
# Speed it up
echo force-unsafe-io >> /etc/dpkg/dpkg.cfg
# Kernels need to be removable.
rm /etc/apt/apt.conf.d/01autoremove
http_proxy=http://host.containers.internal:8000 DEBIAN_FRONTEND=noninteractive apt install dctrl-tools eatmydata moreutils $pkgs ubuntu-dbgsym-keyring -qq -y -U --no-install-recommends parallel &>apt.log || cat apt.log
# We need to add oracular debug symbols, and pin them down - some are missing in noble...
cat >> /etc/apt/sources.list.d/ubuntu.sources << EOF
Types: deb
URIs: http://ddebs.ubuntu.com/ubuntu/
Suites: noble noble-updates oracular
Components: main universe
Signed-By: /usr/share/keyrings/ubuntu-dbgsym-keyring.gpg
EOF
cat >> /etc/apt/preferences.d/oracular << EOF
Package: *
Pin: release oracular
Pin-Priority: 1
EOF
http_proxy=http://host.containers.internal:8000 chronic apt update | sed 's#^#status #'
echo "status Running..."
echo "status Arguments: $@"
for pkg in "$@"; do
echo "status analyze $pkg"
repkg=$(echo "$pkg" | sed 's#+#\\+#g' | sed 's#t64#(t64)?#' | sed 's#-dev$#(-dev)?#g')
for i in 1 2 3 4 5; do
if xhttp_proxy=http://host.containers.internal:8000 DEBIAN_FRONTEND=noninteractive \
eatmydata apt install --auto-remove -y -qq $pkg "?name(\"^$repkg-dbgsym$\")?archive(noble)" "?name(\"^$repkg-dbg$\")?archive(noble)" --no-install-recommends 2>&1 | sed 's#^#status #' > apt.log; then
rm apt.log
elif grep -q 429 apt.log; then
sleep $((1 << i))
fi
done
if test -e apt.log; then
cat apt.log
continue
fi
dpkg -L $pkg | grep -v "^/usr/lib/debug/" | while read file; do
dofile "$pkg" "$file"
done
echo "log $pkg done"
eatmydata chronic apt-mark auto "$pkg" "?name(\"^$repkg-dbgsym$\")" "?name(\"^$repkg-dbg$\")" 2>&1 | sed 's#^#status #'
eatmydata chronic apt-mark manual eatmydata moreutils $pkgs ubuntu-dbgsym-keyring parallel 2>&1 | sed 's#^#status #'
done
#!/usr/bin/python3
import os
import sys
from elftools.elf.elffile import ELFFile
from elftools.elf.sections import NoteSection
def open_file(filename):
elffile = ELFFile.load_from_path(filename)
for sect in elffile.iter_sections():
if sect.name != ".note.gnu.build-id":
continue
for note in sect.iter_notes():
build_id = note["n_desc"]
debug_file = f"/usr/lib/debug/.build-id/{build_id[:2]}/{build_id[2:]}.debug"
if debug_file != filename:
return ELFFile.load_from_path(debug_file)
return elffile
def process_file(filename):
elffile = open_file(filename)
dwarfinfo = elffile.get_dwarf_info(follow_links=True)
for CU in dwarfinfo.iter_CUs():
die = CU.get_top_DIE()
if "DW_AT_producer" not in die.attributes:
continue
print(
die.attributes["DW_AT_producer"].value.decode("utf-8")
)
if __name__ == "__main__":
for filename in sys.argv[1:]:
process_file(filename)
This file has been truncated, but you can view the full file.
accountsservice /usr/libexec/accounts-daemon elf
accountsservice /usr/libexec/accounts-daemon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
accountsservice /usr/libexec/accounts-daemon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
accountsservice /usr/libexec/accounts-daemon produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
accountsservice done
acct /usr/bin/ac elf
acct /usr/bin/ac produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/bin/ac produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/bin/ac produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct /usr/bin/lastcomm elf
acct /usr/bin/lastcomm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/bin/lastcomm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/bin/lastcomm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct /usr/sbin/accton elf
acct /usr/sbin/accton produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/accton produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct /usr/sbin/dump-acct elf
acct /usr/sbin/dump-acct produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/dump-acct produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/dump-acct produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct /usr/sbin/dump-utmp elf
acct /usr/sbin/dump-utmp produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/dump-utmp produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/dump-utmp produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct /usr/sbin/sa elf
acct /usr/sbin/sa produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/sa produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acct /usr/sbin/sa produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
acct done
acl /usr/bin/chacl elf
acl /usr/bin/chacl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acl /usr/bin/chacl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
acl /usr/bin/getfacl elf
acl /usr/bin/getfacl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acl /usr/bin/getfacl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acl /usr/bin/getfacl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
acl /usr/bin/setfacl elf
acl /usr/bin/setfacl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acl /usr/bin/setfacl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acl /usr/bin/setfacl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
acl done
acpid /usr/bin/acpi_listen elf
acpid /usr/bin/acpi_listen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acpid /usr/bin/acpi_listen produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -ffat-lto-objects -fltrans
acpid /usr/sbin/acpid elf
acpid /usr/sbin/acpid produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
acpid /usr/sbin/acpid produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -ffat-lto-objects -fltrans
acpid done
adcli /usr/sbin/adcli elf
adcli /usr/sbin/adcli produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
adcli /usr/sbin/adcli produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
adcli /usr/sbin/adcli produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
adcli done
adduser done
adsys /lib/x86_64-linux-gnu/security/pam_adsys.so elf
adsys /lib/x86_64-linux-gnu/security/pam_adsys.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
adsys /lib/x86_64-linux-gnu/security/pam_adsys.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
adsys /sbin/adsysd elf
adsys /sbin/adsysd produced-by GNU AS 2.42
adsys /sbin/adsysd produced-by GNU C17 13.2.0
adsys /sbin/adsysd produced-by Go cmd/compile go1.22.1; -shared regabi
adsys done
advancecomp /usr/bin/advdef elf
advancecomp /usr/bin/advdef produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advdef produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advdef produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
advancecomp /usr/bin/advmng elf
advancecomp /usr/bin/advmng produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advmng produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advmng produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
advancecomp /usr/bin/advpng elf
advancecomp /usr/bin/advpng produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advpng produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advpng produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
advancecomp /usr/bin/advzip elf
advancecomp /usr/bin/advzip produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advzip produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
advancecomp /usr/bin/advzip produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
advancecomp done
adwaita-icon-theme done
aide /usr/bin/aide elf
aide /usr/bin/aide produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
aide /usr/bin/aide produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIE -ffat-lto-objects -fltrans
aide done
aide-common done
alembic done
alsa-base done
alsa-topology-conf done
alsa-ucm-conf done
alsa-utils /usr/bin/aconnect elf
alsa-utils /usr/bin/aconnect produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/aconnect produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/alsabat elf
alsa-utils /usr/bin/alsabat produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/alsabat produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/alsaloop elf
alsa-utils /usr/bin/alsaloop produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/alsaloop produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/alsamixer elf
alsa-utils /usr/bin/alsamixer produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/alsamixer produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/alsatplg elf
alsa-utils /usr/bin/alsatplg produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/alsatplg produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/alsaucm elf
alsa-utils /usr/bin/alsaucm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/alsaucm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/amidi elf
alsa-utils /usr/bin/amidi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/amidi produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/amixer elf
alsa-utils /usr/bin/amixer produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/amixer produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/aplay elf
alsa-utils /usr/bin/aplay produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/aplay produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/aplaymidi elf
alsa-utils /usr/bin/aplaymidi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/aplaymidi produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/arecordmidi elf
alsa-utils /usr/bin/arecordmidi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/arecordmidi produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/aseqdump elf
alsa-utils /usr/bin/aseqdump produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/aseqdump produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/aseqnet elf
alsa-utils /usr/bin/aseqnet produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/aseqnet produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/axfer elf
alsa-utils /usr/bin/axfer produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/axfer produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/iecset elf
alsa-utils /usr/bin/iecset produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/iecset produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/bin/speaker-test elf
alsa-utils /usr/bin/speaker-test produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/bin/speaker-test produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils /usr/lib/x86_64-linux-gnu/alsa-topology/libalsatplg_module_nhlt.so elf
alsa-utils /usr/lib/x86_64-linux-gnu/alsa-topology/libalsatplg_module_nhlt.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fvisibility=hidden -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/lib/x86_64-linux-gnu/alsa-topology/libalsatplg_module_nhlt.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
alsa-utils /usr/sbin/alsactl elf
alsa-utils /usr/sbin/alsactl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
alsa-utils /usr/sbin/alsactl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
alsa-utils done
amavisd-new done
amd64-microcode done
anacron /usr/sbin/anacron elf
anacron /usr/sbin/anacron produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anacron /usr/sbin/anacron produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
anacron done
anope /usr/lib/anope/modules/bahamut.so elf
anope /usr/lib/anope/modules/bahamut.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bahamut.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/botserv.so elf
anope /usr/lib/anope/modules/botserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/botserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_assign.so elf
anope /usr/lib/anope/modules/bs_assign.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_assign.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_autoassign.so elf
anope /usr/lib/anope/modules/bs_autoassign.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_autoassign.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_badwords.so elf
anope /usr/lib/anope/modules/bs_badwords.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_badwords.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_bot.so elf
anope /usr/lib/anope/modules/bs_bot.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_bot.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_botlist.so elf
anope /usr/lib/anope/modules/bs_botlist.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_botlist.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_control.so elf
anope /usr/lib/anope/modules/bs_control.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_control.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_info.so elf
anope /usr/lib/anope/modules/bs_info.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_kick.so elf
anope /usr/lib/anope/modules/bs_kick.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_kick.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/bs_set.so elf
anope /usr/lib/anope/modules/bs_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/bs_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/chanserv.so elf
anope /usr/lib/anope/modules/chanserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/chanserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/charybdis.so elf
anope /usr/lib/anope/modules/charybdis.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/charybdis.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_access.so elf
anope /usr/lib/anope/modules/cs_access.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_access.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_akick.so elf
anope /usr/lib/anope/modules/cs_akick.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_akick.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_ban.so elf
anope /usr/lib/anope/modules/cs_ban.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_ban.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_clone.so elf
anope /usr/lib/anope/modules/cs_clone.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_clone.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_drop.so elf
anope /usr/lib/anope/modules/cs_drop.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_drop.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_enforce.so elf
anope /usr/lib/anope/modules/cs_enforce.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_enforce.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_entrymsg.so elf
anope /usr/lib/anope/modules/cs_entrymsg.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_entrymsg.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_fantasy_stats.so elf
anope /usr/lib/anope/modules/cs_fantasy_stats.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_fantasy_stats.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_fantasy_top.so elf
anope /usr/lib/anope/modules/cs_fantasy_top.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_fantasy_top.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_flags.so elf
anope /usr/lib/anope/modules/cs_flags.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_flags.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_getkey.so elf
anope /usr/lib/anope/modules/cs_getkey.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_getkey.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_info.so elf
anope /usr/lib/anope/modules/cs_info.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_invite.so elf
anope /usr/lib/anope/modules/cs_invite.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_invite.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_kick.so elf
anope /usr/lib/anope/modules/cs_kick.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_kick.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_list.so elf
anope /usr/lib/anope/modules/cs_list.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_list.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_log.so elf
anope /usr/lib/anope/modules/cs_log.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_log.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_mode.so elf
anope /usr/lib/anope/modules/cs_mode.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_mode.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_register.so elf
anope /usr/lib/anope/modules/cs_register.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_register.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_seen.so elf
anope /usr/lib/anope/modules/cs_seen.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_seen.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_set.so elf
anope /usr/lib/anope/modules/cs_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_set_misc.so elf
anope /usr/lib/anope/modules/cs_set_misc.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_set_misc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_status.so elf
anope /usr/lib/anope/modules/cs_status.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_status.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_statusupdate.so elf
anope /usr/lib/anope/modules/cs_statusupdate.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_statusupdate.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_suspend.so elf
anope /usr/lib/anope/modules/cs_suspend.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_suspend.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_sync.so elf
anope /usr/lib/anope/modules/cs_sync.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_sync.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_topic.so elf
anope /usr/lib/anope/modules/cs_topic.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_topic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_unban.so elf
anope /usr/lib/anope/modules/cs_unban.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_unban.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_updown.so elf
anope /usr/lib/anope/modules/cs_updown.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_updown.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/cs_xop.so elf
anope /usr/lib/anope/modules/cs_xop.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/cs_xop.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/db_flatfile.so elf
anope /usr/lib/anope/modules/db_flatfile.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/db_flatfile.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/db_old.so elf
anope /usr/lib/anope/modules/db_old.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/db_old.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/db_redis.so elf
anope /usr/lib/anope/modules/db_redis.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/db_redis.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/db_sql.so elf
anope /usr/lib/anope/modules/db_sql.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/db_sql.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/db_sql_live.so elf
anope /usr/lib/anope/modules/db_sql_live.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/db_sql_live.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_bcrypt.so elf
anope /usr/lib/anope/modules/enc_bcrypt.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_bcrypt.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_md5.so elf
anope /usr/lib/anope/modules/enc_md5.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_md5.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_none.so elf
anope /usr/lib/anope/modules/enc_none.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_none.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_old.so elf
anope /usr/lib/anope/modules/enc_old.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_old.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_sha1.so elf
anope /usr/lib/anope/modules/enc_sha1.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_sha1.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/enc_sha256.so elf
anope /usr/lib/anope/modules/enc_sha256.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/enc_sha256.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/fantasy.so elf
anope /usr/lib/anope/modules/fantasy.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/fantasy.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/gl_global.so elf
anope /usr/lib/anope/modules/gl_global.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/gl_global.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/global.so elf
anope /usr/lib/anope/modules/global.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/global.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/greet.so elf
anope /usr/lib/anope/modules/greet.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/greet.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/help.so elf
anope /usr/lib/anope/modules/help.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/help.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hostserv.so elf
anope /usr/lib/anope/modules/hostserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hostserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_del.so elf
anope /usr/lib/anope/modules/hs_del.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_del.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_group.so elf
anope /usr/lib/anope/modules/hs_group.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_group.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_list.so elf
anope /usr/lib/anope/modules/hs_list.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_list.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_off.so elf
anope /usr/lib/anope/modules/hs_off.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_off.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_on.so elf
anope /usr/lib/anope/modules/hs_on.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_on.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_request.so elf
anope /usr/lib/anope/modules/hs_request.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_request.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hs_set.so elf
anope /usr/lib/anope/modules/hs_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hs_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/hybrid.so elf
anope /usr/lib/anope/modules/hybrid.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/hybrid.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/inspircd12.so elf
anope /usr/lib/anope/modules/inspircd12.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/inspircd12.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/inspircd20.so elf
anope /usr/lib/anope/modules/inspircd20.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/inspircd20.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/inspircd3.so elf
anope /usr/lib/anope/modules/inspircd3.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/inspircd3.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/irc2sql.so elf
anope /usr/lib/anope/modules/irc2sql.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/irc2sql.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_chanstats.so elf
anope /usr/lib/anope/modules/m_chanstats.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_chanstats.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_dns.so elf
anope /usr/lib/anope/modules/m_dns.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_dns.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_dnsbl.so elf
anope /usr/lib/anope/modules/m_dnsbl.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_dnsbl.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_helpchan.so elf
anope /usr/lib/anope/modules/m_helpchan.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_helpchan.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_httpd.so elf
anope /usr/lib/anope/modules/m_httpd.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_httpd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_ldap.so elf
anope /usr/lib/anope/modules/m_ldap.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_ldap.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_ldap_authentication.so elf
anope /usr/lib/anope/modules/m_ldap_authentication.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_ldap_authentication.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_ldap_oper.so elf
anope /usr/lib/anope/modules/m_ldap_oper.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_ldap_oper.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_mysql.so elf
anope /usr/lib/anope/modules/m_mysql.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_mysql.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_proxyscan.so elf
anope /usr/lib/anope/modules/m_proxyscan.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_proxyscan.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_redis.so elf
anope /usr/lib/anope/modules/m_redis.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_redis.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_regex_pcre2.so elf
anope /usr/lib/anope/modules/m_regex_pcre2.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_regex_pcre2.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_rewrite.so elf
anope /usr/lib/anope/modules/m_rewrite.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_rewrite.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_sasl.so elf
anope /usr/lib/anope/modules/m_sasl.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_sasl.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_sql_authentication.so elf
anope /usr/lib/anope/modules/m_sql_authentication.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_sql_authentication.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_sql_log.so elf
anope /usr/lib/anope/modules/m_sql_log.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_sql_log.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_sql_oper.so elf
anope /usr/lib/anope/modules/m_sql_oper.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_sql_oper.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_sqlite.so elf
anope /usr/lib/anope/modules/m_sqlite.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_sqlite.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_ssl_gnutls.so elf
anope /usr/lib/anope/modules/m_ssl_gnutls.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_ssl_gnutls.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_xmlrpc.so elf
anope /usr/lib/anope/modules/m_xmlrpc.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_xmlrpc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/m_xmlrpc_main.so elf
anope /usr/lib/anope/modules/m_xmlrpc_main.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/m_xmlrpc_main.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/memoserv.so elf
anope /usr/lib/anope/modules/memoserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/memoserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_cancel.so elf
anope /usr/lib/anope/modules/ms_cancel.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_cancel.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_check.so elf
anope /usr/lib/anope/modules/ms_check.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_check.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_del.so elf
anope /usr/lib/anope/modules/ms_del.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_del.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_ignore.so elf
anope /usr/lib/anope/modules/ms_ignore.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_ignore.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_info.so elf
anope /usr/lib/anope/modules/ms_info.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_list.so elf
anope /usr/lib/anope/modules/ms_list.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_list.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_read.so elf
anope /usr/lib/anope/modules/ms_read.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_read.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_rsend.so elf
anope /usr/lib/anope/modules/ms_rsend.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_rsend.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_send.so elf
anope /usr/lib/anope/modules/ms_send.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_send.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_sendall.so elf
anope /usr/lib/anope/modules/ms_sendall.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_sendall.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_set.so elf
anope /usr/lib/anope/modules/ms_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ms_staff.so elf
anope /usr/lib/anope/modules/ms_staff.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ms_staff.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ngircd.so elf
anope /usr/lib/anope/modules/ngircd.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ngircd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/nickserv.so elf
anope /usr/lib/anope/modules/nickserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/nickserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_access.so elf
anope /usr/lib/anope/modules/ns_access.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_access.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_ajoin.so elf
anope /usr/lib/anope/modules/ns_ajoin.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_ajoin.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_alist.so elf
anope /usr/lib/anope/modules/ns_alist.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_alist.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_cert.so elf
anope /usr/lib/anope/modules/ns_cert.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_cert.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_drop.so elf
anope /usr/lib/anope/modules/ns_drop.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_drop.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_getemail.so elf
anope /usr/lib/anope/modules/ns_getemail.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_getemail.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_getpass.so elf
anope /usr/lib/anope/modules/ns_getpass.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_getpass.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_group.so elf
anope /usr/lib/anope/modules/ns_group.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_group.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_identify.so elf
anope /usr/lib/anope/modules/ns_identify.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_identify.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_info.so elf
anope /usr/lib/anope/modules/ns_info.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_list.so elf
anope /usr/lib/anope/modules/ns_list.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_list.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_logout.so elf
anope /usr/lib/anope/modules/ns_logout.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_logout.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_maxemail.so elf
anope /usr/lib/anope/modules/ns_maxemail.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_maxemail.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_recover.so elf
anope /usr/lib/anope/modules/ns_recover.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_recover.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_register.so elf
anope /usr/lib/anope/modules/ns_register.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_register.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_resetpass.so elf
anope /usr/lib/anope/modules/ns_resetpass.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_resetpass.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_set.so elf
anope /usr/lib/anope/modules/ns_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_set_misc.so elf
anope /usr/lib/anope/modules/ns_set_misc.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_set_misc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_status.so elf
anope /usr/lib/anope/modules/ns_status.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_status.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_suspend.so elf
anope /usr/lib/anope/modules/ns_suspend.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_suspend.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ns_update.so elf
anope /usr/lib/anope/modules/ns_update.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ns_update.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/operserv.so elf
anope /usr/lib/anope/modules/operserv.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/operserv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_akill.so elf
anope /usr/lib/anope/modules/os_akill.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_akill.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_chankill.so elf
anope /usr/lib/anope/modules/os_chankill.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_chankill.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_config.so elf
anope /usr/lib/anope/modules/os_config.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_config.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_defcon.so elf
anope /usr/lib/anope/modules/os_defcon.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_defcon.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_dns.so elf
anope /usr/lib/anope/modules/os_dns.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_dns.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_forbid.so elf
anope /usr/lib/anope/modules/os_forbid.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_forbid.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_ignore.so elf
anope /usr/lib/anope/modules/os_ignore.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_ignore.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_info.so elf
anope /usr/lib/anope/modules/os_info.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_jupe.so elf
anope /usr/lib/anope/modules/os_jupe.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_jupe.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_kick.so elf
anope /usr/lib/anope/modules/os_kick.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_kick.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_kill.so elf
anope /usr/lib/anope/modules/os_kill.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_kill.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_list.so elf
anope /usr/lib/anope/modules/os_list.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_list.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_login.so elf
anope /usr/lib/anope/modules/os_login.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_login.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_logsearch.so elf
anope /usr/lib/anope/modules/os_logsearch.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_logsearch.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_mode.so elf
anope /usr/lib/anope/modules/os_mode.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_mode.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_modinfo.so elf
anope /usr/lib/anope/modules/os_modinfo.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_modinfo.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_module.so elf
anope /usr/lib/anope/modules/os_module.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_module.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_news.so elf
anope /usr/lib/anope/modules/os_news.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_news.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_noop.so elf
anope /usr/lib/anope/modules/os_noop.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_noop.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_oline.so elf
anope /usr/lib/anope/modules/os_oline.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_oline.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_oper.so elf
anope /usr/lib/anope/modules/os_oper.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_oper.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_reload.so elf
anope /usr/lib/anope/modules/os_reload.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_reload.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_session.so elf
anope /usr/lib/anope/modules/os_session.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_session.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_set.so elf
anope /usr/lib/anope/modules/os_set.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_set.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_shutdown.so elf
anope /usr/lib/anope/modules/os_shutdown.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_shutdown.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_stats.so elf
anope /usr/lib/anope/modules/os_stats.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_stats.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_svs.so elf
anope /usr/lib/anope/modules/os_svs.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_svs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_sxline.so elf
anope /usr/lib/anope/modules/os_sxline.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_sxline.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/os_update.so elf
anope /usr/lib/anope/modules/os_update.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/os_update.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/plexus.so elf
anope /usr/lib/anope/modules/plexus.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/plexus.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/ratbox.so elf
anope /usr/lib/anope/modules/ratbox.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/ratbox.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/unreal.so elf
anope /usr/lib/anope/modules/unreal.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/unreal.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/lib/anope/modules/unreal4.so elf
anope /usr/lib/anope/modules/unreal4.so produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fPIC -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/lib/anope/modules/unreal4.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope /usr/sbin/anope elf
anope /usr/sbin/anope produced-by GNU C++98 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -ansi -flto -fstack-protector-strong -fcf-protection=full -fno-delete-null-pointer-checks -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-leading-underscore -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
anope /usr/sbin/anope produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
anope done
aodh-api done
aodh-common done
aodh-doc done
aodh-evaluator done
aodh-expirer done
aodh-listener done
aodh-notifier done
apache2 done
apache2-bin /usr/lib/apache2/modules/mod_access_compat.so elf
apache2-bin /usr/lib/apache2/modules/mod_access_compat.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_access_compat.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_actions.so elf
apache2-bin /usr/lib/apache2/modules/mod_actions.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_actions.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_alias.so elf
apache2-bin /usr/lib/apache2/modules/mod_alias.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_alias.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_allowmethods.so elf
apache2-bin /usr/lib/apache2/modules/mod_allowmethods.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_allowmethods.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_asis.so elf
apache2-bin /usr/lib/apache2/modules/mod_asis.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_asis.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_auth_basic.so elf
apache2-bin /usr/lib/apache2/modules/mod_auth_basic.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_auth_basic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_auth_digest.so elf
apache2-bin /usr/lib/apache2/modules/mod_auth_digest.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_auth_digest.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_auth_form.so elf
apache2-bin /usr/lib/apache2/modules/mod_auth_form.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_auth_form.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_anon.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_anon.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_anon.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_core.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_core.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_core.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_dbd.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_dbd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_dbd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_dbm.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_dbm.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_dbm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_file.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_file.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_file.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authn_socache.so elf
apache2-bin /usr/lib/apache2/modules/mod_authn_socache.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authn_socache.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authnz_fcgi.so elf
apache2-bin /usr/lib/apache2/modules/mod_authnz_fcgi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authnz_fcgi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authnz_ldap.so elf
apache2-bin /usr/lib/apache2/modules/mod_authnz_ldap.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authnz_ldap.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_core.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_core.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_core.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_dbd.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_dbd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_dbd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_dbm.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_dbm.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_dbm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_groupfile.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_groupfile.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_groupfile.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_host.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_host.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_host.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_owner.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_owner.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_owner.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_authz_user.so elf
apache2-bin /usr/lib/apache2/modules/mod_authz_user.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_authz_user.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_autoindex.so elf
apache2-bin /usr/lib/apache2/modules/mod_autoindex.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_autoindex.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_brotli.so elf
apache2-bin /usr/lib/apache2/modules/mod_brotli.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_brotli.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_bucketeer.so elf
apache2-bin /usr/lib/apache2/modules/mod_bucketeer.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_bucketeer.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_buffer.so elf
apache2-bin /usr/lib/apache2/modules/mod_buffer.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_buffer.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cache.so elf
apache2-bin /usr/lib/apache2/modules/mod_cache.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cache.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cache_disk.so elf
apache2-bin /usr/lib/apache2/modules/mod_cache_disk.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cache_disk.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cache_socache.so elf
apache2-bin /usr/lib/apache2/modules/mod_cache_socache.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cache_socache.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_case_filter.so elf
apache2-bin /usr/lib/apache2/modules/mod_case_filter.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_case_filter.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_case_filter_in.so elf
apache2-bin /usr/lib/apache2/modules/mod_case_filter_in.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_case_filter_in.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cern_meta.so elf
apache2-bin /usr/lib/apache2/modules/mod_cern_meta.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cern_meta.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cgi.so elf
apache2-bin /usr/lib/apache2/modules/mod_cgi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cgi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_cgid.so elf
apache2-bin /usr/lib/apache2/modules/mod_cgid.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_cgid.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_charset_lite.so elf
apache2-bin /usr/lib/apache2/modules/mod_charset_lite.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_charset_lite.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_data.so elf
apache2-bin /usr/lib/apache2/modules/mod_data.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_data.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dav.so elf
apache2-bin /usr/lib/apache2/modules/mod_dav.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dav.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dav_fs.so elf
apache2-bin /usr/lib/apache2/modules/mod_dav_fs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dav_fs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dav_lock.so elf
apache2-bin /usr/lib/apache2/modules/mod_dav_lock.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dav_lock.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dbd.so elf
apache2-bin /usr/lib/apache2/modules/mod_dbd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dbd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_deflate.so elf
apache2-bin /usr/lib/apache2/modules/mod_deflate.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_deflate.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dialup.so elf
apache2-bin /usr/lib/apache2/modules/mod_dialup.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dialup.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dir.so elf
apache2-bin /usr/lib/apache2/modules/mod_dir.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dir.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_dumpio.so elf
apache2-bin /usr/lib/apache2/modules/mod_dumpio.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_dumpio.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_echo.so elf
apache2-bin /usr/lib/apache2/modules/mod_echo.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_echo.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_env.so elf
apache2-bin /usr/lib/apache2/modules/mod_env.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_env.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_expires.so elf
apache2-bin /usr/lib/apache2/modules/mod_expires.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_expires.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_ext_filter.so elf
apache2-bin /usr/lib/apache2/modules/mod_ext_filter.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_ext_filter.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_file_cache.so elf
apache2-bin /usr/lib/apache2/modules/mod_file_cache.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_file_cache.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_filter.so elf
apache2-bin /usr/lib/apache2/modules/mod_filter.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_filter.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_headers.so elf
apache2-bin /usr/lib/apache2/modules/mod_headers.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_headers.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_heartbeat.so elf
apache2-bin /usr/lib/apache2/modules/mod_heartbeat.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_heartbeat.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_heartmonitor.so elf
apache2-bin /usr/lib/apache2/modules/mod_heartmonitor.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_heartmonitor.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_http2.so elf
apache2-bin /usr/lib/apache2/modules/mod_http2.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_http2.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_ident.so elf
apache2-bin /usr/lib/apache2/modules/mod_ident.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_ident.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_imagemap.so elf
apache2-bin /usr/lib/apache2/modules/mod_imagemap.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_imagemap.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_include.so elf
apache2-bin /usr/lib/apache2/modules/mod_include.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_include.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_info.so elf
apache2-bin /usr/lib/apache2/modules/mod_info.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_info.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bybusyness.so elf
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bybusyness.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bybusyness.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_byrequests.so elf
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_byrequests.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_byrequests.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bytraffic.so elf
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bytraffic.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_bytraffic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_heartbeat.so elf
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_heartbeat.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_lbmethod_heartbeat.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_ldap.so elf
apache2-bin /usr/lib/apache2/modules/mod_ldap.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_ldap.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_log_debug.so elf
apache2-bin /usr/lib/apache2/modules/mod_log_debug.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_log_debug.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_log_forensic.so elf
apache2-bin /usr/lib/apache2/modules/mod_log_forensic.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_log_forensic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_lua.so elf
apache2-bin /usr/lib/apache2/modules/mod_lua.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_lua.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_macro.so elf
apache2-bin /usr/lib/apache2/modules/mod_macro.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_macro.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_md.so elf
apache2-bin /usr/lib/apache2/modules/mod_md.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_md.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_mime.so elf
apache2-bin /usr/lib/apache2/modules/mod_mime.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_mime.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_mime_magic.so elf
apache2-bin /usr/lib/apache2/modules/mod_mime_magic.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_mime_magic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_mpm_event.so elf
apache2-bin /usr/lib/apache2/modules/mod_mpm_event.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_mpm_event.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_mpm_prefork.so elf
apache2-bin /usr/lib/apache2/modules/mod_mpm_prefork.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_mpm_prefork.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_mpm_worker.so elf
apache2-bin /usr/lib/apache2/modules/mod_mpm_worker.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_mpm_worker.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_negotiation.so elf
apache2-bin /usr/lib/apache2/modules/mod_negotiation.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_negotiation.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_ajp.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_ajp.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_ajp.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_balancer.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_balancer.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_balancer.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_connect.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_connect.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_connect.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_express.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_express.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_express.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_fcgi.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_fcgi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_fcgi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_fdpass.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_fdpass.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_fdpass.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_ftp.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_ftp.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_ftp.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_hcheck.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_hcheck.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_hcheck.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_html.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_html.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_html.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_http.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_http.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_http.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_http2.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_http2.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_http2.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_scgi.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_scgi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_scgi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_uwsgi.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_uwsgi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_uwsgi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_proxy_wstunnel.so elf
apache2-bin /usr/lib/apache2/modules/mod_proxy_wstunnel.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_proxy_wstunnel.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_ratelimit.so elf
apache2-bin /usr/lib/apache2/modules/mod_ratelimit.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_ratelimit.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_reflector.so elf
apache2-bin /usr/lib/apache2/modules/mod_reflector.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_reflector.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_remoteip.so elf
apache2-bin /usr/lib/apache2/modules/mod_remoteip.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_remoteip.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_reqtimeout.so elf
apache2-bin /usr/lib/apache2/modules/mod_reqtimeout.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_reqtimeout.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_request.so elf
apache2-bin /usr/lib/apache2/modules/mod_request.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_request.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_rewrite.so elf
apache2-bin /usr/lib/apache2/modules/mod_rewrite.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_rewrite.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_sed.so elf
apache2-bin /usr/lib/apache2/modules/mod_sed.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_sed.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_session.so elf
apache2-bin /usr/lib/apache2/modules/mod_session.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_session.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_session_cookie.so elf
apache2-bin /usr/lib/apache2/modules/mod_session_cookie.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_session_cookie.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_session_crypto.so elf
apache2-bin /usr/lib/apache2/modules/mod_session_crypto.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_session_crypto.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_session_dbd.so elf
apache2-bin /usr/lib/apache2/modules/mod_session_dbd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_session_dbd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_setenvif.so elf
apache2-bin /usr/lib/apache2/modules/mod_setenvif.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_setenvif.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_slotmem_plain.so elf
apache2-bin /usr/lib/apache2/modules/mod_slotmem_plain.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_slotmem_plain.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_slotmem_shm.so elf
apache2-bin /usr/lib/apache2/modules/mod_slotmem_shm.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_slotmem_shm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_socache_dbm.so elf
apache2-bin /usr/lib/apache2/modules/mod_socache_dbm.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_socache_dbm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_socache_memcache.so elf
apache2-bin /usr/lib/apache2/modules/mod_socache_memcache.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_socache_memcache.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_socache_redis.so elf
apache2-bin /usr/lib/apache2/modules/mod_socache_redis.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_socache_redis.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_socache_shmcb.so elf
apache2-bin /usr/lib/apache2/modules/mod_socache_shmcb.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_socache_shmcb.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_speling.so elf
apache2-bin /usr/lib/apache2/modules/mod_speling.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_speling.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_ssl.so elf
apache2-bin /usr/lib/apache2/modules/mod_ssl.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_ssl.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_status.so elf
apache2-bin /usr/lib/apache2/modules/mod_status.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_status.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_substitute.so elf
apache2-bin /usr/lib/apache2/modules/mod_substitute.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_substitute.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_suexec.so elf
apache2-bin /usr/lib/apache2/modules/mod_suexec.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_suexec.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_unique_id.so elf
apache2-bin /usr/lib/apache2/modules/mod_unique_id.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_unique_id.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_userdir.so elf
apache2-bin /usr/lib/apache2/modules/mod_userdir.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_userdir.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_usertrack.so elf
apache2-bin /usr/lib/apache2/modules/mod_usertrack.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_usertrack.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_vhost_alias.so elf
apache2-bin /usr/lib/apache2/modules/mod_vhost_alias.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_vhost_alias.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/lib/apache2/modules/mod_xml2enc.so elf
apache2-bin /usr/lib/apache2/modules/mod_xml2enc.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/lib/apache2/modules/mod_xml2enc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
apache2-bin /usr/sbin/apache2 elf
apache2-bin /usr/sbin/apache2 produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-bin /usr/sbin/apache2 produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-bin done
apache2-data done
apache2-dev done
apache2-doc done
apache2-ssl-dev done
apache2-utils /usr/bin/ab elf
apache2-utils /usr/bin/ab produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/ab produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/checkgid elf
apache2-utils /usr/bin/checkgid produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/checkgid produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/fcgistarter elf
apache2-utils /usr/bin/fcgistarter produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/fcgistarter produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/htcacheclean elf
apache2-utils /usr/bin/htcacheclean produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/htcacheclean produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/htdbm elf
apache2-utils /usr/bin/htdbm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/htdbm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/htdigest elf
apache2-utils /usr/bin/htdigest produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/htdigest produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/htpasswd elf
apache2-utils /usr/bin/htpasswd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/htpasswd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/logresolve elf
apache2-utils /usr/bin/logresolve produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/logresolve produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/bin/rotatelogs elf
apache2-utils /usr/bin/rotatelogs produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/bin/rotatelogs produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils /usr/sbin/httxt2dbm elf
apache2-utils /usr/sbin/httxt2dbm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apache2-utils /usr/sbin/httxt2dbm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apache2-utils done
apg /usr/bin/apgbfm elf
apg /usr/bin/apgbfm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apg /usr/bin/apgbfm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apg /usr/lib/apg/apg elf
apg /usr/lib/apg/apg produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apg /usr/lib/apg/apg produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apg done
apparmor /sbin/apparmor_parser elf
apparmor /sbin/apparmor_parser produced-by GNU C++11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -flto-partition=none -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /sbin/apparmor_parser produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /sbin/apparmor_parser produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -flto-partition=none -ffat-lto-objects -flinker-output=pie
apparmor /usr/bin/aa-enabled elf
apparmor /usr/bin/aa-enabled produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-enabled produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-enabled produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
apparmor /usr/bin/aa-exec elf
apparmor /usr/bin/aa-exec produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-exec produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-exec produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
apparmor /usr/bin/aa-features-abi elf
apparmor /usr/bin/aa-features-abi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-features-abi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/bin/aa-features-abi produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
apparmor /usr/sbin/aa-load elf
apparmor /usr/sbin/aa-load produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/sbin/aa-load produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/sbin/aa-load produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
apparmor /usr/sbin/aa-status elf
apparmor /usr/sbin/aa-status produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -flto-partition=none -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/sbin/aa-status produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/sbin/aa-status produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apparmor /usr/sbin/aa-status produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
apparmor done
apparmor-profiles done
apparmor-utils done
apport done
apport-core-dump-handler done
apport-gtk done
apport-retrace done
apport-symptoms done
appstream /usr/bin/appstreamcli elf
appstream /usr/bin/appstreamcli produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
appstream /usr/bin/appstreamcli produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
appstream done
apt /usr/bin/apt elf
apt /usr/bin/apt produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/bin/apt-cache elf
apt /usr/bin/apt-cache produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt-cache produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/bin/apt-cdrom elf
apt /usr/bin/apt-cdrom produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt-cdrom produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/bin/apt-config elf
apt /usr/bin/apt-config produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt-config produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/bin/apt-get elf
apt /usr/bin/apt-get produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt-get produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/bin/apt-mark elf
apt /usr/bin/apt-mark produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/bin/apt-mark produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/apt-helper elf
apt /usr/lib/apt/apt-helper produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/apt-helper produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/cdrom elf
apt /usr/lib/apt/methods/cdrom produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/cdrom produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/copy elf
apt /usr/lib/apt/methods/copy produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/copy produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/file elf
apt /usr/lib/apt/methods/file produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/file produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/ftp elf
apt /usr/lib/apt/methods/ftp produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/ftp produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/gpgv elf
apt /usr/lib/apt/methods/gpgv produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/gpgv produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/http elf
apt /usr/lib/apt/methods/http produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/http produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/mirror elf
apt /usr/lib/apt/methods/mirror produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/mirror produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/rred elf
apt /usr/lib/apt/methods/rred produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/rred produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/rsh elf
apt /usr/lib/apt/methods/rsh produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/rsh produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/methods/store elf
apt /usr/lib/apt/methods/store produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/methods/store produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/apt/solvers/dump elf
apt /usr/lib/apt/solvers/dump produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/apt/solvers/dump produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt /usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0 elf
apt /usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0 produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt /usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0 produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt done
apt-config-icons done
apt-config-icons-hidpi done
apt-config-icons-large done
apt-config-icons-large-hidpi done
apt-doc done
apt-listchanges done
apt-utils /usr/bin/apt-extracttemplates elf
apt-utils /usr/bin/apt-extracttemplates produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt-utils /usr/bin/apt-extracttemplates produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt-utils /usr/bin/apt-ftparchive elf
apt-utils /usr/bin/apt-ftparchive produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt-utils /usr/bin/apt-ftparchive produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt-utils /usr/bin/apt-sortpkgs elf
apt-utils /usr/bin/apt-sortpkgs produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt-utils /usr/bin/apt-sortpkgs produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt-utils /usr/lib/apt/planners/apt elf
apt-utils /usr/lib/apt/planners/apt produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt-utils /usr/lib/apt/planners/apt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt-utils /usr/lib/apt/solvers/apt elf
apt-utils /usr/lib/apt/solvers/apt produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu++17 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility-inlines-hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
apt-utils /usr/lib/apt/solvers/apt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
apt-utils done
aptdaemon done
aptdaemon-data done
aspell /usr/bin/aspell elf
aspell /usr/bin/aspell produced-by GNU C++17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-exceptions -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
aspell /usr/bin/aspell produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-exceptions -ffat-lto-objects -fltrans
aspell /usr/bin/prezip-bin elf
aspell /usr/bin/prezip-bin produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
aspell /usr/bin/prezip-bin produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
aspell /usr/bin/word-list-compress elf
aspell /usr/bin/word-list-compress produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
aspell /usr/bin/word-list-compress produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
aspell done
aspell-doc done
aspell-en done
aspnetcore-runtime-8.0 done
aspnetcore-targeting-pack-8.0 done
at-spi2-common done
at-spi2-core /usr/libexec/at-spi-bus-launcher elf
at-spi2-core /usr/libexec/at-spi-bus-launcher produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
at-spi2-core /usr/libexec/at-spi-bus-launcher produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
at-spi2-core /usr/libexec/at-spi2-registryd elf
at-spi2-core /usr/libexec/at-spi2-registryd produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
at-spi2-core /usr/libexec/at-spi2-registryd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
at-spi2-core done
at-spi2-doc done
attr /usr/bin/attr elf
attr /usr/bin/attr produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
attr /usr/bin/attr produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
attr /usr/bin/getfattr elf
attr /usr/bin/getfattr produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
attr /usr/bin/getfattr produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
attr /usr/bin/getfattr produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
attr /usr/bin/setfattr elf
attr /usr/bin/setfattr produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
attr /usr/bin/setfattr produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
attr /usr/bin/setfattr produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fvisibility=hidden -ffat-lto-objects -fltrans
attr done
auditd /usr/bin/aulast elf
auditd /usr/bin/aulast produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/bin/aulast produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/bin/aulastlog elf
auditd /usr/bin/aulastlog produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/bin/aulastlog produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/bin/ausyscall elf
auditd /usr/bin/ausyscall produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/bin/ausyscall produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/bin/auvirt elf
auditd /usr/bin/auvirt produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/bin/auvirt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/audisp-af_unix elf
auditd /usr/sbin/audisp-af_unix produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIE -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/audisp-af_unix produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/audisp-af_unix produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIE -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/audisp-syslog elf
auditd /usr/sbin/audisp-syslog produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIE -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/audisp-syslog produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/audisp-syslog produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIE -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/auditctl elf
auditd /usr/sbin/auditctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIE -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditctl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIE -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/auditd elf
auditd /usr/sbin/auditd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fPIC -fno-strict-aliasing -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIC -fno-strict-aliasing -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIE -fno-strict-aliasing -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/auditd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIE -fno-strict-aliasing -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/aureport elf
auditd /usr/sbin/aureport produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/aureport produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/aureport produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/ausearch elf
auditd /usr/sbin/ausearch produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/ausearch produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/ausearch produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd /usr/sbin/autrace elf
auditd /usr/sbin/autrace produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
auditd /usr/sbin/autrace produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
auditd done
authbind /usr/bin/authbind elf
authbind /usr/bin/authbind no-dbgsym
authbind /usr/lib/authbind/helper elf
authbind /usr/lib/authbind/helper no-dbgsym
authbind /usr/lib/authbind/libauthbind.so.1.0 elf
authbind /usr/lib/authbind/libauthbind.so.1.0 using-binary
authbind /usr/lib/authbind/libauthbind.so.1.0 crash
authbind done
autoconf done
autoconf-doc done
autodep8 done
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_dir.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_dir.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_dir.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_hosts.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_hosts.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_hosts.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_multi.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_multi.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_multi.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_nisplus.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_nisplus.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_nisplus.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_program.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_program.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_program.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_sss.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_sss.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_sss.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_userhome.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_userhome.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_userhome.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_yp.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_yp.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/lookup_yp.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_afs.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_afs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_afs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_autofs.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_autofs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_autofs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_bind.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_bind.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_bind.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_changer.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_changer.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_changer.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_ext2.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_ext2.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_ext2.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_generic.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_generic.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_generic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_nfs.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_nfs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_nfs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/mount_nfs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_amd.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_amd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_amd.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_amd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_sun.so elf
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_sun.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -flto -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -fPIC -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/autofs/parse_sun.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/lib/x86_64-linux-gnu/libautofs.so elf
autofs /usr/lib/x86_64-linux-gnu/libautofs.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/lib/x86_64-linux-gnu/libautofs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fPIC -ffat-lto-objects -fltrans
autofs /usr/sbin/automount elf
autofs /usr/sbin/automount produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
autofs /usr/sbin/automount produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIE -ffat-lto-objects -fltrans
autofs done
automake done
autopkgtest done
autopoint done
autotools-dev done
avahi-daemon /usr/sbin/avahi-daemon elf
avahi-daemon /usr/sbin/avahi-daemon produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -fstack-protector-strong -fcf-protection=full -fstack-protector -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-clash-protection
avahi-daemon done
avahi-utils /usr/bin/avahi-browse elf
avahi-utils /usr/bin/avahi-browse produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -fstack-protector-strong -fcf-protection=full -fstack-protector -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-clash-protection
avahi-utils /usr/bin/avahi-publish elf
avahi-utils /usr/bin/avahi-publish produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -fstack-protector-strong -fcf-protection=full -fstack-protector -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-clash-protection
avahi-utils /usr/bin/avahi-resolve elf
avahi-utils /usr/bin/avahi-resolve produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -fstack-protector-strong -fcf-protection=full -fstack-protector -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-clash-protection
avahi-utils /usr/bin/avahi-set-host-name elf
avahi-utils /usr/bin/avahi-set-host-name produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -fno-omit-frame-pointer -fstack-protector-strong -fcf-protection=full -fstack-protector -fno-strict-aliasing -fasynchronous-unwind-tables -fstack-clash-protection
avahi-utils done
awstats done
b43-fwcutter /usr/bin/b43-fwcutter elf
b43-fwcutter /usr/bin/b43-fwcutter produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=c99 -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fomit-frame-pointer -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
b43-fwcutter /usr/bin/b43-fwcutter produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fomit-frame-pointer -ffat-lto-objects -fltrans
b43-fwcutter done
backuppc /usr/lib/backuppc/cgi-bin/index.cgi elf
backuppc /usr/lib/backuppc/cgi-bin/index.cgi produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
backuppc /usr/lib/backuppc/cgi-bin/index.cgi produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
backuppc done
backuppc-rsync /usr/libexec/backuppc-rsync/rsync_bpc elf
backuppc-rsync /usr/libexec/backuppc-rsync/rsync_bpc produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
backuppc-rsync /usr/libexec/backuppc-rsync/rsync_bpc produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
backuppc-rsync done
baobab /usr/bin/baobab elf
baobab /usr/bin/baobab produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mfpmath=sse -mfpmath=sse -msse -msse2 -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
baobab /usr/bin/baobab produced-by GNU GIMPLE 13.2.0 -mfpmath=sse -mfpmath=sse -msse -msse2 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
baobab done
barbican-api done
barbican-common done
barbican-doc done
barbican-keystone-listener done
barbican-worker done
base-files /usr/bin/locale-check elf
base-files /usr/bin/locale-check produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
base-files /usr/bin/locale-check produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
base-files done
base-passwd /usr/sbin/update-passwd elf
base-passwd /usr/sbin/update-passwd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
base-passwd /usr/sbin/update-passwd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
base-passwd done
bash /usr/bin/bash elf
bash /usr/bin/bash produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bash /usr/bin/bash produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
bash /usr/bin/clear_console elf
bash /usr/bin/clear_console produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bash /usr/bin/clear_console produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bash done
bash-completion done
bash-doc done
bc /usr/bin/bc elf
bc /usr/bin/bc produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -flto -fstack-protector-strong -fcf-protection=full -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -funsigned-char -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bc /usr/bin/bc produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fcf-protection=full -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -funsigned-char -ffat-lto-objects -fltrans
bc done
bcache-tools /usr/lib/udev/bcache-register elf
bcache-tools /usr/lib/udev/bcache-register produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/lib/udev/bcache-register produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
bcache-tools /usr/lib/udev/probe-bcache elf
bcache-tools /usr/lib/udev/probe-bcache produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/lib/udev/probe-bcache produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bcache-tools /usr/sbin/bcache-super-show elf
bcache-tools /usr/sbin/bcache-super-show produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/sbin/bcache-super-show produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -std=gnu99 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/sbin/bcache-super-show produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bcache-tools /usr/sbin/make-bcache elf
bcache-tools /usr/sbin/make-bcache produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/sbin/make-bcache produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bcache-tools /usr/sbin/make-bcache produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bcache-tools done
bind9 /usr/bin/arpaname elf
bind9 /usr/bin/arpaname produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/arpaname produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/bin/dnssec-importkey elf
bind9 /usr/bin/dnssec-importkey produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/dnssec-importkey produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/dnssec-importkey produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/bin/named-journalprint elf
bind9 /usr/bin/named-journalprint produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/named-journalprint produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/bin/named-nzd2nzf elf
bind9 /usr/bin/named-nzd2nzf produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/named-nzd2nzf produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/bin/named-rrchecker elf
bind9 /usr/bin/named-rrchecker produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/named-rrchecker produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/bin/nsec3hash elf
bind9 /usr/bin/nsec3hash produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/bin/nsec3hash produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-a.so elf
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-a.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-a.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-aaaa.so elf
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-aaaa.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/lib/x86_64-linux-gnu/bind/filter-aaaa.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9 /usr/sbin/ddns-confgen elf
bind9 /usr/sbin/ddns-confgen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/sbin/ddns-confgen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/sbin/ddns-confgen produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/sbin/named elf
bind9 /usr/sbin/named produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/sbin/named produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 /usr/sbin/tsig-keygen elf
bind9 /usr/sbin/tsig-keygen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/sbin/tsig-keygen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9 /usr/sbin/tsig-keygen produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9 done
bind9-dev done
bind9-dnsutils /usr/bin/delv elf
bind9-dnsutils /usr/bin/delv produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/delv produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-dnsutils /usr/bin/dig elf
bind9-dnsutils /usr/bin/dig produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/dig produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/dig produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-dnsutils /usr/bin/mdig elf
bind9-dnsutils /usr/bin/mdig produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/mdig produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-dnsutils /usr/bin/nslookup elf
bind9-dnsutils /usr/bin/nslookup produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/nslookup produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/nslookup produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-dnsutils /usr/bin/nsupdate elf
bind9-dnsutils /usr/bin/nsupdate produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-dnsutils /usr/bin/nsupdate produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-dnsutils done
bind9-doc done
bind9-host /usr/bin/host elf
bind9-host /usr/bin/host produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-host /usr/bin/host produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-host /usr/bin/host produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-host done
bind9-libs /usr/lib/x86_64-linux-gnu/libbind9-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libbind9-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libbind9-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libdns-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libdns-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libdns-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libirs-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libirs-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libirs-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libisc-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libisc-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libisc-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libisccc-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libisccc-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libisccc-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libisccfg-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libisccfg-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libisccfg-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs /usr/lib/x86_64-linux-gnu/libns-9.18.24-0ubuntu5-Ubuntu.so elf
bind9-libs /usr/lib/x86_64-linux-gnu/libns-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-libs /usr/lib/x86_64-linux-gnu/libns-9.18.24-0ubuntu5-Ubuntu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fstack-protector-strong -fltrans
bind9-libs done
bind9-utils /usr/bin/dnssec-cds elf
bind9-utils /usr/bin/dnssec-cds produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-cds produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-cds produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-dsfromkey elf
bind9-utils /usr/bin/dnssec-dsfromkey produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-dsfromkey produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-dsfromkey produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-keyfromlabel elf
bind9-utils /usr/bin/dnssec-keyfromlabel produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-keyfromlabel produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-keyfromlabel produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-keygen elf
bind9-utils /usr/bin/dnssec-keygen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-keygen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-keygen produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-revoke elf
bind9-utils /usr/bin/dnssec-revoke produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-revoke produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-revoke produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-settime elf
bind9-utils /usr/bin/dnssec-settime produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-settime produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-settime produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-signzone elf
bind9-utils /usr/bin/dnssec-signzone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-signzone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-signzone produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/dnssec-verify elf
bind9-utils /usr/bin/dnssec-verify produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-verify produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/dnssec-verify produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/named-checkconf elf
bind9-utils /usr/bin/named-checkconf produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-checkconf produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-checkconf produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/named-checkzone elf
bind9-utils /usr/bin/named-checkzone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-checkzone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-checkzone produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/bin/named-compilezone elf
bind9-utils /usr/bin/named-compilezone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-compilezone produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/bin/named-compilezone produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/sbin/rndc elf
bind9-utils /usr/sbin/rndc produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/sbin/rndc produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils /usr/sbin/rndc-confgen elf
bind9-utils /usr/sbin/rndc-confgen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/sbin/rndc-confgen produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bind9-utils /usr/sbin/rndc-confgen produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fno-strict-aliasing -fno-delete-null-pointer-checks -ffat-lto-objects -fltrans
bind9-utils done
binutils /usr/lib/x86_64-linux-gnu/gprofng/libgp-collectorAPI.a elf
binutils /usr/lib/x86_64-linux-gnu/gprofng/libgp-collectorAPI.a using-binary
binutils /usr/lib/x86_64-linux-gnu/gprofng/libgp-collectorAPI.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils done
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-addr2line elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ar elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-as elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-c++filt elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-elfedit elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-gprof elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.bfd elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mips.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=sparc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=tilegx.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-nm elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objcopy elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objdump elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ranlib elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-readelf elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-size elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strings elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strip elf
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/bin/aarch64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/lib/aarch64-linux-gnu/bfd-plugins/libdep.so elf
binutils-aarch64-linux-gnu /usr/lib/aarch64-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-arm64.so elf
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-arm64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-arm64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-arm64.so.0.0.0 elf
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-arm64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-arm64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-arm64.so.0.0.0 elf
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-arm64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-arm64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-arm64.so elf
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-arm64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-aarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-arm64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-aarch64-linux-gnu done
binutils-aarch64-linux-gnu-dbg done
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-addr2line elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ar elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-as elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-c++filt elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-elfedit elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-gprof elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.bfd elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mips.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=sparc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=tilegx.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-nm elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objcopy elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objdump elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ranlib elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-readelf elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-size elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strings elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strip elf
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/bin/arm-linux-gnueabihf-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/bfd-plugins/libdep.so elf
binutils-arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libbfd-2.42-armhf.so elf
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libbfd-2.42-armhf.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libbfd-2.42-armhf.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-armhf.so.0.0.0 elf
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-armhf.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-armhf.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-nobfd-armhf.so.0.0.0 elf
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-nobfd-armhf.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libctf-nobfd-armhf.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libopcodes-2.42-armhf.so elf
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libopcodes-2.42-armhf.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-arm-linux-gnueabihf /usr/lib/x86_64-linux-gnu/libopcodes-2.42-armhf.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-arm-linux-gnueabihf done
binutils-arm-linux-gnueabihf-dbg done
binutils-common done
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd_pic.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd_pic.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libbfd_pic.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libctf-nobfd.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libctf-nobfd.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libctf-nobfd.a produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libctf.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libctf.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libctf.a produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libgprofng.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libgprofng.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libgprofng.a produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libgprofng.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes_pic.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes_pic.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libopcodes_pic.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev /usr/lib/x86_64-linux-gnu/libsframe.a elf
binutils-dev /usr/lib/x86_64-linux-gnu/libsframe.a using-binary
binutils-dev /usr/lib/x86_64-linux-gnu/libsframe.a produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-dev done
binutils-doc done
binutils-i686-gnu /usr/bin/i686-gnu-addr2line elf
binutils-i686-gnu /usr/bin/i686-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-ar elf
binutils-i686-gnu /usr/bin/i686-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-as elf
binutils-i686-gnu /usr/bin/i686-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-c++filt elf
binutils-i686-gnu /usr/bin/i686-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp elf
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-elfedit elf
binutils-i686-gnu /usr/bin/i686-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-gprof elf
binutils-i686-gnu /usr/bin/i686-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.bfd elf
binutils-i686-gnu /usr/bin/i686-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold elf
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mips.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=sparc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=tilegx.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-nm elf
binutils-i686-gnu /usr/bin/i686-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-objcopy elf
binutils-i686-gnu /usr/bin/i686-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-objdump elf
binutils-i686-gnu /usr/bin/i686-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-ranlib elf
binutils-i686-gnu /usr/bin/i686-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-readelf elf
binutils-i686-gnu /usr/bin/i686-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-size elf
binutils-i686-gnu /usr/bin/i686-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-strings elf
binutils-i686-gnu /usr/bin/i686-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/bin/i686-gnu-strip elf
binutils-i686-gnu /usr/bin/i686-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/bin/i686-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/lib/i386-gnu/bfd-plugins/libdep.so elf
binutils-i686-gnu /usr/lib/i386-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-i386.so elf
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-i386.so.0.0.0 elf
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-i386.so.0.0.0 elf
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-hurd-i386.so elf
binutils-i686-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-hurd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-gnu done
binutils-i686-gnu-dbg done
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-addr2line elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ar elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-as elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-c++filt elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-elfedit elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-gprof elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.bfd elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-nm elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objcopy elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objdump elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ranlib elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-readelf elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-size elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strings elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strip elf
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/bin/i686-kfreebsd-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/lib/i386-kfreebsd-gnu/bfd-plugins/libdep.so elf
binutils-i686-kfreebsd-gnu /usr/lib/i386-kfreebsd-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-i386.so elf
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-i386.so.0.0.0 elf
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-i386.so.0.0.0 elf
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-kfreebsd-i386.so elf
binutils-i686-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-kfreebsd-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-kfreebsd-gnu done
binutils-i686-kfreebsd-gnu-dbg done
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-addr2line elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ar elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-as elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-c++filt elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-elfedit elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-gprof elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.bfd elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-nm elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objcopy elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objdump elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ranlib elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-readelf elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-size elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strings elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strip elf
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/bin/i686-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/lib/i386-linux-gnu/bfd-plugins/libdep.so elf
binutils-i686-linux-gnu /usr/lib/i386-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-i386.so elf
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-i386.so.0.0.0 elf
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-i386.so.0.0.0 elf
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-i386.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-i386.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-i386.so elf
binutils-i686-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-i386.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-i686-linux-gnu done
binutils-i686-linux-gnu-dbg done
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-addr2line elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ar elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-as elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-c++filt elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-elfedit elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-gprof elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ld.bfd elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-nm elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objcopy elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objdump elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ranlib elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-readelf elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-size elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strings elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strip elf
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/bin/loongarch64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/lib/loongarch64-linux-gnu/bfd-plugins/libdep.so elf
binutils-loongarch64-linux-gnu /usr/lib/loongarch64-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-loong64.so elf
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-loong64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-loong64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-loong64.so.0.0.0 elf
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-loong64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-loong64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-loong64.so.0.0.0 elf
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-loong64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-loong64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-loong64.so elf
binutils-loongarch64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-loong64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-loongarch64-linux-gnu done
binutils-loongarch64-linux-gnu-dbg done
binutils-multiarch /usr/bin/x86_64-linux-gnu-addr2line elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-ar elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-ar produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-gprof elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-gprof produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-nm elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-nm produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-objcopy elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-objdump elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-objdump produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-ranlib elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-readelf elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-readelf produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-size elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-size produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-strings elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-strings produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/bin/x86_64-linux-gnu-strip elf
binutils-multiarch /usr/bin/x86_64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/bin/x86_64-linux-gnu-strip produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-multiarch /usr/lib/x86_64-linux-gnu/libbfd-2.42-multiarch.so elf
binutils-multiarch /usr/lib/x86_64-linux-gnu/libbfd-2.42-multiarch.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libbfd-2.42-multiarch.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libbfd-2.42-multiarch.so produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fasynchronous-unwind-tables -fcf-protection=full -fPIC -fprofile-use -fltrans
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-multiarch.so.0.0.0 elf
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-multiarch.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-multiarch.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fprofile-use -flto -ffat-lto-objects -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-multiarch.so.0.0.0 produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fasynchronous-unwind-tables -fcf-protection=full -fPIC -fprofile-use -fltrans
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-nobfd-multiarch.so.0.0.0 elf
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-nobfd-multiarch.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-nobfd-multiarch.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fprofile-use -flto -ffat-lto-objects -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libctf-nobfd-multiarch.so.0.0.0 produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fasynchronous-unwind-tables -fcf-protection=full -fPIC -fprofile-use -fltrans
binutils-multiarch /usr/lib/x86_64-linux-gnu/libopcodes-2.42-multiarch.so elf
binutils-multiarch /usr/lib/x86_64-linux-gnu/libopcodes-2.42-multiarch.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libopcodes-2.42-multiarch.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-multiarch /usr/lib/x86_64-linux-gnu/libopcodes-2.42-multiarch.so produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fasynchronous-unwind-tables -fcf-protection=full -fPIC -fprofile-use -fltrans
binutils-multiarch done
binutils-multiarch-dbg done
binutils-multiarch-dev done
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-addr2line elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ar elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-as elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-c++filt elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-elfedit elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-gprof elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.bfd elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-nm elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objcopy elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objdump elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ranlib elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-readelf elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-size elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strings elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strip elf
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/bin/powerpc-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/lib/powerpc-linux-gnu/bfd-plugins/libdep.so elf
binutils-powerpc-linux-gnu /usr/lib/powerpc-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-powerpc.so elf
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-powerpc.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-powerpc.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-powerpc.so.0.0.0 elf
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-powerpc.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-powerpc.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-powerpc.so.0.0.0 elf
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-powerpc.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-powerpc.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-powerpc.so elf
binutils-powerpc-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-powerpc.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc-linux-gnu done
binutils-powerpc-linux-gnu-dbg done
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-addr2line elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ar elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-as elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-c++filt elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-elfedit elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-gprof elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.bfd elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-nm elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objcopy elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objdump elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ranlib elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-readelf elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-size elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strings elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strip elf
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/bin/powerpc64le-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/lib/powerpc64le-linux-gnu/bfd-plugins/libdep.so elf
binutils-powerpc64le-linux-gnu /usr/lib/powerpc64le-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-ppc64el.so elf
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-ppc64el.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-ppc64el.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-ppc64el.so.0.0.0 elf
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-ppc64el.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-ppc64el.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-ppc64el.so.0.0.0 elf
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-ppc64el.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-ppc64el.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-ppc64el.so elf
binutils-powerpc64le-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-ppc64el.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-powerpc64le-linux-gnu done
binutils-powerpc64le-linux-gnu-dbg done
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-addr2line elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ar elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-as elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-c++filt elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-elfedit elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-gprof elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ld.bfd elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-nm elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objcopy elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objdump elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ranlib elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-readelf elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-size elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strings elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strip elf
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/bin/riscv64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/lib/riscv64-linux-gnu/bfd-plugins/libdep.so elf
binutils-riscv64-linux-gnu /usr/lib/riscv64-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-riscv64.so elf
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-riscv64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-riscv64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-riscv64.so.0.0.0 elf
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-riscv64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-riscv64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-riscv64.so.0.0.0 elf
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-riscv64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-riscv64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-riscv64.so elf
binutils-riscv64-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-riscv64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-riscv64-linux-gnu done
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-addr2line elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ar elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-as elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-c++filt elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-elfedit elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-gprof elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.bfd elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-nm elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objcopy elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objdump elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ranlib elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-readelf elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-size elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strings elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strip elf
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/bin/s390x-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/lib/s390x-linux-gnu/bfd-plugins/libdep.so elf
binutils-s390x-linux-gnu /usr/lib/s390x-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-s390x.so elf
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-s390x.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-s390x.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-s390x.so.0.0.0 elf
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-s390x.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-s390x.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-s390x.so.0.0.0 elf
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-s390x.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libctf-s390x.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-s390x.so elf
binutils-s390x-linux-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-s390x.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-s390x-linux-gnu done
binutils-s390x-linux-gnu-dbg done
binutils-x86-64-gnu /usr/bin/x86_64-gnu-addr2line elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ar elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-as elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-c++filt elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-elfedit elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-gprof elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.bfd elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mips.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=sparc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=tilegx.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-nm elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objcopy elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objdump elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ranlib elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-readelf elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-size elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strings elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strip elf
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/bin/x86_64-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/lib/x86_64-gnu/bfd-plugins/libdep.so elf
binutils-x86-64-gnu /usr/lib/x86_64-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-amd64.so elf
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-hurd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-amd64.so.0.0.0 elf
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-amd64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-hurd-amd64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-amd64.so.0.0.0 elf
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-amd64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-hurd-amd64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-hurd-amd64.so elf
binutils-x86-64-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-hurd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-gnu done
binutils-x86-64-gnu-dbg done
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-addr2line elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ar elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-as elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-c++filt elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-elfedit elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-gprof elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.bfd elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=aarch64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm-reloc-property.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=arm.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=attributes.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mips.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=powerpc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=s390.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=sparc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=tilegx.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-nm elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objcopy elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objdump elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ranlib elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-readelf elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-size elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strings elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strip elf
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/bin/x86_64-kfreebsd-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-kfreebsd-gnu/bfd-plugins/libdep.so elf
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-kfreebsd-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-amd64.so elf
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libbfd-2.42-kfreebsd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-amd64.so.0.0.0 elf
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-amd64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-kfreebsd-amd64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-amd64.so.0.0.0 elf
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-amd64.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libctf-nobfd-kfreebsd-amd64.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-kfreebsd-amd64.so elf
binutils-x86-64-kfreebsd-gnu /usr/lib/x86_64-linux-gnu/libopcodes-2.42-kfreebsd-amd64.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-kfreebsd-gnu done
binutils-x86-64-kfreebsd-gnu-dbg done
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-addr2line elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-addr2line produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ar elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ar produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-as elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-as produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-c++filt elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-c++filt produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-dwp produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fasynchronous-unwind-tables -fcf-protection=full -frandom-seed=dwp -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-elfedit elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-elfedit produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-archive elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-archive produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-archive produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-archive produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-collect-app elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-collect-app produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-collect-app produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-collect-app produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-src elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-src produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-src produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-src produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-text elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-text produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-text produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gp-display-text produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprof elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprof produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprofng elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprofng produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprofng produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-gprofng produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.bfd elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -flto -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.bfd produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ld.gold produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fasynchronous-unwind-tables -fcf-protection=full -frandom-seed=ld-new -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-nm elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-nm produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objcopy elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objcopy produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objdump elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-objdump produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ranlib elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-ranlib produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-readelf elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-readelf produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-size elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-size produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strings elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strings produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strip elf
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fprofile-use -flto -ffat-lto-objects -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnu /usr/bin/x86_64-linux-gnu-strip produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fpic -fasynchronous-unwind-tables -fcf-protection=full -fprofile-use -ffat-lto-objects -fltrans
binutils-x86-64-linux-gnu /usr/lib/x86_64-linux-gnu/bfd-plugins/libdep.so elf
binutils-x86-64-linux-gnu /usr/lib/x86_64-linux-gnu/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -flto -fprofile-use -flto -ffat-lto-objects -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnu /usr/lib/x86_64-linux-gnu/bfd-plugins/libdep.so produced-by GNU GIMPLE 13.2.0 -mtune=generic -march=x86-64 -g -O2 -O2 -fno-openmp -fno-openacc -fasynchronous-unwind-tables -fcf-protection=full -fPIC -fprofile-use -fltrans
binutils-x86-64-linux-gnu done
binutils-x86-64-linux-gnu-dbg done
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-addr2line elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-addr2line produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ar elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ar produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-as elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-as produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-c++filt elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-c++filt produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwp.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-dwp produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-elfedit elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-elfedit produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-gprof elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-gprof produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.bfd elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.bfd produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=archive.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=binary.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=common.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=compressed_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=copy-relocs.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=cref.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=defstd.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=descriptors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dirsearch.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dwarf_reader.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=dynobj.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=ehframe.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=errors.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=expression.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=fileread.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gdb-index.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=gold.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=i386.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=icf.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=incremental.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=int_encoding.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=layout.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=main.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=mapfile.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=merge.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=nacl.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=object.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=options.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=parameters.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=plugin.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=readsyms.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reduced_debug_output.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=reloc.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=resolve.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script-sections.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=script.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=stringpool.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=symtab.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target-select.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=target.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=timer.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=version.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue-threads.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=workqueue.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C++17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=x86_64.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ld.gold produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -frandom-seed=yyscript.o -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-nm elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-nm produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objcopy elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objcopy produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objdump elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-objdump produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ranlib elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-ranlib produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-readelf elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-readelf produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-size elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-size produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strings elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strings produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strip elf
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/bin/x86_64-linux-gnux32-strip produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libbfd-2.42-x32.so elf
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libbfd-2.42-x32.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libbfd-2.42-x32.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-nobfd-x32.so.0.0.0 elf
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-nobfd-x32.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-nobfd-x32.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-x32.so.0.0.0 elf
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-x32.so.0.0.0 produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fcf-protection=full -fpic -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libctf-x32.so.0.0.0 produced-by GNU C99 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libopcodes-2.42-x32.so elf
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnu/libopcodes-2.42-x32.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnux32/bfd-plugins/libdep.so elf
binutils-x86-64-linux-gnux32 /usr/lib/x86_64-linux-gnux32/bfd-plugins/libdep.so produced-by GNU C17 13.2.0 -mtune=generic -march=x86-64 -g -g -O2 -O2 -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
binutils-x86-64-linux-gnux32 done
binutils-x86-64-linux-gnux32-dbg done
bison /usr/bin/bison elf
bison /usr/bin/bison produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bison /usr/bin/bison produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bison done
bison-doc done
blt done
blt-dev /usr/lib/libBLT25.a elf
blt-dev /usr/lib/libBLT25.a using-binary
blt-dev /usr/lib/libBLT25.a crash
blt-dev /usr/lib/libBLTlite25.a elf
blt-dev /usr/lib/libBLTlite25.a using-binary
blt-dev /usr/lib/libBLTlite25.a crash
blt-dev done
bluez /usr/bin/bluemoon elf
bluez /usr/bin/bluemoon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/bluemoon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/bluemoon produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/bluetoothctl elf
bluez /usr/bin/bluetoothctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/bluetoothctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/bluetoothctl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/btattach elf
bluez /usr/bin/btattach produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btattach produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btattach produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/btmgmt elf
bluez /usr/bin/btmgmt produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btmgmt produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btmgmt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/btmon elf
bluez /usr/bin/btmon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btmon produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/btmon produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/ciptool elf
bluez /usr/bin/ciptool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/ciptool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/ciptool produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/gatttool elf
bluez /usr/bin/gatttool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/gatttool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/gatttool produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/hciattach elf
bluez /usr/bin/hciattach produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hciattach produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hciattach produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/hciconfig elf
bluez /usr/bin/hciconfig produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hciconfig produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hciconfig produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/hcitool elf
bluez /usr/bin/hcitool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hcitool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hcitool produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/hex2hcd elf
bluez /usr/bin/hex2hcd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/hex2hcd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/l2ping elf
bluez /usr/bin/l2ping produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/l2ping produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/l2ping produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/l2test elf
bluez /usr/bin/l2test produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/l2test produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/l2test produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/mpris-proxy elf
bluez /usr/bin/mpris-proxy produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/mpris-proxy produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/mpris-proxy produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/obexctl elf
bluez /usr/bin/obexctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/obexctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/obexctl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/rctest elf
bluez /usr/bin/rctest produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/rctest produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/rctest produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/rfcomm elf
bluez /usr/bin/rfcomm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/rfcomm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/rfcomm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/bin/sdptool elf
bluez /usr/bin/sdptool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/sdptool produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/bin/sdptool produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/lib/udev/hid2hci elf
bluez /usr/lib/udev/hid2hci produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/lib/udev/hid2hci produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez /usr/libexec/bluetooth/bluetoothd elf
bluez /usr/libexec/bluetooth/bluetoothd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/libexec/bluetooth/bluetoothd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez /usr/libexec/bluetooth/bluetoothd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez done
bluez-cups /usr/lib/cups/backend/bluetooth elf
bluez-cups /usr/lib/cups/backend/bluetooth produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez-cups /usr/lib/cups/backend/bluetooth produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez-cups /usr/lib/cups/backend/bluetooth produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez-cups done
bluez-obexd /usr/libexec/bluetooth/obexd elf
bluez-obexd /usr/libexec/bluetooth/obexd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fPIC -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez-obexd /usr/libexec/bluetooth/obexd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bluez-obexd /usr/libexec/bluetooth/obexd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -g -O2 -O2 -fno-openmp -fno-openacc -fcf-protection=full -fasynchronous-unwind-tables -fPIC -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bluez-obexd done
bogl-bterm /usr/bin/bterm elf
bogl-bterm /usr/bin/bterm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bogl-bterm /usr/bin/bterm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
bogl-bterm done
bogl-utils /usr/bin/bdftobogl elf
bogl-utils /usr/bin/bdftobogl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bogl-utils /usr/bin/bdftobogl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
bogl-utils /usr/bin/pngtobogl elf
bogl-utils /usr/bin/pngtobogl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bogl-utils /usr/bin/pngtobogl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bogl-utils /usr/bin/reduce-font elf
bogl-utils /usr/bin/reduce-font produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bogl-utils /usr/bin/reduce-font produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bogl-utils done
bolt /usr/bin/boltctl elf
bolt /usr/bin/boltctl produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fstack-protector-strong -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bolt /usr/bin/boltctl produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fstack-protector-strong -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bolt /usr/bin/boltctl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
bolt /usr/libexec/boltd elf
bolt /usr/libexec/boltd produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fstack-protector-strong -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bolt /usr/libexec/boltd produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fstack-protector-strong -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bolt /usr/libexec/boltd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fltrans
bolt done
bonnie++ /usr/bin/bon_csv2html elf
bonnie++ /usr/bin/bon_csv2html produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ /usr/bin/generate_randfile elf
bonnie++ /usr/bin/generate_randfile produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ /usr/sbin/bonnie++ elf
bonnie++ /usr/sbin/bonnie++ produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ /usr/sbin/getc_putc elf
bonnie++ /usr/sbin/getc_putc produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ /usr/sbin/getc_putc_helper elf
bonnie++ /usr/sbin/getc_putc_helper produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ /usr/sbin/zcav elf
bonnie++ /usr/sbin/zcav produced-by GNU C++11 13.2.0 -mtune=generic -march=x86-64 -g -O2 -std=c++11 -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection
bonnie++ done
boot-managed-by-snapd /usr/libexec/boot-managed-by-snapd elf
boot-managed-by-snapd /usr/libexec/boot-managed-by-snapd produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -fstack-protector-strong -fcf-protection=full -flto -ffat-lto-objects -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
boot-managed-by-snapd /usr/libexec/boot-managed-by-snapd produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
boot-managed-by-snapd done
bpfcc-tools done
bpftrace /usr/bin/bpftrace elf
bpftrace /usr/bin/bpftrace no-dbgsym
bpftrace /usr/bin/bpftrace-aotrt elf
bpftrace /usr/bin/bpftrace-aotrt no-dbgsym
bpftrace done
bridge-utils /sbin/brctl elf
bridge-utils /sbin/brctl produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bridge-utils /sbin/brctl produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
bridge-utils done
brltty /bin/brltty elf
brltty /bin/brltty produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /bin/brltty produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /bin/brltty produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybal.so elf
brltty /lib/brltty/libbrlttybal.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybal.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybat.so elf
brltty /lib/brltty/libbrlttybat.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybat.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybba.so elf
brltty /lib/brltty/libbrlttybba.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybba.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbc.so elf
brltty /lib/brltty/libbrlttybbc.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbd.so elf
brltty /lib/brltty/libbrlttybbd.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbg.so elf
brltty /lib/brltty/libbrlttybbg.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbg.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbl.so elf
brltty /lib/brltty/libbrlttybbl.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbl.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbm.so elf
brltty /lib/brltty/libbrlttybbm.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybbn.so elf
brltty /lib/brltty/libbrlttybbn.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybbn.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybcb.so elf
brltty /lib/brltty/libbrlttybcb.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybcb.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybce.so elf
brltty /lib/brltty/libbrlttybce.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybce.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybcn.so elf
brltty /lib/brltty/libbrlttybcn.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybcn.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybdp.so elf
brltty /lib/brltty/libbrlttybdp.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybdp.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybec.so elf
brltty /lib/brltty/libbrlttybec.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybec.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybeu.so elf
brltty /lib/brltty/libbrlttybeu.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybeu.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybfa.so elf
brltty /lib/brltty/libbrlttybfa.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybfa.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybfs.so elf
brltty /lib/brltty/libbrlttybfs.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybfs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybhd.so elf
brltty /lib/brltty/libbrlttybhd.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybhd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybhm.so elf
brltty /lib/brltty/libbrlttybhm.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybhm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybht.so elf
brltty /lib/brltty/libbrlttybht.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybht.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybhw.so elf
brltty /lib/brltty/libbrlttybhw.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybhw.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybic.so elf
brltty /lib/brltty/libbrlttybic.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybic.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybir.so elf
brltty /lib/brltty/libbrlttybir.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybir.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyblt.so elf
brltty /lib/brltty/libbrlttyblt.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyblt.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybmb.so elf
brltty /lib/brltty/libbrlttybmb.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybmb.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybmd.so elf
brltty /lib/brltty/libbrlttybmd.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybmd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybmm.so elf
brltty /lib/brltty/libbrlttybmm.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybmm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybmn.so elf
brltty /lib/brltty/libbrlttybmn.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybmn.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybmt.so elf
brltty /lib/brltty/libbrlttybmt.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybmt.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybnp.so elf
brltty /lib/brltty/libbrlttybnp.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybnp.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybpg.so elf
brltty /lib/brltty/libbrlttybpg.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybpg.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybpm.so elf
brltty /lib/brltty/libbrlttybpm.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybpm.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybsk.so elf
brltty /lib/brltty/libbrlttybsk.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybsk.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybtn.so elf
brltty /lib/brltty/libbrlttybtn.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybtn.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybts.so elf
brltty /lib/brltty/libbrlttybts.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybts.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybtt.so elf
brltty /lib/brltty/libbrlttybtt.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybtt.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybvd.so elf
brltty /lib/brltty/libbrlttybvd.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybvd.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybvo.so elf
brltty /lib/brltty/libbrlttybvo.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybvo.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybvr.so elf
brltty /lib/brltty/libbrlttybvr.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybvr.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttybvs.so elf
brltty /lib/brltty/libbrlttybvs.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttybvs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttysal.so elf
brltty /lib/brltty/libbrlttysal.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttysal.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttysbl.so elf
brltty /lib/brltty/libbrlttysbl.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttysbl.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyscb.so elf
brltty /lib/brltty/libbrlttyscb.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyscb.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttysfv.so elf
brltty /lib/brltty/libbrlttysfv.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttysfv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttysgs.so elf
brltty /lib/brltty/libbrlttysgs.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttysgs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttysxs.so elf
brltty /lib/brltty/libbrlttysxs.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttysxs.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyxem.so elf
brltty /lib/brltty/libbrlttyxem.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyxem.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyxfv.so elf
brltty /lib/brltty/libbrlttyxfv.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyxfv.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyxlx.so elf
brltty /lib/brltty/libbrlttyxlx.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyxlx.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /lib/brltty/libbrlttyxsc.so elf
brltty /lib/brltty/libbrlttyxsc.so produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /lib/brltty/libbrlttyxsc.so produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-atb elf
brltty /usr/bin/brltty-atb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-atb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-atb produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-clip elf
brltty /usr/bin/brltty-clip produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-clip produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-clip produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-ctb elf
brltty /usr/bin/brltty-ctb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ctb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ctb produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-hid elf
brltty /usr/bin/brltty-hid produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-hid produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-ktb elf
brltty /usr/bin/brltty-ktb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ktb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ktb produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-lscmds elf
brltty /usr/bin/brltty-lscmds produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-lscmds produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-lscmds produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-morse elf
brltty /usr/bin/brltty-morse produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-morse produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-morse produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-trtxt elf
brltty /usr/bin/brltty-trtxt produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-trtxt produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-trtxt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-ttb elf
brltty /usr/bin/brltty-ttb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ttb produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-ttb produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/brltty-tune elf
brltty /usr/bin/brltty-tune produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-tune produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/brltty-tune produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/eutp elf
brltty /usr/bin/eutp produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/eutp produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty /usr/bin/vstp elf
brltty /usr/bin/vstp produced-by GNU C99 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -std=gnu99 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
brltty /usr/bin/vstp produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
brltty done
bsd-mailx /usr/bin/bsd-mailx elf
bsd-mailx /usr/bin/bsd-mailx produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsd-mailx /usr/bin/bsd-mailx produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
bsd-mailx done
bsdextrautils /usr/bin/col elf
bsdextrautils /usr/bin/col produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/col produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/col produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/colcrt elf
bsdextrautils /usr/bin/colcrt produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/colcrt produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/colrm elf
bsdextrautils /usr/bin/colrm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/colrm produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/colrm produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/column elf
bsdextrautils /usr/bin/column produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/column produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/column produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/hexdump elf
bsdextrautils /usr/bin/hexdump produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/hexdump produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/hexdump produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/look elf
bsdextrautils /usr/bin/look produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/look produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/ul elf
bsdextrautils /usr/bin/ul produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/ul produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils /usr/bin/write elf
bsdextrautils /usr/bin/write produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/write produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdextrautils /usr/bin/write produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdextrautils done
bsdutils /usr/bin/logger elf
bsdutils /usr/bin/logger produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/logger produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/logger produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils /usr/bin/renice elf
bsdutils /usr/bin/renice produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/renice produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils /usr/bin/script elf
bsdutils /usr/bin/script produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/script produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/script produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils /usr/bin/scriptlive elf
bsdutils /usr/bin/scriptlive produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/scriptlive produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/scriptlive produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils /usr/bin/scriptreplay elf
bsdutils /usr/bin/scriptreplay produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/scriptreplay produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/scriptreplay produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils /usr/bin/wall elf
bsdutils /usr/bin/wall produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/wall produced-by GNU C17 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -fsigned-char -fno-common -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
bsdutils /usr/bin/wall produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fsigned-char -fno-common -fno-omit-frame-pointer -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -ffat-lto-objects -fltrans
bsdutils done
btrfs-progs /bin/btrfs elf
btrfs-progs /bin/btrfs produced-by GNU AS 2.42
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -msse4.1 -mavx2 -msha -mtune=generic -march=x86-64 -g -Os -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
btrfs-progs /bin/btrfs-convert elf
btrfs-progs /bin/btrfs-convert produced-by GNU AS 2.42
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-convert produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -msse4.1 -mavx2 -msha -mtune=generic -march=x86-64 -g -Os -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
btrfs-progs /bin/btrfs-find-root elf
btrfs-progs /bin/btrfs-find-root produced-by GNU AS 2.42
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-find-root produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -msse4.1 -mavx2 -msha -mtune=generic -march=x86-64 -g -Os -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
btrfs-progs /bin/btrfs-image elf
btrfs-progs /bin/btrfs-image produced-by GNU AS 2.42
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-image produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -msse4.1 -mavx2 -msha -mtune=generic -march=x86-64 -g -Os -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
btrfs-progs /bin/btrfs-map-logical elf
btrfs-progs /bin/btrfs-map-logical produced-by GNU AS 2.42
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fPIC -fvisibility=hidden -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-map-logical produced-by GNU GIMPLE 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -msse4.1 -mavx2 -msha -mtune=generic -march=x86-64 -g -Os -fno-openmp -fno-openacc -fcf-protection=full -fPIC -fasynchronous-unwind-tables -ffat-lto-objects -fltrans
btrfs-progs /bin/btrfs-select-super elf
btrfs-progs /bin/btrfs-select-super produced-by GNU AS 2.42
btrfs-progs /bin/btrfs-select-super produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -mavx2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-select-super produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse2 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-select-super produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -msha -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong -fcf-protection=full -fno-strict-aliasing -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection
btrfs-progs /bin/btrfs-select-super produced-by GNU C11 13.2.0 -mno-omit-leaf-frame-pointer -msse4.1 -mtune=generic -march=x86-64 -g -Os -std=gnu11 -fno-omit-frame-pointer -flto -ffat-lto-objects -fstack-protector-strong
View raw

(Sorry about that, but we can’t show files that are this big right now.)

@julian-klode
Copy link
Author

It's worth pointing out the running log file is processed with:

grep --file=<(grep ' done$' log | awk '{print "^"$1" "}') log | LC_ALL=C sort -s -k1,1

to only show done packages, and keep it grouped and ordered as it's now fully parallel.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment