diff --git a/Dockerfile-ella b/Dockerfile-ella deleted file mode 100644 index b818539c..00000000 --- a/Dockerfile-ella +++ /dev/null @@ -1,296 +0,0 @@ -### Note: This DockerFile is adapted from https://github.com/ucb-bar/chipyard/blob/master/.circleci/images/Dockerfile which was adapted from: https://github.com/CircleCI-Public/example-images/openjdk -# This is a full chipyard setup, which will be built manually on-demand in the Tendermint Hardware Project at https://gitlab.com/virgohardware/core/ - -FROM ubuntu:18.04 - -MAINTAINER jacobgadikian@gmail.com - -# man directory is missing in some base images -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 -RUN apt-get update && \ - apt-get upgrade -y && \ - mkdir -p /usr/share/man/man1 && \ - apt-get install -y \ - bzip2 \ - ca-certificates \ - curl \ - git \ - gnupg \ - gzip \ - libfl2 \ - libfl-dev \ - locales \ - mercurial \ - python-minimal \ - python-pexpect-doc \ - netcat \ - net-tools \ - openssh-client \ - parallel \ - sudo \ - tar \ - unzip \ - wget \ - xvfb \ - xxd \ - zip \ - ccache \ - libgoogle-perftools-dev \ - numactl \ - zlib1g \ - jq \ - openjdk-11-jdk \ - maven \ - #sbt \# - ant \ - gradle - -#ADDED -RUN apt-get install -y apt-utils - -#ADDED: get sbt -#RUN apt-get install default-jdk -y && \ -# wget www.scala-lang.org/files/archive/scala-2.13.0.deb && \ -# dpkg -i scala*.deb && \ -# echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /#etc/apt/sources.list.d/sbt.list && \ -# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 #--recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 && \ -# apt-get install sbt -y && \ -# sbt test -RUN echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list && \ - curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add && \ - sudo apt-get update && \ - sudo apt-get install sbt - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Use unicode -RUN locale-gen C.UTF-8 || true -ENV LANG=C.UTF-8 - -# install jq -# RUN JQ_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/jq-latest" \ -# && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/jq $JQ_URL \ -# && chmod +x /usr/bin/jq \ -# && jq --version - -# Install Docker - -# Docker.com returns the URL of the latest binary when you hit a directory listing -# We curl this URL and `grep` the version out. -# The output looks like this: - -#> # To install, run the following commands as root: -#> curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-17.05.0-ce.tgz && tar --strip-components=1 -xvzf docker-17.05.0-ce.tgz -C /usr/local/bin -#> -#> # Then start docker in daemon mode: -#> /usr/local/bin/dockerd - -# RUN set -ex \ -# && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/x86_64/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ -# && DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/${DOCKER_VERSION}" \ -# && echo Docker URL: $DOCKER_URL \ -# && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ -# && ls -lha /tmp/docker.tgz \ -# && tar -xz -C /tmp -f /tmp/docker.tgz \ -# && mv /tmp/docker/* /usr/bin \ -# && rm -rf /tmp/docker /tmp/docker.tgz \ -# && which docker \ -# && (docker version || true) - -# docker compose -# RUN COMPOSE_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/docker-compose-latest" \ -# && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ -# && chmod +x /usr/bin/docker-compose \ -# && docker-compose version - -# install dockerize -# RUN DOCKERIZE_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/dockerize-latest.tar.gz" \ -# && curl --silent --show-error --location --fail --retry 3 --output /tmp/dockerize-linux-amd64.tar.gz $DOCKERIZE_URL \ -# && tar -C /usr/local/bin -xzvf /tmp/dockerize-linux-amd64.tar.gz \ -# && rm -rf /tmp/dockerize-linux-amd64.tar.gz \ -# && dockerize --version - -RUN groupadd --gid 3434 riscvuser \ - && useradd --uid 3434 --gid riscvuser --shell /bin/bash --create-home riscvuser \ - && echo 'riscvuser ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-riscvuser \ - && echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep - -# BEGIN IMAGE CUSTOMIZATIONS - -# cacerts from OpenJDK 9-slim to workaround http://bugs.java.com/view_bug.do?bug_id=8189357 -# AND https://github.com/docker-library/openjdk/issues/145 -# -# Created by running: -# docker run --rm openjdk:9-slim cat /etc/ssl/certs/java/cacerts | # aws s3 cp - s3://circle-downloads/circleci-images/cache/linux-amd64/openjdk-9-slim-cacerts --acl public-read -# RUN if java -fullversion 2>&1 | grep -q '"9.'; then curl --silent --show-error --location --fail --retry 3 --output /etc/ssl/certs/java/cacerts https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/openjdk-9-slim-cacerts; fi - -# Install Maven Version: 3.6.3 -# RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/apache-maven.tar.gz https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz \ -# && tar xf /tmp/apache-maven.tar.gz -C /opt/ \ -# && rm /tmp/apache-maven.tar.gz \ -# && ln -s /opt/apache-maven-* /opt/apache-maven \ -# && /opt/apache-maven/bin/mvn -version - -# Install Ant Version: 1.10.5 -# RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/apache-ant.tar.gz https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.tar.gz \ -# && tar xf /tmp/apache-ant.tar.gz -C /opt/ \ -# && ln -s /opt/apache-ant-* /opt/apache-ant \ -# && rm -rf /tmp/apache-ant.tar.gz \ -# && /opt/apache-ant/bin/ant -version - -# ENV ANT_HOME=/opt/apache-ant - -# Install Gradle Version: 5.0 -# RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/gradle.zip https://services.gradle.org/distributions/gradle-5.0-bin.zip \ -# && unzip -d /opt /tmp/gradle.zip \ -# && rm /tmp/gradle.zip \ -# && ln -s /opt/gradle-* /opt/gradle \ -# && /opt/gradle/bin/gradle -version - -# Install sbt from https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/sbt-latest.tgz -#RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/sbt.tgz https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/sbt-latest.tgz \ -# && tar -xzf /tmp/sbt.tgz -C /opt/ \ -# && rm /tmp/sbt.tgz \ -# && /opt/sbt/bin/sbt sbtVersion - -# Install openjfx -RUN apt-get update -RUN apt-get install -y --no-install-recommends openjfx - -# Add build-essential -RUN apt-get install -y build-essential - -# Add RISCV toolchain necessary dependencies -RUN apt-get update -RUN apt-get install -y \ - autoconf \ - automake \ - autotools-dev \ - babeltrace \ - bc \ - curl \ - device-tree-compiler \ - expat \ - flex \ - gawk \ - gperf \ - g++ \ - libexpat-dev \ - libgmp-dev \ - libmpc-dev \ - libmpfr-dev \ - libtool \ - libusb-1.0-0-dev \ - make \ - patchutils \ - pkg-config \ - python3 \ - texinfo \ - zlib1g-dev \ - rsync \ - bison \ - verilator - - -# Use specific bison version to bypass Verilator 4.034 issues -# TODO: When Verilator is bumped, use apt to get newest bison -# RUN wget https://ftp.gnu.org/gnu/bison/bison-3.5.4.tar.gz \ -# && tar -xvf bison-3.5.4.tar.gz \ -# && cd bison-3.5.4 \ -# && ./configure && make && make install - -# Check bison version is 3.5.4 -# RUN bison --version - -# Add minimal QEMU dependencies -RUN apt-get install -y \ - libfdt-dev \ - libglib2.0-dev \ - libpixman-1-dev - -# Install verilator -# RUN git clone http://git.veripool.org/git/verilator \ -# && cd verilator \ -# && git pull \ -# && git checkout v4.034 \ -# && autoconf && ./configure && make && make install - - -# Add HOME environment variable -ENV HOME="/home/riscvuser" - -# Update PATH for RISCV toolchain (note: hardcoded for CircleCI) -ENV RISCV="$HOME/riscv-tools-install" -ENV LD_LIBRARY_PATH="$RISCV/lib" -ENV PATH="$RISCV/bin:$PATH" - -WORKDIR $HOME -USER riscvuser - -# smoke test with path -RUN mvn -version \ - && ant -version \ - && gradle -version \ - && sbt sbtVersion \ - && verilator --version - -# remove extra folders -# RUN rm -rf project/ - -# Install Chipyard -RUN git clone https://github.com/schwarz-em/chipyard.git && \ - cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \ - ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - -#RUN ls $HOME/chipyard/toolchains/riscv-tools - -#RUN cd chipyard && \ -# printf '\n\n\n31\n1\n20\n' | sudo apt-get install -y #python3-pip python3.6-dev rsync libguestfs-tools expat ctags && #\ - -#RUN sudo apt install debconf-utils && \ -# dpkg-reconfigure keyboard-configuration && \ -# debconf-get-selections | grep keyboard-configuration > #selections.conf && \ -# debconf-set-selections < selections.conf && \ -# dpkg-reconfigure keyboard-configuration -f noninteractive - -# Stopping docker keyboard-config from disrupting ubuntu-req.sh -RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install keyboard-configuration && \ - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - - -RUN cd chipyard && \ - ./scripts/ubuntu-req.sh 1>/dev/null - -# Install riscv-tools -RUN cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \./scripts/build-toolchains.sh riscv-tools 1>/dev/null - -#ENTRYPOINT ["sh", "-c", "-l", "cd chipyard && . ./env.sh && #\"$@\"", "-s"] - -WORKDIR $HOME/chipyard -COPY ./entrypoint.sh entrypoint.sh -#USER root -#RUN chmod +x entrypoint.sh -#USER riscvuser -#WORKDIR $HOME -#ENTRYPOINT ["sh", "/home/riscvuser/chipyard/entrypoint.sh"] - -#env_file: ./env.sh - -#SHELL ["/bin/sh", "-c"] - -#RUN cd chipyard && \ - #git submodule update --init --recursive /home/#riscvuser/chipyard/toolchains/riscv-tools/riscv-#isa-sim -# git submodule update --init --recursive /home/riscvuser/#chipyard/toolchains/riscv-tools/riscv-gnu-toolchain - -# Install esp-tools -#RUN cd chipyard && \ -# export MAKEFLAGS=-"j $(nproc)" && \ -# ./scripts/build-toolchains.sh esp-tools 1>/dev/null - - -# END IMAGE CUSTOMIZATIONS - -CMD ["/bin/sh"] diff --git a/build-clone-entrypoint.txt b/build-clone-entrypoint.txt deleted file mode 100644 index 5bee04c7..00000000 --- a/build-clone-entrypoint.txt +++ /dev/null @@ -1,1294 +0,0 @@ -Script started on 2020-12-01 13:38:49-08:00 [TERM="xterm-256color" TTY="/dev/pts/2" COLUMNS="157" LINES="39"] -]0;ellas@ella-pc:~/ella-chipyard/chipyard[ellas@ella-pc chipyard]$ docker run -it 76b48e0d61ea bashbuild .realpath --helpdocker build .realpath --helpdocker build .run -it 76b48e0d61ea bash docker build - < Dcoekrockfeerfile-ella -Sending build context to Docker daemon 12.29kB -Step 1/27 : FROM ubuntu:18.04 - ---> 2c047404e52d -Step 2/27 : MAINTAINER jacobgadikian@gmail.com - ---> Using cache - ---> 59cc5c3469c1 -Step 3/27 : RUN apt-get update && apt-get upgrade -y && mkdir -p /usr/share/man/man1 && apt-get install -y bzip2 ca-certificates curl git gnupg gzip libfl2 libfl-dev locales mercurial python-minimal python-pexpect-doc netcat net-tools openssh-client parallel sudo tar unzip wget xvfb xxd zip ccache libgoogle-perftools-dev numactl zlib1g jq openjdk-11-jdk maven ant gradle - ---> Using cache - ---> 656ea25b0798 -Step 4/27 : RUN apt-get install -y apt-utils - ---> Using cache - ---> 6e2c44613dc4 -Step 5/27 : RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - ---> Using cache - ---> b4deda2bcc0d -Step 6/27 : RUN locale-gen C.UTF-8 || true - ---> Using cache - ---> 19d45d6a736c -Step 7/27 : ENV LANG=C.UTF-8 - ---> Using cache - ---> c8b35238122f -Step 8/27 : RUN groupadd --gid 3434 riscvuser && useradd --uid 3434 --gid riscvuser --shell /bin/bash --create-home riscvuser && echo 'riscvuser ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-riscvuser && echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep - ---> Using cache - ---> 430268aa3db4 -Step 9/27 : RUN apt-get update - ---> Running in 970790874da2 -Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease -Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] -Get:4 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1800 kB] -Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2131 kB] -Get:7 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1365 kB] -Get:8 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [230 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [259 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2227 kB] -Fetched 8263 kB in 15s (549 kB/s) -Reading package lists... -Removing intermediate container 970790874da2 - ---> ede8755f3c28 -Step 10/27 : RUN apt-get install -y --no-install-recommends openjfx - ---> Running in 0551ffe5b17e -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - adwaita-icon-theme dconf-gsettings-backend dconf-service fontconfig - glib-networking glib-networking-common glib-networking-services - gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme - humanity-icon-theme libavcodec57 libavformat57 libavutil55 libbluray2 - libcairo-gobject2 libcairo2 libchromaprint1 libcolord2 libcroco3 - libcrystalhd3 libdatrie1 libdconf1 libepoxy0 libgdk-pixbuf2.0-0 - libgdk-pixbuf2.0-common libgme0 libgraphite2-3 libgsm1 libgtk-3-0 - libgtk-3-common libgtk2.0-0 libgtk2.0-common libharfbuzz0b libjbig0 - libjson-glib-1.0-0 libjson-glib-1.0-common libmp3lame0 libmpg123-0 libogg0 - libopenjfx-java libopenjfx-jni libopenjp2-7 libopenmpt0 libopus0 - libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libproxy1v5 - librest-0.7-0 librsvg2-2 librsvg2-common libshine3 libsnappy1v5 - libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libssh-gcrypt-4 - libswresample2 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 - libva-drm2 libva-x11-2 libva2 libvdpau1 libvorbis0a libvorbisenc2 - libvorbisfile3 libvpx5 libwavpack1 libwayland-client0 libwayland-cursor0 - libwayland-egl1 libwebp6 libwebpmux3 libx264-152 libx265-146 libxcb-render0 - libxcb-shm0 libxcursor1 libxkbcommon0 libxvidcore4 libzvbi-common libzvbi0 - ubuntu-mono -Suggested packages: - libbluray-bdj colord firmware-crystalhd gvfs opus-tools librsvg2-bin speex -Recommended packages: - libaacs0 libgdk-pixbuf2.0-bin libgtk-3-bin libgail-common libgtk2.0-bin - va-driver-all | va-driver vdpau-driver-all | vdpau-driver openjfx-source -The following NEW packages will be installed: - adwaita-icon-theme dconf-gsettings-backend dconf-service fontconfig - glib-networking glib-networking-common glib-networking-services - gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme - humanity-icon-theme libavcodec57 libavformat57 libavutil55 libbluray2 - libcairo-gobject2 libcairo2 libchromaprint1 libcolord2 libcroco3 - libcrystalhd3 libdatrie1 libdconf1 libepoxy0 libgdk-pixbuf2.0-0 - libgdk-pixbuf2.0-common libgme0 libgraphite2-3 libgsm1 libgtk-3-0 - libgtk-3-common libgtk2.0-0 libgtk2.0-common libharfbuzz0b libjbig0 - libjson-glib-1.0-0 libjson-glib-1.0-common libmp3lame0 libmpg123-0 libogg0 - libopenjfx-java libopenjfx-jni libopenjp2-7 libopenmpt0 libopus0 - libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libproxy1v5 - librest-0.7-0 librsvg2-2 librsvg2-common libshine3 libsnappy1v5 - libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libssh-gcrypt-4 - libswresample2 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 - libva-drm2 libva-x11-2 libva2 libvdpau1 libvorbis0a libvorbisenc2 - libvorbisfile3 libvpx5 libwavpack1 libwayland-client0 libwayland-cursor0 - libwayland-egl1 libwebp6 libwebpmux3 libx264-152 libx265-146 libxcb-render0 - libxcb-shm0 libxcursor1 libxkbcommon0 libxvidcore4 libzvbi-common libzvbi0 - openjfx ubuntu-mono -0 upgraded, 90 newly installed, 0 to remove and 2 not upgraded. -Need to get 50.6 MB of archives. -After this operation, 188 MB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig amd64 2.12.6-0ubuntu2 [169 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libogg0 amd64 1.3.2-1 [17.2 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 hicolor-icon-theme all 0.17-2 [9976 B] -Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] -Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-common all 2.36.11-2 [4536 B] -Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-0 amd64 2.36.11-2 [165 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gtk-update-icon-cache amd64 3.22.30-1ubuntu4 [28.3 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-render0 amd64 1.13-2~ubuntu18.04 [14.7 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shm0 amd64 1.13-2~ubuntu18.04 [5600 B] -Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo2 amd64 1.15.10-2ubuntu0.1 [580 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] -Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai-data all 0.1.27-2 [133 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdatrie1 amd64 0.2.10-7 [17.8 kB] -Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai0 amd64 0.1.27-2 [18.0 kB] -Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpango-1.0-0 amd64 1.40.14-1ubuntu0.1 [153 kB] -Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-3 amd64 1.3.11-2 [78.7 kB] -Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz0b amd64 1.7.2-1ubuntu1 [232 kB] -Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangoft2-1.0-0 amd64 1.40.14-1ubuntu0.1 [33.2 kB] -Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangocairo-1.0-0 amd64 1.40.14-1ubuntu0.1 [20.8 kB] -Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 librsvg2-2 amd64 2.40.20-2ubuntu0.2 [98.6 kB] -Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 librsvg2-common amd64 2.40.20-2ubuntu0.2 [5064 B] -Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 humanity-icon-theme all 0.6.15 [1250 kB] -Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ubuntu-mono all 16.10+18.04.20181005-0ubuntu1 [149 kB] -Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 adwaita-icon-theme all 3.28.0-1ubuntu1 [3306 kB] -Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdconf1 amd64 0.26.0-2ubuntu3 [33.1 kB] -Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-service amd64 0.26.0-2ubuntu3 [28.4 kB] -Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-gsettings-backend amd64 0.26.0-2ubuntu3 [20.0 kB] -Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libproxy1v5 amd64 0.4.15-1ubuntu0.1 [48.3 kB] -Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 glib-networking-common all 2.56.0-1ubuntu0.1 [3476 B] -Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 glib-networking-services amd64 2.56.0-1ubuntu0.1 [8632 B] -Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 gsettings-desktop-schemas all 3.28.0-1ubuntu1 [27.8 kB] -Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 glib-networking amd64 2.56.0-1ubuntu0.1 [56.7 kB] -Get:34 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libva2 amd64 2.1.0-3 [47.6 kB] -Get:35 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libva-drm2 amd64 2.1.0-3 [6880 B] -Get:36 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libva-x11-2 amd64 2.1.0-3 [11.5 kB] -Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvdpau1 amd64 1.1.1-3ubuntu1 [25.5 kB] -Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libavutil55 amd64 7:3.4.8-0ubuntu0.2 [190 kB] -Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libcrystalhd3 amd64 1:0.0~git20110715.fdd2f19-12 [45.8 kB] -Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgsm1 amd64 1.0.13-4build1 [22.4 kB] -Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmp3lame0 amd64 3.100-2 [136 kB] -Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libopenjp2-7 amd64 2.3.0-2build0.18.04.1 [145 kB] -Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libopus0 amd64 1.1.2-1ubuntu1 [159 kB] -Get:44 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libshine3 amd64 3.1.1-1 [22.9 kB] -Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsnappy1v5 amd64 1.1.7-1 [16.0 kB] -Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libspeex1 amd64 1.2~rc1.2-1ubuntu2 [52.1 kB] -Get:47 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libsoxr0 amd64 0.1.2-3 [65.9 kB] -Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libswresample2 amd64 7:3.4.8-0ubuntu0.2 [55.2 kB] -Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtheora0 amd64 1.1.1+dfsg.1-14 [170 kB] -Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtwolame0 amd64 0.3.13-3 [46.7 kB] -Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvorbis0a amd64 1.3.5-4.2 [86.4 kB] -Get:52 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvorbisenc2 amd64 1.3.5-4.2 [70.7 kB] -Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libvpx5 amd64 1.7.0-3ubuntu0.18.04.1 [796 kB] -Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwavpack1 amd64 5.1.0-2ubuntu1.4 [76.6 kB] -Get:55 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] -Get:56 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] -Get:57 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libx264-152 amd64 2:0.152.2854+gite9a5903-2 [609 kB] -Get:58 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libx265-146 amd64 2.6-3 [1026 kB] -Get:59 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libxvidcore4 amd64 2:1.3.5-1 [200 kB] -Get:60 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libzvbi-common all 0.2.35-13 [32.1 kB] -Get:61 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libzvbi0 amd64 0.2.35-13 [235 kB] -Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libavcodec57 amd64 7:3.4.8-0ubuntu0.2 [4595 kB] -Get:63 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libbluray2 amd64 1:1.0.2-3 [141 kB] -Get:64 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libchromaprint1 amd64 1.4.3-1 [36.8 kB] -Get:65 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgme0 amd64 0.6.2-1 [121 kB] -Get:66 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpg123-0 amd64 1.25.10-1 [125 kB] -Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvorbisfile3 amd64 1.3.5-4.2 [16.0 kB] -Get:68 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpt0 amd64 0.3.6-1 [561 kB] -Get:69 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssh-gcrypt-4 amd64 0.8.0~20170825.94fa1e38-1ubuntu0.7 [172 kB] -Get:70 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libavformat57 amd64 7:3.4.8-0ubuntu0.2 [953 kB] -Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo-gobject2 amd64 1.15.10-2ubuntu0.1 [17.1 kB] -Get:72 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcolord2 amd64 1.3.3-2build1 [107 kB] -Get:73 http://archive.ubuntu.com/ubuntu bionic/main amd64 libepoxy0 amd64 1.4.3-1 [181 kB] -Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-common all 3.22.30-1ubuntu4 [229 kB] -Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjson-glib-1.0-common all 1.4.2-3ubuntu0.18.04.1 [3480 B] -Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjson-glib-1.0-0 amd64 1.4.2-3ubuntu0.18.04.1 [58.4 kB] -Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup2.4-1 amd64 2.62.1-1ubuntu0.4 [292 kB] -Get:78 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup-gnome2.4-1 amd64 2.62.1-1ubuntu0.4 [5088 B] -Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 librest-0.7-0 amd64 0.8.0-2 [31.8 kB] -Get:80 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-client0 amd64 1.16.0-1ubuntu1.1~18.04.3 [23.6 kB] -Get:81 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-cursor0 amd64 1.16.0-1ubuntu1.1~18.04.3 [10.1 kB] -Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-egl1 amd64 1.16.0-1ubuntu1.1~18.04.3 [5464 B] -Get:83 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcursor1 amd64 1:1.1.15-1 [19.8 kB] -Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxkbcommon0 amd64 0.8.2-1~ubuntu18.04.1 [97.8 kB] -Get:85 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-0 amd64 3.22.30-1ubuntu4 [2503 kB] -Get:86 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgtk2.0-common all 2.24.32-1ubuntu1 [125 kB] -Get:87 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgtk2.0-0 amd64 2.24.32-1ubuntu1 [1769 kB] -Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libopenjfx-jni amd64 11.0.2+1-1~18.04.2 [19.1 MB] -Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libopenjfx-java all 11.0.2+1-1~18.04.2 [7702 kB] -Get:90 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 openjfx amd64 11.0.2+1-1~18.04.2 [9032 B] -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -debconf: unable to initialize frontend: Readline -debconf: (This frontend requires a controlling tty.) -debconf: falling back to frontend: Teletype -dpkg-preconfigure: unable to re-open stdin: -Fetched 50.6 MB in 2min 18s (367 kB/s) -Selecting previously unselected package fontconfig. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 23466 files and directories currently installed.) -Preparing to unpack .../00-fontconfig_2.12.6-0ubuntu2_amd64.deb ... -Unpacking fontconfig (2.12.6-0ubuntu2) ... -Selecting previously unselected package libogg0:amd64. -Preparing to unpack .../01-libogg0_1.3.2-1_amd64.deb ... -Unpacking libogg0:amd64 (1.3.2-1) ... -Selecting previously unselected package hicolor-icon-theme. -Preparing to unpack .../02-hicolor-icon-theme_0.17-2_all.deb ... -Unpacking hicolor-icon-theme (0.17-2) ... -Selecting previously unselected package libjbig0:amd64. -Preparing to unpack .../03-libjbig0_2.1-3.1build1_amd64.deb ... -Unpacking libjbig0:amd64 (2.1-3.1build1) ... -Selecting previously unselected package libtiff5:amd64. -Preparing to unpack .../04-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... -Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... -Selecting previously unselected package libgdk-pixbuf2.0-common. -Preparing to unpack .../05-libgdk-pixbuf2.0-common_2.36.11-2_all.deb ... -Unpacking libgdk-pixbuf2.0-common (2.36.11-2) ... -Selecting previously unselected package libgdk-pixbuf2.0-0:amd64. -Preparing to unpack .../06-libgdk-pixbuf2.0-0_2.36.11-2_amd64.deb ... -Unpacking libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... -Selecting previously unselected package gtk-update-icon-cache. -Preparing to unpack .../07-gtk-update-icon-cache_3.22.30-1ubuntu4_amd64.deb ... -No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. -No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. -Unpacking gtk-update-icon-cache (3.22.30-1ubuntu4) ... -Selecting previously unselected package libxcb-render0:amd64. -Preparing to unpack .../08-libxcb-render0_1.13-2~ubuntu18.04_amd64.deb ... -Unpacking libxcb-render0:amd64 (1.13-2~ubuntu18.04) ... -Selecting previously unselected package libxcb-shm0:amd64. -Preparing to unpack .../09-libxcb-shm0_1.13-2~ubuntu18.04_amd64.deb ... -Unpacking libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ... -Selecting previously unselected package libcairo2:amd64. -Preparing to unpack .../10-libcairo2_1.15.10-2ubuntu0.1_amd64.deb ... -Unpacking libcairo2:amd64 (1.15.10-2ubuntu0.1) ... -Selecting previously unselected package libcroco3:amd64. -Preparing to unpack .../11-libcroco3_0.6.12-2_amd64.deb ... -Unpacking libcroco3:amd64 (0.6.12-2) ... -Selecting previously unselected package libthai-data. -Preparing to unpack .../12-libthai-data_0.1.27-2_all.deb ... -Unpacking libthai-data (0.1.27-2) ... -Selecting previously unselected package libdatrie1:amd64. -Preparing to unpack .../13-libdatrie1_0.2.10-7_amd64.deb ... -Unpacking libdatrie1:amd64 (0.2.10-7) ... -Selecting previously unselected package libthai0:amd64. -Preparing to unpack .../14-libthai0_0.1.27-2_amd64.deb ... -Unpacking libthai0:amd64 (0.1.27-2) ... -Selecting previously unselected package libpango-1.0-0:amd64. -Preparing to unpack .../15-libpango-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... -Unpacking libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Selecting previously unselected package libgraphite2-3:amd64. -Preparing to unpack .../16-libgraphite2-3_1.3.11-2_amd64.deb ... -Unpacking libgraphite2-3:amd64 (1.3.11-2) ... -Selecting previously unselected package libharfbuzz0b:amd64. -Preparing to unpack .../17-libharfbuzz0b_1.7.2-1ubuntu1_amd64.deb ... -Unpacking libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... -Selecting previously unselected package libpangoft2-1.0-0:amd64. -Preparing to unpack .../18-libpangoft2-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... -Unpacking libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Selecting previously unselected package libpangocairo-1.0-0:amd64. -Preparing to unpack .../19-libpangocairo-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... -Unpacking libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Selecting previously unselected package librsvg2-2:amd64. -Preparing to unpack .../20-librsvg2-2_2.40.20-2ubuntu0.2_amd64.deb ... -Unpacking librsvg2-2:amd64 (2.40.20-2ubuntu0.2) ... -Selecting previously unselected package librsvg2-common:amd64. -Preparing to unpack .../21-librsvg2-common_2.40.20-2ubuntu0.2_amd64.deb ... -Unpacking librsvg2-common:amd64 (2.40.20-2ubuntu0.2) ... -Selecting previously unselected package humanity-icon-theme. -Preparing to unpack .../22-humanity-icon-theme_0.6.15_all.deb ... -Unpacking humanity-icon-theme (0.6.15) ... -Selecting previously unselected package ubuntu-mono. -Preparing to unpack .../23-ubuntu-mono_16.10+18.04.20181005-0ubuntu1_all.deb ... -Unpacking ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ... -Selecting previously unselected package adwaita-icon-theme. -Preparing to unpack .../24-adwaita-icon-theme_3.28.0-1ubuntu1_all.deb ... -Unpacking adwaita-icon-theme (3.28.0-1ubuntu1) ... -Selecting previously unselected package libdconf1:amd64. -Preparing to unpack .../25-libdconf1_0.26.0-2ubuntu3_amd64.deb ... -Unpacking libdconf1:amd64 (0.26.0-2ubuntu3) ... -Selecting previously unselected package dconf-service. -Preparing to unpack .../26-dconf-service_0.26.0-2ubuntu3_amd64.deb ... -Unpacking dconf-service (0.26.0-2ubuntu3) ... -Selecting previously unselected package dconf-gsettings-backend:amd64. -Preparing to unpack .../27-dconf-gsettings-backend_0.26.0-2ubuntu3_amd64.deb ... -Unpacking dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ... -Selecting previously unselected package libproxy1v5:amd64. -Preparing to unpack .../28-libproxy1v5_0.4.15-1ubuntu0.1_amd64.deb ... -Unpacking libproxy1v5:amd64 (0.4.15-1ubuntu0.1) ... -Selecting previously unselected package glib-networking-common. -Preparing to unpack .../29-glib-networking-common_2.56.0-1ubuntu0.1_all.deb ... -Unpacking glib-networking-common (2.56.0-1ubuntu0.1) ... -Selecting previously unselected package glib-networking-services. -Preparing to unpack .../30-glib-networking-services_2.56.0-1ubuntu0.1_amd64.deb ... -Unpacking glib-networking-services (2.56.0-1ubuntu0.1) ... -Selecting previously unselected package gsettings-desktop-schemas. -Preparing to unpack .../31-gsettings-desktop-schemas_3.28.0-1ubuntu1_all.deb ... -Unpacking gsettings-desktop-schemas (3.28.0-1ubuntu1) ... -Selecting previously unselected package glib-networking:amd64. -Preparing to unpack .../32-glib-networking_2.56.0-1ubuntu0.1_amd64.deb ... -Unpacking glib-networking:amd64 (2.56.0-1ubuntu0.1) ... -Selecting previously unselected package libva2:amd64. -Preparing to unpack .../33-libva2_2.1.0-3_amd64.deb ... -Unpacking libva2:amd64 (2.1.0-3) ... -Selecting previously unselected package libva-drm2:amd64. -Preparing to unpack .../34-libva-drm2_2.1.0-3_amd64.deb ... -Unpacking libva-drm2:amd64 (2.1.0-3) ... -Selecting previously unselected package libva-x11-2:amd64. -Preparing to unpack .../35-libva-x11-2_2.1.0-3_amd64.deb ... -Unpacking libva-x11-2:amd64 (2.1.0-3) ... -Selecting previously unselected package libvdpau1:amd64. -Preparing to unpack .../36-libvdpau1_1.1.1-3ubuntu1_amd64.deb ... -Unpacking libvdpau1:amd64 (1.1.1-3ubuntu1) ... -Selecting previously unselected package libavutil55:amd64. -Preparing to unpack .../37-libavutil55_7%3a3.4.8-0ubuntu0.2_amd64.deb ... -Unpacking libavutil55:amd64 (7:3.4.8-0ubuntu0.2) ... -Selecting previously unselected package libcrystalhd3:amd64. -Preparing to unpack .../38-libcrystalhd3_1%3a0.0~git20110715.fdd2f19-12_amd64.deb ... -Unpacking libcrystalhd3:amd64 (1:0.0~git20110715.fdd2f19-12) ... -Selecting previously unselected package libgsm1:amd64. -Preparing to unpack .../39-libgsm1_1.0.13-4build1_amd64.deb ... -Unpacking libgsm1:amd64 (1.0.13-4build1) ... -Selecting previously unselected package libmp3lame0:amd64. -Preparing to unpack .../40-libmp3lame0_3.100-2_amd64.deb ... -Unpacking libmp3lame0:amd64 (3.100-2) ... -Selecting previously unselected package libopenjp2-7:amd64. -Preparing to unpack .../41-libopenjp2-7_2.3.0-2build0.18.04.1_amd64.deb ... -Unpacking libopenjp2-7:amd64 (2.3.0-2build0.18.04.1) ... -Selecting previously unselected package libopus0:amd64. -Preparing to unpack .../42-libopus0_1.1.2-1ubuntu1_amd64.deb ... -Unpacking libopus0:amd64 (1.1.2-1ubuntu1) ... -Selecting previously unselected package libshine3:amd64. -Preparing to unpack .../43-libshine3_3.1.1-1_amd64.deb ... -Unpacking libshine3:amd64 (3.1.1-1) ... -Selecting previously unselected package libsnappy1v5:amd64. -Preparing to unpack .../44-libsnappy1v5_1.1.7-1_amd64.deb ... -Unpacking libsnappy1v5:amd64 (1.1.7-1) ... -Selecting previously unselected package libspeex1:amd64. -Preparing to unpack .../45-libspeex1_1.2~rc1.2-1ubuntu2_amd64.deb ... -Unpacking libspeex1:amd64 (1.2~rc1.2-1ubuntu2) ... -Selecting previously unselected package libsoxr0:amd64. -Preparing to unpack .../46-libsoxr0_0.1.2-3_amd64.deb ... -Unpacking libsoxr0:amd64 (0.1.2-3) ... -Selecting previously unselected package libswresample2:amd64. -Preparing to unpack .../47-libswresample2_7%3a3.4.8-0ubuntu0.2_amd64.deb ... -Unpacking libswresample2:amd64 (7:3.4.8-0ubuntu0.2) ... -Selecting previously unselected package libtheora0:amd64. -Preparing to unpack .../48-libtheora0_1.1.1+dfsg.1-14_amd64.deb ... -Unpacking libtheora0:amd64 (1.1.1+dfsg.1-14) ... -Selecting previously unselected package libtwolame0:amd64. -Preparing to unpack .../49-libtwolame0_0.3.13-3_amd64.deb ... -Unpacking libtwolame0:amd64 (0.3.13-3) ... -Selecting previously unselected package libvorbis0a:amd64. -Preparing to unpack .../50-libvorbis0a_1.3.5-4.2_amd64.deb ... -Unpacking libvorbis0a:amd64 (1.3.5-4.2) ... -Selecting previously unselected package libvorbisenc2:amd64. -Preparing to unpack .../51-libvorbisenc2_1.3.5-4.2_amd64.deb ... -Unpacking libvorbisenc2:amd64 (1.3.5-4.2) ... -Selecting previously unselected package libvpx5:amd64. -Preparing to unpack .../52-libvpx5_1.7.0-3ubuntu0.18.04.1_amd64.deb ... -Unpacking libvpx5:amd64 (1.7.0-3ubuntu0.18.04.1) ... -Selecting previously unselected package libwavpack1:amd64. -Preparing to unpack .../53-libwavpack1_5.1.0-2ubuntu1.4_amd64.deb ... -Unpacking libwavpack1:amd64 (5.1.0-2ubuntu1.4) ... -Selecting previously unselected package libwebp6:amd64. -Preparing to unpack .../54-libwebp6_0.6.1-2_amd64.deb ... -Unpacking libwebp6:amd64 (0.6.1-2) ... -Selecting previously unselected package libwebpmux3:amd64. -Preparing to unpack .../55-libwebpmux3_0.6.1-2_amd64.deb ... -Unpacking libwebpmux3:amd64 (0.6.1-2) ... -Selecting previously unselected package libx264-152:amd64. -Preparing to unpack .../56-libx264-152_2%3a0.152.2854+gite9a5903-2_amd64.deb ... -Unpacking libx264-152:amd64 (2:0.152.2854+gite9a5903-2) ... -Selecting previously unselected package libx265-146:amd64. -Preparing to unpack .../57-libx265-146_2.6-3_amd64.deb ... -Unpacking libx265-146:amd64 (2.6-3) ... -Selecting previously unselected package libxvidcore4:amd64. -Preparing to unpack .../58-libxvidcore4_2%3a1.3.5-1_amd64.deb ... -Unpacking libxvidcore4:amd64 (2:1.3.5-1) ... -Selecting previously unselected package libzvbi-common. -Preparing to unpack .../59-libzvbi-common_0.2.35-13_all.deb ... -Unpacking libzvbi-common (0.2.35-13) ... -Selecting previously unselected package libzvbi0:amd64. -Preparing to unpack .../60-libzvbi0_0.2.35-13_amd64.deb ... -Unpacking libzvbi0:amd64 (0.2.35-13) ... -Selecting previously unselected package libavcodec57:amd64. -Preparing to unpack .../61-libavcodec57_7%3a3.4.8-0ubuntu0.2_amd64.deb ... -Unpacking libavcodec57:amd64 (7:3.4.8-0ubuntu0.2) ... -Selecting previously unselected package libbluray2:amd64. -Preparing to unpack .../62-libbluray2_1%3a1.0.2-3_amd64.deb ... -Unpacking libbluray2:amd64 (1:1.0.2-3) ... -Selecting previously unselected package libchromaprint1:amd64. -Preparing to unpack .../63-libchromaprint1_1.4.3-1_amd64.deb ... -Unpacking libchromaprint1:amd64 (1.4.3-1) ... -Selecting previously unselected package libgme0:amd64. -Preparing to unpack .../64-libgme0_0.6.2-1_amd64.deb ... -Unpacking libgme0:amd64 (0.6.2-1) ... -Selecting previously unselected package libmpg123-0:amd64. -Preparing to unpack .../65-libmpg123-0_1.25.10-1_amd64.deb ... -Unpacking libmpg123-0:amd64 (1.25.10-1) ... -Selecting previously unselected package libvorbisfile3:amd64. -Preparing to unpack .../66-libvorbisfile3_1.3.5-4.2_amd64.deb ... -Unpacking libvorbisfile3:amd64 (1.3.5-4.2) ... -Selecting previously unselected package libopenmpt0:amd64. -Preparing to unpack .../67-libopenmpt0_0.3.6-1_amd64.deb ... -Unpacking libopenmpt0:amd64 (0.3.6-1) ... -Selecting previously unselected package libssh-gcrypt-4:amd64. -Preparing to unpack .../68-libssh-gcrypt-4_0.8.0~20170825.94fa1e38-1ubuntu0.7_amd64.deb ... -Unpacking libssh-gcrypt-4:amd64 (0.8.0~20170825.94fa1e38-1ubuntu0.7) ... -Selecting previously unselected package libavformat57:amd64. -Preparing to unpack .../69-libavformat57_7%3a3.4.8-0ubuntu0.2_amd64.deb ... -Unpacking libavformat57:amd64 (7:3.4.8-0ubuntu0.2) ... -Selecting previously unselected package libcairo-gobject2:amd64. -Preparing to unpack .../70-libcairo-gobject2_1.15.10-2ubuntu0.1_amd64.deb ... -Unpacking libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ... -Selecting previously unselected package libcolord2:amd64. -Preparing to unpack .../71-libcolord2_1.3.3-2build1_amd64.deb ... -Unpacking libcolord2:amd64 (1.3.3-2build1) ... -Selecting previously unselected package libepoxy0:amd64. -Preparing to unpack .../72-libepoxy0_1.4.3-1_amd64.deb ... -Unpacking libepoxy0:amd64 (1.4.3-1) ... -Selecting previously unselected package libgtk-3-common. -Preparing to unpack .../73-libgtk-3-common_3.22.30-1ubuntu4_all.deb ... -Unpacking libgtk-3-common (3.22.30-1ubuntu4) ... -Selecting previously unselected package libjson-glib-1.0-common. -Preparing to unpack .../74-libjson-glib-1.0-common_1.4.2-3ubuntu0.18.04.1_all.deb ... -Unpacking libjson-glib-1.0-common (1.4.2-3ubuntu0.18.04.1) ... -Selecting previously unselected package libjson-glib-1.0-0:amd64. -Preparing to unpack .../75-libjson-glib-1.0-0_1.4.2-3ubuntu0.18.04.1_amd64.deb ... -Unpacking libjson-glib-1.0-0:amd64 (1.4.2-3ubuntu0.18.04.1) ... -Selecting previously unselected package libsoup2.4-1:amd64. -Preparing to unpack .../76-libsoup2.4-1_2.62.1-1ubuntu0.4_amd64.deb ... -Unpacking libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ... -Selecting previously unselected package libsoup-gnome2.4-1:amd64. -Preparing to unpack .../77-libsoup-gnome2.4-1_2.62.1-1ubuntu0.4_amd64.deb ... -Unpacking libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ... -Selecting previously unselected package librest-0.7-0:amd64. -Preparing to unpack .../78-librest-0.7-0_0.8.0-2_amd64.deb ... -Unpacking librest-0.7-0:amd64 (0.8.0-2) ... -Selecting previously unselected package libwayland-client0:amd64. -Preparing to unpack .../79-libwayland-client0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... -Unpacking libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Selecting previously unselected package libwayland-cursor0:amd64. -Preparing to unpack .../80-libwayland-cursor0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... -Unpacking libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Selecting previously unselected package libwayland-egl1:amd64. -Preparing to unpack .../81-libwayland-egl1_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... -Unpacking libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Selecting previously unselected package libxcursor1:amd64. -Preparing to unpack .../82-libxcursor1_1%3a1.1.15-1_amd64.deb ... -Unpacking libxcursor1:amd64 (1:1.1.15-1) ... -Selecting previously unselected package libxkbcommon0:amd64. -Preparing to unpack .../83-libxkbcommon0_0.8.2-1~ubuntu18.04.1_amd64.deb ... -Unpacking libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ... -Selecting previously unselected package libgtk-3-0:amd64. -Preparing to unpack .../84-libgtk-3-0_3.22.30-1ubuntu4_amd64.deb ... -Unpacking libgtk-3-0:amd64 (3.22.30-1ubuntu4) ... -Selecting previously unselected package libgtk2.0-common. -Preparing to unpack .../85-libgtk2.0-common_2.24.32-1ubuntu1_all.deb ... -Unpacking libgtk2.0-common (2.24.32-1ubuntu1) ... -Selecting previously unselected package libgtk2.0-0:amd64. -Preparing to unpack .../86-libgtk2.0-0_2.24.32-1ubuntu1_amd64.deb ... -Unpacking libgtk2.0-0:amd64 (2.24.32-1ubuntu1) ... -Selecting previously unselected package libopenjfx-jni. -Preparing to unpack .../87-libopenjfx-jni_11.0.2+1-1~18.04.2_amd64.deb ... -Unpacking libopenjfx-jni (11.0.2+1-1~18.04.2) ... -Selecting previously unselected package libopenjfx-java. -Preparing to unpack .../88-libopenjfx-java_11.0.2+1-1~18.04.2_all.deb ... -Unpacking libopenjfx-java (11.0.2+1-1~18.04.2) ... -Selecting previously unselected package openjfx. -Preparing to unpack .../89-openjfx_11.0.2+1-1~18.04.2_amd64.deb ... -Unpacking openjfx (11.0.2+1-1~18.04.2) ... -Setting up libtwolame0:amd64 (0.3.13-3) ... -Setting up libx264-152:amd64 (2:0.152.2854+gite9a5903-2) ... -Setting up libjson-glib-1.0-common (1.4.2-3ubuntu0.18.04.1) ... -Setting up libgtk2.0-common (2.24.32-1ubuntu1) ... -Setting up libxcb-render0:amd64 (1.13-2~ubuntu18.04) ... -Setting up libopenjp2-7:amd64 (2.3.0-2build0.18.04.1) ... -Setting up glib-networking-common (2.56.0-1ubuntu0.1) ... -Setting up libwavpack1:amd64 (5.1.0-2ubuntu1.4) ... -Setting up libjbig0:amd64 (2.1-3.1build1) ... -Setting up libsoxr0:amd64 (0.1.2-3) ... -Setting up libssh-gcrypt-4:amd64 (0.8.0~20170825.94fa1e38-1ubuntu0.7) ... -Setting up libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Setting up libproxy1v5:amd64 (0.4.15-1ubuntu0.1) ... -Setting up libbluray2:amd64 (1:1.0.2-3) ... -Setting up libvdpau1:amd64 (1.1.1-3ubuntu1) ... -Setting up libgdk-pixbuf2.0-common (2.36.11-2) ... -Setting up glib-networking-services (2.56.0-1ubuntu0.1) ... -Setting up libdatrie1:amd64 (0.2.10-7) ... -Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... -Setting up libshine3:amd64 (3.1.1-1) ... -Setting up libva2:amd64 (2.1.0-3) ... -Setting up libspeex1:amd64 (1.2~rc1.2-1ubuntu2) ... -Setting up libxvidcore4:amd64 (2:1.3.5-1) ... -Setting up libopus0:amd64 (1.1.2-1ubuntu1) ... -Setting up libx265-146:amd64 (2.6-3) ... -Setting up libjson-glib-1.0-0:amd64 (1.4.2-3ubuntu0.18.04.1) ... -Setting up libgraphite2-3:amd64 (1.3.11-2) ... -Setting up libcroco3:amd64 (0.6.12-2) ... -Setting up libogg0:amd64 (1.3.2-1) ... -Setting up libmp3lame0:amd64 (3.100-2) ... -Setting up libxcursor1:amd64 (1:1.1.15-1) ... -Setting up libcrystalhd3:amd64 (1:0.0~git20110715.fdd2f19-12) ... -Setting up libepoxy0:amd64 (1.4.3-1) ... -Setting up libsnappy1v5:amd64 (1.1.7-1) ... -Setting up libva-drm2:amd64 (2.1.0-3) ... -Setting up libdconf1:amd64 (0.26.0-2ubuntu3) ... -Setting up libzvbi-common (0.2.35-13) ... -Setting up libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ... -Setting up libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ... -Setting up libvpx5:amd64 (1.7.0-3ubuntu0.18.04.1) ... -Setting up libgme0:amd64 (0.6.2-1) ... -Setting up libcolord2:amd64 (1.3.3-2build1) ... -Setting up libthai-data (0.1.27-2) ... -Setting up libzvbi0:amd64 (0.2.35-13) ... -Setting up libva-x11-2:amd64 (2.1.0-3) ... -Setting up libvorbis0a:amd64 (1.3.5-4.2) ... -Setting up libmpg123-0:amd64 (1.25.10-1) ... -Setting up hicolor-icon-theme (0.17-2) ... -Setting up libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Setting up libgsm1:amd64 (1.0.13-4build1) ... -Setting up libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... -Setting up fontconfig (2.12.6-0ubuntu2) ... -Regenerating fonts cache... done. -Setting up libwebp6:amd64 (0.6.1-2) ... -Setting up libvorbisfile3:amd64 (1.3.5-4.2) ... -Setting up libcairo2:amd64 (1.15.10-2ubuntu0.1) ... -Setting up libavutil55:amd64 (7:3.4.8-0ubuntu0.2) ... -Setting up dconf-service (0.26.0-2ubuntu3) ... -Setting up libopenmpt0:amd64 (0.3.6-1) ... -Setting up libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... -Setting up libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ... -Setting up libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... -Setting up libthai0:amd64 (0.1.27-2) ... -Setting up libswresample2:amd64 (7:3.4.8-0ubuntu0.2) ... -Setting up gtk-update-icon-cache (3.22.30-1ubuntu4) ... -Setting up libwebpmux3:amd64 (0.6.1-2) ... -Setting up libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Setting up libvorbisenc2:amd64 (1.3.5-4.2) ... -Setting up libtheora0:amd64 (1.1.1+dfsg.1-14) ... -Setting up dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ... -Setting up gsettings-desktop-schemas (3.28.0-1ubuntu1) ... -Setting up libgtk-3-common (3.22.30-1ubuntu4) ... -Setting up libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Setting up libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... -Setting up librsvg2-2:amd64 (2.40.20-2ubuntu0.2) ... -Setting up libavcodec57:amd64 (7:3.4.8-0ubuntu0.2) ... -Setting up librsvg2-common:amd64 (2.40.20-2ubuntu0.2) ... -Setting up libchromaprint1:amd64 (1.4.3-1) ... -Setting up libavformat57:amd64 (7:3.4.8-0ubuntu0.2) ... -Setting up adwaita-icon-theme (3.28.0-1ubuntu1) ... -update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -Setting up libgtk2.0-0:amd64 (2.24.32-1ubuntu1) ... -Setting up humanity-icon-theme (0.6.15) ... -Setting up ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ... -Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... -Processing triggers for libc-bin (2.27-3ubuntu1.3) ... -Setting up glib-networking:amd64 (2.56.0-1ubuntu0.1) ... -Setting up libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ... -Setting up libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ... -Setting up librest-0.7-0:amd64 (0.8.0-2) ... -Setting up libgtk-3-0:amd64 (3.22.30-1ubuntu4) ... -Setting up libopenjfx-jni (11.0.2+1-1~18.04.2) ... -Setting up libopenjfx-java (11.0.2+1-1~18.04.2) ... -Setting up openjfx (11.0.2+1-1~18.04.2) ... -Processing triggers for libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... -Processing triggers for libc-bin (2.27-3ubuntu1.3) ... -Removing intermediate container 0551ffe5b17e - ---> 8d5398ec77a4 -Step 11/27 : RUN apt-get install -y build-essential - ---> Running in 535c07c03fb8 -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - dpkg-dev fakeroot g++ g++-7 libalgorithm-diff-perl libalgorithm-diff-xs-perl - libalgorithm-merge-perl libdpkg-perl libfakeroot libfile-fcntllock-perl - liblocale-gettext-perl libstdc++-7-dev make -Suggested packages: - debian-keyring g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg bzr - libstdc++-7-doc make-doc -The following NEW packages will be installed: - build-essential dpkg-dev fakeroot g++ g++-7 libalgorithm-diff-perl - libalgorithm-diff-xs-perl libalgorithm-merge-perl libdpkg-perl libfakeroot - libfile-fcntllock-perl liblocale-gettext-perl libstdc++-7-dev make -0 upgraded, 14 newly installed, 0 to remove and 2 not upgraded. -Need to get 12.4 MB of archives. -After this operation, 47.6 MB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.5.0-3ubuntu1~18.04 [1471 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.5.0-3ubuntu1~18.04 [9697 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1568 B] -Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] -Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4758 B] -Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] -Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -debconf: unable to initialize frontend: Readline -debconf: (This frontend requires a controlling tty.) -debconf: falling back to frontend: Teletype -dpkg-preconfigure: unable to re-open stdin: -Fetched 12.4 MB in 34s (368 kB/s) -Selecting previously unselected package liblocale-gettext-perl. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 37182 files and directories currently installed.) -Preparing to unpack .../00-liblocale-gettext-perl_1.07-3build2_amd64.deb ... -Unpacking liblocale-gettext-perl (1.07-3build2) ... -Selecting previously unselected package libstdc++-7-dev:amd64. -Preparing to unpack .../01-libstdc++-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... -Unpacking libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... -Selecting previously unselected package g++-7. -Preparing to unpack .../02-g++-7_7.5.0-3ubuntu1~18.04_amd64.deb ... -Unpacking g++-7 (7.5.0-3ubuntu1~18.04) ... -Selecting previously unselected package g++. -Preparing to unpack .../03-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... -Unpacking g++ (4:7.4.0-1ubuntu2.3) ... -Selecting previously unselected package make. -Preparing to unpack .../04-make_4.1-9.1ubuntu1_amd64.deb ... -Unpacking make (4.1-9.1ubuntu1) ... -Selecting previously unselected package libdpkg-perl. -Preparing to unpack .../05-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... -Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... -Selecting previously unselected package dpkg-dev. -Preparing to unpack .../06-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... -Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... -Selecting previously unselected package build-essential. -Preparing to unpack .../07-build-essential_12.4ubuntu1_amd64.deb ... -Unpacking build-essential (12.4ubuntu1) ... -Selecting previously unselected package libfakeroot:amd64. -Preparing to unpack .../08-libfakeroot_1.22-2ubuntu1_amd64.deb ... -Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... -Selecting previously unselected package fakeroot. -Preparing to unpack .../09-fakeroot_1.22-2ubuntu1_amd64.deb ... -Unpacking fakeroot (1.22-2ubuntu1) ... -Selecting previously unselected package libalgorithm-diff-perl. -Preparing to unpack .../10-libalgorithm-diff-perl_1.19.03-1_all.deb ... -Unpacking libalgorithm-diff-perl (1.19.03-1) ... -Selecting previously unselected package libalgorithm-diff-xs-perl. -Preparing to unpack .../11-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... -Unpacking libalgorithm-diff-xs-perl (0.04-5) ... -Selecting previously unselected package libalgorithm-merge-perl. -Preparing to unpack .../12-libalgorithm-merge-perl_0.08-3_all.deb ... -Unpacking libalgorithm-merge-perl (0.08-3) ... -Selecting previously unselected package libfile-fcntllock-perl. -Preparing to unpack .../13-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... -Unpacking libfile-fcntllock-perl (0.22-3build2) ... -Setting up make (4.1-9.1ubuntu1) ... -Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... -Setting up libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... -Setting up libfile-fcntllock-perl (0.22-3build2) ... -Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... -Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... -Setting up libalgorithm-diff-perl (1.19.03-1) ... -Setting up liblocale-gettext-perl (1.07-3build2) ... -Setting up g++-7 (7.5.0-3ubuntu1~18.04) ... -Setting up fakeroot (1.22-2ubuntu1) ... -update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode -update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist -Setting up libalgorithm-merge-perl (0.08-3) ... -Setting up libalgorithm-diff-xs-perl (0.04-5) ... -Setting up g++ (4:7.4.0-1ubuntu2.3) ... -update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode -update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist -Setting up build-essential (12.4ubuntu1) ... -Processing triggers for ccache (3.4.1-1) ... -Updating symlinks in /usr/lib/ccache ... -Processing triggers for libc-bin (2.27-3ubuntu1.3) ... -Removing intermediate container 535c07c03fb8 - ---> 3c47ff47877d -Step 12/27 : RUN apt-get update - ---> Running in 3683d70a49b8 -Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease -Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease -Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease -Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease -Reading package lists... -Removing intermediate container 3683d70a49b8 - ---> dfad74d72940 -Step 13/27 : RUN apt-get install -y autoconf automake autotools-dev babeltrace bc curl device-tree-compiler expat flex gawk gperf g++ libexpat-dev libgmp-dev libmpc-dev libmpfr-dev libtool libusb-1.0-0-dev make patchutils pkg-config python3 texinfo zlib1g-dev rsync bison verilator - ---> Running in bbc5c768dce1 -Reading package lists... -Building dependency tree... -Reading state information... -flex is already the newest version (2.6.4-6). -flex set to manually installed. -make is already the newest version (4.1-9.1ubuntu1). -make set to manually installed. -curl is already the newest version (7.58.0-2ubuntu3.10). -g++ is already the newest version (4:7.4.0-1ubuntu2.3). -g++ set to manually installed. -The following additional packages will be installed: - libauthen-sasl-perl libbabeltrace1 libbison-dev libdata-dump-perl libdw1 - libencode-locale-perl libfile-listing-perl libfont-afm-perl libgmpxx4ldbl - libhtml-form-perl libhtml-format-perl libhtml-parser-perl - libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl - libhttp-daemon-perl libhttp-date-perl libhttp-message-perl - libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl libltdl-dev - libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl - libmpdec2 libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libpopt0 - libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib - libtext-unidecode-perl libtimedate-perl libtry-tiny-perl liburi-perl - libusb-1.0-0 libusb-1.0-doc libwww-perl libwww-robotrules-perl - libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl - libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl - perl-openssl-defaults python3-minimal python3.6 python3.6-minimal tex-common -Suggested packages: - autoconf-archive gnu-standards autoconf-doc gettext bison-doc gawk-doc - libdigest-hmac-perl libgssapi-perl gmp-doc libgmp10-doc libtool-doc - libcrypt-ssleay-perl libmpfr-doc gfortran | fortran95-compiler gcj-jdk - libauthen-ntlm-perl python3-doc python3-tk python3-venv python3.6-venv - python3.6-doc binfmt-support openssh-server debhelper texlive-base - texlive-latex-base texlive-generic-recommended texinfo-doc-nonfree - texlive-fonts-recommended gtkwave systemc -The following NEW packages will be installed: - autoconf automake autotools-dev babeltrace bc bison device-tree-compiler - expat gawk gperf libauthen-sasl-perl libbabeltrace1 libbison-dev - libdata-dump-perl libdw1 libencode-locale-perl libexpat1-dev - libfile-listing-perl libfont-afm-perl libgmp-dev libgmpxx4ldbl - libhtml-form-perl libhtml-format-perl libhtml-parser-perl - libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl - libhttp-daemon-perl libhttp-date-perl libhttp-message-perl - libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl libltdl-dev - libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl - libmpc-dev libmpdec2 libmpfr-dev libnet-http-perl libnet-smtp-ssl-perl - libnet-ssleay-perl libpopt0 libpython3-stdlib libpython3.6-minimal - libpython3.6-stdlib libtext-unidecode-perl libtimedate-perl libtool - libtry-tiny-perl liburi-perl libusb-1.0-0 libusb-1.0-0-dev libusb-1.0-doc - libwww-perl libwww-robotrules-perl libxml-libxml-perl - libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl - libxml-sax-expat-perl libxml-sax-perl patchutils perl-openssl-defaults - pkg-config python3 python3-minimal python3.6 python3.6-minimal rsync - tex-common texinfo verilator zlib1g-dev -0 upgraded, 76 newly installed, 0 to remove and 2 not upgraded. -Need to get 14.9 MB of archives. -After this operation, 70.1 MB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04ubuntu1.3 [533 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04ubuntu1.3 [1609 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] -Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04ubuntu1.3 [1713 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04ubuntu1.3 [203 kB] -Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7240 B] -Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 gawk amd64 1:4.1.4+dfsg-1build1 [401 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 tex-common all 6.09 [33.0 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpopt0 amd64 1.16-11 [26.2 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-0 amd64 2:1.0.21-2 [43.3 kB] -Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 rsync amd64 3.1.2-2.1ubuntu1.1 [334 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] -Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] -Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] -Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 bc amd64 1.07.1-2 [86.2 kB] -Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libbison-dev amd64 2:3.0.4.dfsg-1build1 [339 kB] -Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 bison amd64 2:3.0.4.dfsg-1build1 [266 kB] -Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 expat amd64 2.2.5-3ubuntu0.2 [15.0 kB] -Get:21 http://archive.ubuntu.com/ubuntu bionic/universe amd64 gperf amd64 3.1-1 [103 kB] -Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB] -Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdw1 amd64 0.170-0.4ubuntu0.1 [203 kB] -Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] -Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB] -Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] -Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-date-perl all 6.02-1 [10.4 kB] -Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-listing-perl all 6.04-1 [9774 B] -Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB] -Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgmpxx4ldbl amd64 2:6.1.2+dfsg-2 [8964 B] -Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgmp-dev amd64 2:6.1.2+dfsg-2 [316 kB] -Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tagset-perl all 3.20-3 [12.1 kB] -Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 liburi-perl all 1.73-1 [77.2 kB] -Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-parser-perl amd64 3.72-3build1 [85.9 kB] -Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-html-perl all 1.001-1 [14.9 kB] -Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-mediatypes-perl all 6.02-1 [21.7 kB] -Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-message-perl all 6.14-1 [72.1 kB] -Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-form-perl all 6.03-1 [23.5 kB] -Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tree-perl all 5.07-1 [200 kB] -Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB] -Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-cookies-perl all 6.04-1 [17.2 kB] -Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-daemon-perl all 6.01-1 [17.0 kB] -Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-negotiate-perl all 6.00-2 [13.4 kB] -Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 perl-openssl-defaults amd64 3build1 [7012 B] -Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnet-ssleay-perl amd64 1.84-1ubuntu0.2 [283 kB] -Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libio-socket-ssl-perl all 2.060-3~ubuntu18.04.1 [173 kB] -Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] -Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] -Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-http-perl all 6.17-1 [22.7 kB] -Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB] -Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwww-robotrules-perl all 6.01-1 [14.1 kB] -Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwww-perl all 6.31-1ubuntu0.1 [137 kB] -Get:53 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-protocol-https-perl all 6.07-2 [8284 B] -Get:54 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5948 B] -Get:55 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmailtools-perl all 2.18-1 [74.0 kB] -Get:56 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr-dev amd64 4.0.1-1 [249 kB] -Get:57 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libtext-unidecode-perl all 1.30-1 [99.0 kB] -Get:58 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] -Get:59 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-0-dev amd64 2:1.0.21-2 [60.5 kB] -Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-doc all 2:1.0.21-2 [170 kB] -Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-namespacesupport-perl all 1.12-1 [13.2 kB] -Get:62 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-base-perl all 1.09-1 [18.8 kB] -Get:63 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-perl all 0.99+dfsg-2ubuntu1 [64.6 kB] -Get:64 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-libxml-perl amd64 2.0128+dfsg-5 [316 kB] -Get:65 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-parser-perl amd64 2.44-2build3 [199 kB] -Get:66 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-expat-perl all 0.40-2 [11.5 kB] -Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 patchutils amd64 0.3.4-2 [71.1 kB] -Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 pkg-config amd64 0.29.1-0ubuntu2 [45.0 kB] -Get:69 http://archive.ubuntu.com/ubuntu bionic/universe amd64 texinfo amd64 6.5.0.dfsg.1-2 [752 kB] -Get:70 http://archive.ubuntu.com/ubuntu bionic/universe amd64 verilator amd64 3.916-1build1 [2878 kB] -Get:71 http://archive.ubuntu.com/ubuntu bionic/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-0ubuntu2 [176 kB] -Get:72 http://archive.ubuntu.com/ubuntu bionic/main amd64 libbabeltrace1 amd64 1.5.5-1 [154 kB] -Get:73 http://archive.ubuntu.com/ubuntu bionic/universe amd64 babeltrace amd64 1.5.5-1 [26.1 kB] -Get:74 http://archive.ubuntu.com/ubuntu bionic/main amd64 device-tree-compiler amd64 1.4.5-3 [239 kB] -Get:75 http://archive.ubuntu.com/ubuntu bionic/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] -Get:76 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc-dev amd64 1.1.0-1 [50.5 kB] -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -debconf: unable to initialize frontend: Readline -debconf: (This frontend requires a controlling tty.) -debconf: falling back to frontend: Teletype -dpkg-preconfigure: unable to re-open stdin: -Fetched 14.9 MB in 4s (3788 kB/s) -Selecting previously unselected package libpython3.6-minimal:amd64. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 38497 files and directories currently installed.) -Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04ubuntu1.3_amd64.deb ... -Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.3) ... -Selecting previously unselected package python3.6-minimal. -Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04ubuntu1.3_amd64.deb ... -Unpacking python3.6-minimal (3.6.9-1~18.04ubuntu1.3) ... -Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.3) ... -Setting up python3.6-minimal (3.6.9-1~18.04ubuntu1.3) ... -Selecting previously unselected package python3-minimal. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 38735 files and directories currently installed.) -Preparing to unpack .../python3-minimal_3.6.7-1~18.04_amd64.deb ... -Unpacking python3-minimal (3.6.7-1~18.04) ... -Selecting previously unselected package libmpdec2:amd64. -Preparing to unpack .../libmpdec2_2.4.2-1ubuntu1_amd64.deb ... -Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... -Selecting previously unselected package libpython3.6-stdlib:amd64. -Preparing to unpack .../libpython3.6-stdlib_3.6.9-1~18.04ubuntu1.3_amd64.deb ... -Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.3) ... -Selecting previously unselected package python3.6. -Preparing to unpack .../python3.6_3.6.9-1~18.04ubuntu1.3_amd64.deb ... -Unpacking python3.6 (3.6.9-1~18.04ubuntu1.3) ... -Selecting previously unselected package libpython3-stdlib:amd64. -Preparing to unpack .../libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... -Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... -Setting up python3-minimal (3.6.7-1~18.04) ... -Selecting previously unselected package python3. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 39139 files and directories currently installed.) -Preparing to unpack .../00-python3_3.6.7-1~18.04_amd64.deb ... -Unpacking python3 (3.6.7-1~18.04) ... -Selecting previously unselected package gawk. -Preparing to unpack .../01-gawk_1%3a4.1.4+dfsg-1build1_amd64.deb ... -Unpacking gawk (1:4.1.4+dfsg-1build1) ... -Selecting previously unselected package tex-common. -Preparing to unpack .../02-tex-common_6.09_all.deb ... -Unpacking tex-common (6.09) ... -Selecting previously unselected package libpopt0:amd64. -Preparing to unpack .../03-libpopt0_1.16-11_amd64.deb ... -Unpacking libpopt0:amd64 (1.16-11) ... -Selecting previously unselected package libusb-1.0-0:amd64. -Preparing to unpack .../04-libusb-1.0-0_2%3a1.0.21-2_amd64.deb ... -Unpacking libusb-1.0-0:amd64 (2:1.0.21-2) ... -Selecting previously unselected package rsync. -Preparing to unpack .../05-rsync_3.1.2-2.1ubuntu1.1_amd64.deb ... -Unpacking rsync (3.1.2-2.1ubuntu1.1) ... -Selecting previously unselected package autoconf. -Preparing to unpack .../06-autoconf_2.69-11_all.deb ... -Unpacking autoconf (2.69-11) ... -Selecting previously unselected package autotools-dev. -Preparing to unpack .../07-autotools-dev_20180224.1_all.deb ... -Unpacking autotools-dev (20180224.1) ... -Selecting previously unselected package automake. -Preparing to unpack .../08-automake_1%3a1.15.1-3ubuntu2_all.deb ... -Unpacking automake (1:1.15.1-3ubuntu2) ... -Selecting previously unselected package bc. -Preparing to unpack .../09-bc_1.07.1-2_amd64.deb ... -Unpacking bc (1.07.1-2) ... -Selecting previously unselected package libbison-dev:amd64. -Preparing to unpack .../10-libbison-dev_2%3a3.0.4.dfsg-1build1_amd64.deb ... -Unpacking libbison-dev:amd64 (2:3.0.4.dfsg-1build1) ... -Selecting previously unselected package bison. -Preparing to unpack .../11-bison_2%3a3.0.4.dfsg-1build1_amd64.deb ... -Unpacking bison (2:3.0.4.dfsg-1build1) ... -Selecting previously unselected package expat. -Preparing to unpack .../12-expat_2.2.5-3ubuntu0.2_amd64.deb ... -Unpacking expat (2.2.5-3ubuntu0.2) ... -Selecting previously unselected package gperf. -Preparing to unpack .../13-gperf_3.1-1_amd64.deb ... -Unpacking gperf (3.1-1) ... -Selecting previously unselected package libdata-dump-perl. -Preparing to unpack .../14-libdata-dump-perl_1.23-1_all.deb ... -Unpacking libdata-dump-perl (1.23-1) ... -Selecting previously unselected package libdw1:amd64. -Preparing to unpack .../15-libdw1_0.170-0.4ubuntu0.1_amd64.deb ... -Unpacking libdw1:amd64 (0.170-0.4ubuntu0.1) ... -Selecting previously unselected package libencode-locale-perl. -Preparing to unpack .../16-libencode-locale-perl_1.05-1_all.deb ... -Unpacking libencode-locale-perl (1.05-1) ... -Selecting previously unselected package libexpat1-dev:amd64. -Preparing to unpack .../17-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ... -Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... -Selecting previously unselected package libtimedate-perl. -Preparing to unpack .../18-libtimedate-perl_2.3000-2_all.deb ... -Unpacking libtimedate-perl (2.3000-2) ... -Selecting previously unselected package libhttp-date-perl. -Preparing to unpack .../19-libhttp-date-perl_6.02-1_all.deb ... -Unpacking libhttp-date-perl (6.02-1) ... -Selecting previously unselected package libfile-listing-perl. -Preparing to unpack .../20-libfile-listing-perl_6.04-1_all.deb ... -Unpacking libfile-listing-perl (6.04-1) ... -Selecting previously unselected package libfont-afm-perl. -Preparing to unpack .../21-libfont-afm-perl_1.20-2_all.deb ... -Unpacking libfont-afm-perl (1.20-2) ... -Selecting previously unselected package libgmpxx4ldbl:amd64. -Preparing to unpack .../22-libgmpxx4ldbl_2%3a6.1.2+dfsg-2_amd64.deb ... -Unpacking libgmpxx4ldbl:amd64 (2:6.1.2+dfsg-2) ... -Selecting previously unselected package libgmp-dev:amd64. -Preparing to unpack .../23-libgmp-dev_2%3a6.1.2+dfsg-2_amd64.deb ... -Unpacking libgmp-dev:amd64 (2:6.1.2+dfsg-2) ... -Selecting previously unselected package libhtml-tagset-perl. -Preparing to unpack .../24-libhtml-tagset-perl_3.20-3_all.deb ... -Unpacking libhtml-tagset-perl (3.20-3) ... -Selecting previously unselected package liburi-perl. -Preparing to unpack .../25-liburi-perl_1.73-1_all.deb ... -Unpacking liburi-perl (1.73-1) ... -Selecting previously unselected package libhtml-parser-perl. -Preparing to unpack .../26-libhtml-parser-perl_3.72-3build1_amd64.deb ... -Unpacking libhtml-parser-perl (3.72-3build1) ... -Selecting previously unselected package libio-html-perl. -Preparing to unpack .../27-libio-html-perl_1.001-1_all.deb ... -Unpacking libio-html-perl (1.001-1) ... -Selecting previously unselected package liblwp-mediatypes-perl. -Preparing to unpack .../28-liblwp-mediatypes-perl_6.02-1_all.deb ... -Unpacking liblwp-mediatypes-perl (6.02-1) ... -Selecting previously unselected package libhttp-message-perl. -Preparing to unpack .../29-libhttp-message-perl_6.14-1_all.deb ... -Unpacking libhttp-message-perl (6.14-1) ... -Selecting previously unselected package libhtml-form-perl. -Preparing to unpack .../30-libhtml-form-perl_6.03-1_all.deb ... -Unpacking libhtml-form-perl (6.03-1) ... -Selecting previously unselected package libhtml-tree-perl. -Preparing to unpack .../31-libhtml-tree-perl_5.07-1_all.deb ... -Unpacking libhtml-tree-perl (5.07-1) ... -Selecting previously unselected package libhtml-format-perl. -Preparing to unpack .../32-libhtml-format-perl_2.12-1_all.deb ... -Unpacking libhtml-format-perl (2.12-1) ... -Selecting previously unselected package libhttp-cookies-perl. -Preparing to unpack .../33-libhttp-cookies-perl_6.04-1_all.deb ... -Unpacking libhttp-cookies-perl (6.04-1) ... -Selecting previously unselected package libhttp-daemon-perl. -Preparing to unpack .../34-libhttp-daemon-perl_6.01-1_all.deb ... -Unpacking libhttp-daemon-perl (6.01-1) ... -Selecting previously unselected package libhttp-negotiate-perl. -Preparing to unpack .../35-libhttp-negotiate-perl_6.00-2_all.deb ... -Unpacking libhttp-negotiate-perl (6.00-2) ... -Selecting previously unselected package perl-openssl-defaults:amd64. -Preparing to unpack .../36-perl-openssl-defaults_3build1_amd64.deb ... -Unpacking perl-openssl-defaults:amd64 (3build1) ... -Selecting previously unselected package libnet-ssleay-perl. -Preparing to unpack .../37-libnet-ssleay-perl_1.84-1ubuntu0.2_amd64.deb ... -Unpacking libnet-ssleay-perl (1.84-1ubuntu0.2) ... -Selecting previously unselected package libio-socket-ssl-perl. -Preparing to unpack .../38-libio-socket-ssl-perl_2.060-3~ubuntu18.04.1_all.deb ... -Unpacking libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... -Selecting previously unselected package libltdl7:amd64. -Preparing to unpack .../39-libltdl7_2.4.6-2_amd64.deb ... -Unpacking libltdl7:amd64 (2.4.6-2) ... -Selecting previously unselected package libltdl-dev:amd64. -Preparing to unpack .../40-libltdl-dev_2.4.6-2_amd64.deb ... -Unpacking libltdl-dev:amd64 (2.4.6-2) ... -Selecting previously unselected package libnet-http-perl. -Preparing to unpack .../41-libnet-http-perl_6.17-1_all.deb ... -Unpacking libnet-http-perl (6.17-1) ... -Selecting previously unselected package libtry-tiny-perl. -Preparing to unpack .../42-libtry-tiny-perl_0.30-1_all.deb ... -Unpacking libtry-tiny-perl (0.30-1) ... -Selecting previously unselected package libwww-robotrules-perl. -Preparing to unpack .../43-libwww-robotrules-perl_6.01-1_all.deb ... -Unpacking libwww-robotrules-perl (6.01-1) ... -Selecting previously unselected package libwww-perl. -Preparing to unpack .../44-libwww-perl_6.31-1ubuntu0.1_all.deb ... -Unpacking libwww-perl (6.31-1ubuntu0.1) ... -Selecting previously unselected package liblwp-protocol-https-perl. -Preparing to unpack .../45-liblwp-protocol-https-perl_6.07-2_all.deb ... -Unpacking liblwp-protocol-https-perl (6.07-2) ... -Selecting previously unselected package libnet-smtp-ssl-perl. -Preparing to unpack .../46-libnet-smtp-ssl-perl_1.04-1_all.deb ... -Unpacking libnet-smtp-ssl-perl (1.04-1) ... -Selecting previously unselected package libmailtools-perl. -Preparing to unpack .../47-libmailtools-perl_2.18-1_all.deb ... -Unpacking libmailtools-perl (2.18-1) ... -Selecting previously unselected package libmpfr-dev:amd64. -Preparing to unpack .../48-libmpfr-dev_4.0.1-1_amd64.deb ... -Unpacking libmpfr-dev:amd64 (4.0.1-1) ... -Selecting previously unselected package libtext-unidecode-perl. -Preparing to unpack .../49-libtext-unidecode-perl_1.30-1_all.deb ... -Unpacking libtext-unidecode-perl (1.30-1) ... -Selecting previously unselected package libtool. -Preparing to unpack .../50-libtool_2.4.6-2_all.deb ... -Unpacking libtool (2.4.6-2) ... -Selecting previously unselected package libusb-1.0-0-dev:amd64. -Preparing to unpack .../51-libusb-1.0-0-dev_2%3a1.0.21-2_amd64.deb ... -Unpacking libusb-1.0-0-dev:amd64 (2:1.0.21-2) ... -Selecting previously unselected package libusb-1.0-doc. -Preparing to unpack .../52-libusb-1.0-doc_2%3a1.0.21-2_all.deb ... -Unpacking libusb-1.0-doc (2:1.0.21-2) ... -Selecting previously unselected package libxml-namespacesupport-perl. -Preparing to unpack .../53-libxml-namespacesupport-perl_1.12-1_all.deb ... -Unpacking libxml-namespacesupport-perl (1.12-1) ... -Selecting previously unselected package libxml-sax-base-perl. -Preparing to unpack .../54-libxml-sax-base-perl_1.09-1_all.deb ... -Unpacking libxml-sax-base-perl (1.09-1) ... -Selecting previously unselected package libxml-sax-perl. -Preparing to unpack .../55-libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb ... -Unpacking libxml-sax-perl (0.99+dfsg-2ubuntu1) ... -Selecting previously unselected package libxml-libxml-perl. -Preparing to unpack .../56-libxml-libxml-perl_2.0128+dfsg-5_amd64.deb ... -Unpacking libxml-libxml-perl (2.0128+dfsg-5) ... -Selecting previously unselected package libxml-parser-perl. -Preparing to unpack .../57-libxml-parser-perl_2.44-2build3_amd64.deb ... -Unpacking libxml-parser-perl (2.44-2build3) ... -Selecting previously unselected package libxml-sax-expat-perl. -Preparing to unpack .../58-libxml-sax-expat-perl_0.40-2_all.deb ... -Unpacking libxml-sax-expat-perl (0.40-2) ... -Selecting previously unselected package patchutils. -Preparing to unpack .../59-patchutils_0.3.4-2_amd64.deb ... -Unpacking patchutils (0.3.4-2) ... -Selecting previously unselected package pkg-config. -Preparing to unpack .../60-pkg-config_0.29.1-0ubuntu2_amd64.deb ... -Unpacking pkg-config (0.29.1-0ubuntu2) ... -Selecting previously unselected package texinfo. -Preparing to unpack .../61-texinfo_6.5.0.dfsg.1-2_amd64.deb ... -Unpacking texinfo (6.5.0.dfsg.1-2) ... -Selecting previously unselected package verilator. -Preparing to unpack .../62-verilator_3.916-1build1_amd64.deb ... -Unpacking verilator (3.916-1build1) ... -Selecting previously unselected package zlib1g-dev:amd64. -Preparing to unpack .../63-zlib1g-dev_1%3a1.2.11.dfsg-0ubuntu2_amd64.deb ... -Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... -Selecting previously unselected package libbabeltrace1:amd64. -Preparing to unpack .../64-libbabeltrace1_1.5.5-1_amd64.deb ... -Unpacking libbabeltrace1:amd64 (1.5.5-1) ... -Selecting previously unselected package babeltrace. -Preparing to unpack .../65-babeltrace_1.5.5-1_amd64.deb ... -Unpacking babeltrace (1.5.5-1) ... -Selecting previously unselected package device-tree-compiler. -Preparing to unpack .../66-device-tree-compiler_1.4.5-3_amd64.deb ... -Unpacking device-tree-compiler (1.4.5-3) ... -Selecting previously unselected package libauthen-sasl-perl. -Preparing to unpack .../67-libauthen-sasl-perl_2.1600-1_all.deb ... -Unpacking libauthen-sasl-perl (2.1600-1) ... -Selecting previously unselected package libmpc-dev:amd64. -Preparing to unpack .../68-libmpc-dev_1.1.0-1_amd64.deb ... -Unpacking libmpc-dev:amd64 (1.1.0-1) ... -Setting up libhtml-tagset-perl (3.20-3) ... -Setting up libpopt0:amd64 (1.16-11) ... -Setting up libtry-tiny-perl (0.30-1) ... -Setting up libfont-afm-perl (1.20-2) ... -Setting up tex-common (6.09) ... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -update-language: texlive-base not installed and configured, doing nothing! -Setting up libxml-namespacesupport-perl (1.12-1) ... -Setting up libencode-locale-perl (1.05-1) ... -Setting up libdw1:amd64 (0.170-0.4ubuntu0.1) ... -Setting up libusb-1.0-doc (2:1.0.21-2) ... -Setting up libtimedate-perl (2.3000-2) ... -Setting up perl-openssl-defaults:amd64 (3build1) ... -Setting up expat (2.2.5-3ubuntu0.2) ... -Setting up libio-html-perl (1.001-1) ... -Setting up libtext-unidecode-perl (1.30-1) ... -Setting up autoconf (2.69-11) ... -Setting up gperf (3.1-1) ... -Setting up gawk (1:4.1.4+dfsg-1build1) ... -Setting up rsync (3.1.2-2.1ubuntu1.1) ... -invoke-rc.d: could not determine current runlevel -invoke-rc.d: policy-rc.d denied execution of restart. -Setting up libxml-sax-base-perl (1.09-1) ... -Setting up pkg-config (0.29.1-0ubuntu2) ... -Setting up libusb-1.0-0:amd64 (2:1.0.21-2) ... -Setting up liblwp-mediatypes-perl (6.02-1) ... -Setting up patchutils (0.3.4-2) ... -Setting up autotools-dev (20180224.1) ... -Setting up liburi-perl (1.73-1) ... -Setting up libdata-dump-perl (1.23-1) ... -Setting up libusb-1.0-0-dev:amd64 (2:1.0.21-2) ... -Setting up libltdl7:amd64 (2.4.6-2) ... -Setting up libhtml-parser-perl (3.72-3build1) ... -Setting up automake (1:1.15.1-3ubuntu2) ... -update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode -update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist -update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist -Setting up libbison-dev:amd64 (2:3.0.4.dfsg-1build1) ... -Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... -Setting up libnet-http-perl (6.17-1) ... -Setting up device-tree-compiler (1.4.5-3) ... -Setting up bison (2:3.0.4.dfsg-1build1) ... -update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode -update-alternatives: warning: skip creation of /usr/share/man/man1/yacc.1.gz because associated file /usr/share/man/man1/bison.yacc.1.gz (of link group yacc) doesn't exist -Setting up verilator (3.916-1build1) ... -Setting up libgmpxx4ldbl:amd64 (2:6.1.2+dfsg-2) ... -Setting up bc (1.07.1-2) ... -Setting up libwww-robotrules-perl (6.01-1) ... -Setting up libauthen-sasl-perl (2.1600-1) ... -Setting up libbabeltrace1:amd64 (1.5.5-1) ... -Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... -Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... -Setting up libxml-sax-perl (0.99+dfsg-2ubuntu1) ... -update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... -update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline - -Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version -Setting up babeltrace (1.5.5-1) ... -Setting up libtool (2.4.6-2) ... -Setting up libgmp-dev:amd64 (2:6.1.2+dfsg-2) ... -Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.3) ... -Setting up libhttp-date-perl (6.02-1) ... -Setting up python3.6 (3.6.9-1~18.04ubuntu1.3) ... -Setting up libltdl-dev:amd64 (2.4.6-2) ... -Setting up libnet-ssleay-perl (1.84-1ubuntu0.2) ... -Setting up libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... -Setting up libhtml-tree-perl (5.07-1) ... -Setting up libfile-listing-perl (6.04-1) ... -Setting up libhttp-message-perl (6.14-1) ... -Setting up libxml-libxml-perl (2.0128+dfsg-5) ... -update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... -update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... -update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version -Setting up libhttp-negotiate-perl (6.00-2) ... -Setting up libmpfr-dev:amd64 (4.0.1-1) ... -Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... -Setting up libnet-smtp-ssl-perl (1.04-1) ... -Setting up libhtml-format-perl (2.12-1) ... -Setting up python3 (3.6.7-1~18.04) ... -running python rtupdate hooks for python3.6... -running python post-rtupdate hooks for python3.6... -Setting up libhttp-cookies-perl (6.04-1) ... -Setting up libhttp-daemon-perl (6.01-1) ... -Setting up libhtml-form-perl (6.03-1) ... -Setting up texinfo (6.5.0.dfsg.1-2) ... -Setting up libmpc-dev:amd64 (1.1.0-1) ... -Setting up libmailtools-perl (2.18-1) ... -Setting up liblwp-protocol-https-perl (6.07-2) ... -Setting up libwww-perl (6.31-1ubuntu0.1) ... -Setting up libxml-parser-perl (2.44-2build3) ... -Setting up libxml-sax-expat-perl (0.40-2) ... -update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::Expat with priority 50... -update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version -Processing triggers for mime-support (3.60ubuntu1) ... -Processing triggers for libc-bin (2.27-3ubuntu1.3) ... -Removing intermediate container bbc5c768dce1 - ---> c11c5bcdd295 -Step 14/27 : RUN apt-get install -y libfdt-dev libglib2.0-dev libpixman-1-dev - ---> Running in 849f268bb9a0 -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - libfdt1 libglib2.0-bin libglib2.0-dev-bin libpcre16-3 libpcre3-dev - libpcre32-3 libpcrecpp0v5 python3-distutils python3-lib2to3 -Suggested packages: - libglib2.0-doc -The following NEW packages will be installed: - libfdt-dev libfdt1 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin - libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-dev - python3-distutils python3-lib2to3 -0 upgraded, 12 newly installed, 0 to remove and 2 not upgraded. -Need to get 2900 kB of archives. -After this operation, 17.9 MB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-bin amd64 2.56.4-0ubuntu0.18.04.6 [68.8 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev-bin amd64 2.56.4-0ubuntu0.18.04.6 [102 kB] -Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre16-3 amd64 2:8.39-9 [147 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre32-3 amd64 2:8.39-9 [138 kB] -Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcrecpp0v5 amd64 2:8.39-9 [15.3 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre3-dev amd64 2:8.39-9 [537 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev amd64 2.56.4-0ubuntu0.18.04.6 [1385 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpixman-1-dev amd64 0.34.0-2 [244 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfdt1 amd64 1.4.5-3 [15.7 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfdt-dev amd64 1.4.5-3 [25.7 kB] -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -debconf: unable to initialize frontend: Readline -debconf: (This frontend requires a controlling tty.) -debconf: falling back to frontend: Teletype -dpkg-preconfigure: unable to re-open stdin: -Fetched 2900 kB in 2s (1458 kB/s) -Selecting previously unselected package libglib2.0-bin. -(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41615 files and directories currently installed.) -Preparing to unpack .../00-libglib2.0-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ... -Unpacking libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ... -Selecting previously unselected package python3-lib2to3. -Preparing to unpack .../01-python3-lib2to3_3.6.9-1~18.04_all.deb ... -Unpacking python3-lib2to3 (3.6.9-1~18.04) ... -Selecting previously unselected package python3-distutils. -Preparing to unpack .../02-python3-distutils_3.6.9-1~18.04_all.deb ... -Unpacking python3-distutils (3.6.9-1~18.04) ... -Selecting previously unselected package libglib2.0-dev-bin. -Preparing to unpack .../03-libglib2.0-dev-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ... -Unpacking libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ... -Selecting previously unselected package libpcre16-3:amd64. -Preparing to unpack .../04-libpcre16-3_2%3a8.39-9_amd64.deb ... -Unpacking libpcre16-3:amd64 (2:8.39-9) ... -Selecting previously unselected package libpcre32-3:amd64. -Preparing to unpack .../05-libpcre32-3_2%3a8.39-9_amd64.deb ... -Unpacking libpcre32-3:amd64 (2:8.39-9) ... -Selecting previously unselected package libpcrecpp0v5:amd64. -Preparing to unpack .../06-libpcrecpp0v5_2%3a8.39-9_amd64.deb ... -Unpacking libpcrecpp0v5:amd64 (2:8.39-9) ... -Selecting previously unselected package libpcre3-dev:amd64. -Preparing to unpack .../07-libpcre3-dev_2%3a8.39-9_amd64.deb ... -Unpacking libpcre3-dev:amd64 (2:8.39-9) ... -Selecting previously unselected package libglib2.0-dev:amd64. -Preparing to unpack .../08-libglib2.0-dev_2.56.4-0ubuntu0.18.04.6_amd64.deb ... -Unpacking libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ... -Selecting previously unselected package libpixman-1-dev:amd64. -Preparing to unpack .../09-libpixman-1-dev_0.34.0-2_amd64.deb ... -Unpacking libpixman-1-dev:amd64 (0.34.0-2) ... -Selecting previously unselected package libfdt1:amd64. -Preparing to unpack .../10-libfdt1_1.4.5-3_amd64.deb ... -Unpacking libfdt1:amd64 (1.4.5-3) ... -Selecting previously unselected package libfdt-dev. -Preparing to unpack .../11-libfdt-dev_1.4.5-3_amd64.deb ... -Unpacking libfdt-dev (1.4.5-3) ... -Setting up libpixman-1-dev:amd64 (0.34.0-2) ... -Setting up libpcrecpp0v5:amd64 (2:8.39-9) ... -Setting up libpcre32-3:amd64 (2:8.39-9) ... -Setting up libpcre16-3:amd64 (2:8.39-9) ... -Setting up python3-lib2to3 (3.6.9-1~18.04) ... -Setting up libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ... -Setting up python3-distutils (3.6.9-1~18.04) ... -Setting up libfdt1:amd64 (1.4.5-3) ... -Setting up libfdt-dev (1.4.5-3) ... -Setting up libpcre3-dev:amd64 (2:8.39-9) ... -Setting up libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ... -Setting up libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ... -Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... -Processing triggers for libc-bin (2.27-3ubuntu1.3) ... -Removing intermediate container 849f268bb9a0 - ---> b82bb1821ec1 -Step 15/27 : ENV HOME="/home/riscvuser" - ---> Running in 51d644716666 -Removing intermediate container 51d644716666 - ---> 6dbafe7c9b1a -Step 16/27 : ENV RISCV="$HOME/riscv-tools-install" - ---> Running in 04f659aa25cf -Removing intermediate container 04f659aa25cf - ---> f114f73f056c -Step 17/27 : ENV LD_LIBRARY_PATH="$RISCV/lib" - ---> Running in 26b6a9e09e56 -Removing intermediate container 26b6a9e09e56 - ---> f1bac7e9c06a -Step 18/27 : ENV PATH="$RISCV/bin:$PATH" - ---> Running in e10160a9cbdd -Removing intermediate container e10160a9cbdd - ---> 4a4a90ab60b9 -Step 19/27 : WORKDIR $HOME - ---> Running in c5e059418854 -Removing intermediate container c5e059418854 - ---> 24be9d5f80f9 -Step 20/27 : USER riscvuser - ---> Running in 64c454299c8e -Removing intermediate container 64c454299c8e - ---> 4d9fa1962719 -Step 21/27 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - ---> Running in 4b740b9b351c -Cloning into 'chipyard'... -^C -]0;ellas@ella-pc:~/ella-chipyard/chipyard[ellas@ella-pc chipyard]$ exit -exit - -Script done on 2020-12-01 13:45:16-08:00 [COMMAND_EXIT_CODE="130"] diff --git a/completed.txt b/completed.txt deleted file mode 100644 index f026eb0a..00000000 --- a/completed.txt +++ /dev/null @@ -1,4486 +0,0 @@ -Script started on 2020-12-01 15:40:51-08:00 [TERM="xterm-256color" TTY="/dev/pts/5" COLUMNS="77" LINES="39"] -]0;ellas@ella-pc:~/ella-chipyard/chipyard[ellas@ella-pc chipyard]$ docker build - < Dockerfile-ella -Sending build context to Docker daemon 11.78kB -Step 1/28 : FROM ubuntu:18.04 - ---> 2c047404e52d -Step 2/28 : MAINTAINER jacobgadikian@gmail.com - ---> Using cache - ---> 0fc71a7a7123 -Step 3/28 : RUN apt-get update && apt-get upgrade -y && mkdir -p /usr/share/man/man1 && apt-get install -y bzip2 ca-certificates curl git gnupg gzip libfl2 libfl-dev locales mercurial python-minimal python-pexpect-doc netcat net-tools openssh-client parallel sudo tar unzip wget xvfb xxd zip ccache libgoogle-perftools-dev numactl zlib1g jq openjdk-11-jdk maven ant gradle - ---> Using cache - ---> 87156762f3a0 -Step 4/28 : RUN apt-get install -y apt-utils - ---> Using cache - ---> 8f6afbee470e -Step 5/28 : RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - ---> Using cache - ---> 25ab089d0a01 -Step 6/28 : RUN locale-gen C.UTF-8 || true - ---> Using cache - ---> 4cbabe2d62ca -Step 7/28 : ENV LANG=C.UTF-8 - ---> Using cache - ---> df0c6a2ad869 -Step 8/28 : RUN groupadd --gid 3434 riscvuser && useradd --uid 3434 --gid riscvuser --shell /bin/bash --create-home riscvuser && echo 'riscvuser ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-riscvuser && echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep - ---> Using cache - ---> 6c7c8dfcb6b1 -Step 9/28 : RUN apt-get update - ---> Using cache - ---> a4eb4561d4f1 -Step 10/28 : RUN apt-get install -y --no-install-recommends openjfx - ---> Using cache - ---> 2118063a9af5 -Step 11/28 : RUN apt-get install -y build-essential - ---> Using cache - ---> 91c539c2fc7a -Step 12/28 : RUN apt-get update - ---> Using cache - ---> 7c07f89c49c4 -Step 13/28 : RUN apt-get install -y autoconf automake autotools-dev babeltrace bc curl device-tree-compiler expat flex gawk gperf g++ libexpat-dev libgmp-dev libmpc-dev libmpfr-dev libtool libusb-1.0-0-dev make patchutils pkg-config python3 texinfo zlib1g-dev rsync bison verilator - ---> Using cache - ---> 74a7e0c43523 -Step 14/28 : RUN apt-get install -y libfdt-dev libglib2.0-dev libpixman-1-dev - ---> Using cache - ---> e846afdecd93 -Step 15/28 : ENV HOME="/home/riscvuser" - ---> Using cache - ---> 04252ae68643 -Step 16/28 : ENV RISCV="$HOME/riscv-tools-install" - ---> Using cache - ---> 060a560cef38 -Step 17/28 : ENV LD_LIBRARY_PATH="$RISCV/lib" - ---> Using cache - ---> 0cc082b7cff3 -Step 18/28 : ENV PATH="$RISCV/bin:$PATH" - ---> Using cache - ---> d38f378a063e -Step 19/28 : WORKDIR $HOME - ---> Using cache - ---> e78fdc1428da -Step 20/28 : USER riscvuser - ---> Using cache - ---> 4ef013acb4c5 -Step 21/28 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - ---> Using cache - ---> b4a55c772a76 -Step 22/28 : RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install keyboard-configuration && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - ---> Using cache - ---> 53ff15f9846a -Step 23/28 : RUN cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null - ---> Using cache - ---> 3b68215fe6b1 -Step 24/28 : RUN mvn -version && ant -version && gradle -version && sbt sbtVersion && verilator --version - ---> Using cache - ---> fd74a2659db6 -Step 25/28 : RUN cd chipyard && export MAKEFLAGS=-"j $(nproc)" && \./scripts/build-toolchains.sh riscv-tools 1>/dev/null - ---> Running in 7972893ac3e9 -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain'... -Submodule 'qemu' (https://git.qemu.org/git/qemu.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/qemu' -Submodule 'riscv-binutils' (https://github.com/riscv/riscv-binutils-gdb.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-binutils' -Submodule 'riscv-dejagnu' (https://github.com/riscv/riscv-dejagnu.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-dejagnu' -Submodule 'riscv-gcc' (https://github.com/riscv/riscv-gcc.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-gcc' -Submodule 'riscv-gdb' (https://github.com/riscv/riscv-binutils-gdb.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-gdb' -Submodule 'riscv-glibc' (https://github.com/riscv/riscv-glibc.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-glibc' -Submodule 'riscv-newlib' (https://github.com/riscv/riscv-newlib.git) registered for path 'toolchains/riscv-tools/riscv-gnu-toolchain/riscv-newlib' -Skipping submodule '../toolchains/riscv-tools/riscv-gnu-toolchain/' -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-binutils'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-dejagnu'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-gcc'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-gdb'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-glibc'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/riscv-newlib'... -configure: WARNING: neither ld nor gold are enabled -*** This configuration is not supported in the following subdirectories: - binutils gas gprof - (Any other directories should still work fine.) -*** This configuration is not supported in the following subdirectories: - readline libdecnumber sim gdb - (Any other directories should still work fine.) -configure: WARNING: decimal float is not supported for this target, ignored -ar: `u' modifier ignored since `D' is the default (see `U') -ar: `u' modifier ignored since `D' is the default (see `U') -ar: `u' modifier ignored since `D' is the default (see `U') -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/sysinfo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/defparse.y: warning: 27 shift/reduce conflicts [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/rcparse.y: warning: 58 shift/reduce conflicts [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/rcparse.y: warning: 10 reduce/reduce conflicts [-Wconflicts-rr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/mcparse.y: warning: 1 shift/reduce conflict [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/doc/binutils.texi:819: warning: @ref node name should not contain `.' -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/binutils/doc/binutils.texi:1239: warning: @xref node name should not contain `.' -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/ld/deffilep.y: warning: 76 shift/reduce conflicts [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/ld/ldlex.l:386: warning, rule cannot be matched -ld.pod around line 568: Expected '=item *' -POD document had syntax errors at /usr/bin/pod2man line 71. -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-binutils/ld/ld.texi:8376: warning: @pxref node name should not contain `.' -/bin/sh: 1: test: false: unexpected operator -*** This configuration is not supported in the following subdirectories: - zlib target-libquadmath target-libitm target-libsanitizer target-libvtv gnattools gotools target-libada target-libhsail-rt target-libstdc++-v3 target-libphobos target-zlib target-libbacktrace target-libgfortran target-libgo target-libffi target-libobjc target-libgomp target-liboffloadmic target-libatomic target-libssp - (Any other directories should still work fine.) -configure: WARNING: python is missing or unusable; some features may be unavailable. -configure: WARNING: libipt is missing or unusable; some features may be unavailable. -objcopy: /tmp/ls267633: debuglink section already exists -configure: WARNING: decimal float is not supported for this target, ignored -ar: `u' modifier ignored since `D' is the default (see `U') -ar: `u' modifier ignored since `D' is the default (see `U') -configure: WARNING: babeltrace is missing or unusable; GDB is unable to read CTF data. -../../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -libtool: install: warning: remember to run `libtool --finish /home/riscvuser/chipyard/riscv-tools-install/libexec/gcc/riscv64-unknown-linux-gnu/9.2.0' -../../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -ar: `u' modifier ignored since `D' is the default (see `U') -../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-profile.c: In function ‘profile_pc_init’: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-profile.c:566:8: warning: left shift count >= width of type [-Wshift-count-overflow] - ((1 << sizeof (sim_cia) * (8 - 1)) - ^~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-profile.c:585:21: warning: left shift count >= width of type [-Wshift-count-overflow] - bucket_size = ((1 << ((sizeof (sim_cia) * 8) - 1)) - ^~ -../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c: In function ‘map_to_str’: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:359:18: warning: ‘%ld’ directive writing between 1 and 10 bytes into a region of size 9 [-Wformat-overflow=] - sprintf (str, "(%ld)", (long) map); - ^~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:359:16: note: directive argument in the range [4, 4294967295] - sprintf (str, "(%ld)", (long) map); - ^~~~~~~ -In file included from /usr/include/stdio.h:862:0, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-basics.h:37, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/sim-main.h:24, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:20: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:33:10: note: ‘__builtin___sprintf_chk’ output between 4 and 13 bytes into a destination of size 10 - return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - __bos (__s), __fmt, __va_arg_pack ()); - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c: In function ‘access_to_str’: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:389:18: warning: ‘%ld’ directive writing between 2 and 10 bytes into a region of size 9 [-Wformat-overflow=] - sprintf (str, "(%ld)", (long) access); - ^~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:389:16: note: directive argument in the range [16, 4294967295] - sprintf (str, "(%ld)", (long) access); - ^~~~~~~ -In file included from /usr/include/stdio.h:862:0, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-basics.h:37, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/sim-main.h:24, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/sim/riscv/../common/sim-utils.c:20: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:33:10: note: ‘__builtin___sprintf_chk’ output between 5 and 13 bytes into a destination of size 10 - return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - __bos (__s), __fmt, __va_arg_pack ()); - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -ar: `u' modifier ignored since `D' is the default (see `U') -configure: WARNING: decimal float is not supported for this target, ignored -configure: WARNING: fixed-point is not supported for this target, ignored -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/m2-exp.y: warning: 34 shift/reduce conflicts [-Wconflicts-sr] -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/m2-exp.y:301.25-44: warning: rule useless in parser due to conflicts [-Wother] - { start_arglist(); } - ^^^^^^^^^^^^^^^^^^^^ -Links are now set up to build a cross-compiler - from x86_64-pc-linux-gnu to riscv64-unknown-linux-gnu. -../../../riscv-gcc/gcc/genhooks.c: In function ‘void emit_documentation(const char*)’: -../../../riscv-gcc/gcc/genhooks.c:131:45: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - while (fscanf (f, "%*[^@]"), buf[0] = '\0', - ^ -../../../riscv-gcc/gcc/genhooks.c:140:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:193:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%5[^ \n]", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:199:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -GIMPLE decision tree has 2874 leafs, maximum depth 12 and a total number of 11721 nodes -removed 1855 duplicate tails -GENERIC decision tree has 2760 leafs, maximum depth 12 and a total number of 11180 nodes -removed 1757 duplicate tails -../../../riscv-gcc/gcc/config/riscv/riscv.md:2281:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2303:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2326:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2349:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2415:1: warning: source missing a mode? -Statistics for recog: - Number of decisions: 1699 - longest path: 32 (code: 188) - longest backtrack: 13 (code: 336) -Statistics for split_insns: - Number of decisions: 209 - longest path: 30 (code: 40) - longest backtrack: 3 (code: 40) -Statistics for peephole2_insns: - Number of decisions: 22 - longest path: 22 (code: 1) - longest backtrack: 0 (code: 1) -Shared 1212 out of 3026 states by creating 356 new states, saving 856 -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘int convert_arguments(location_t, vec, tree, vec*, vec*, tree, tree)’: -../../../riscv-gcc/gcc/c/c-typeck.c:3601:28: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_func_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_unary_op(location_t, tree_code, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:4339:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘void warning_init(location_t, int, const char*)’: -../../../riscv-gcc/gcc/c/c-typeck.c:6400:43: warning: format not a string literal and no format arguments [-Wformat-security] - warned = warning_at (exploc, opt, gmsgid); - ^ -../../../riscv-gcc/gcc/c/c-convert.c: In function ‘tree_node* convert(tree, tree)’: -../../../riscv-gcc/gcc/c/c-convert.c:81:31: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_conv_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_binary_op(location_t, tree_code, tree, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:11480:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c: In function ‘void c_parse_error(const char*, cpp_ttype, tree, unsigned char, rich_location*)’: -../../../riscv-gcc/gcc/c-family/c-common.c:6144:30: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, gmsgid); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c:6148:33: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, message); - ^ -In file included from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/infrun.c:26:0: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/inferior.h: In function ‘void handle_vfork_child_exec_or_exit(int)’: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/inferior.h:606:26: warning: ‘*((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - { set_current_inferior (m_saved_inf); } - ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/infrun.c:931:6: note: ‘*((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf’ was declared here - maybe_restore_inferior; - ^~~~~~~~~~~~~~~~~~~~~~ -In file included from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/inferior.h:49:0, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/infrun.c:26: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/progspace.h:314:31: warning: ‘*((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace’ may be used uninitialized in this function [-Wmaybe-uninitialized] - { set_current_program_space (m_saved_pspace); } - ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/infrun.c:931:6: note: ‘*((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace’ was declared here - maybe_restore_inferior; - ^~~~~~~~~~~~~~~~~~~~~~ -In file included from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/exceptions.h:23:0, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/utils.h:24, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/defs.h:670, - from /home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/record-btrace.c:22: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/ui-out.h: In function ‘void btrace_insn_history(ui_out*, const btrace_thread_info*, const btrace_insn_iterator*, const btrace_insn_iterator*, gdb_disassembly_flags)’: -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/ui-out.h:214:18: warning: ‘asm_list.ui_out_emit_type<(ui_out_type)1>::m_uiout’ may be used uninitialized in this function [-Wmaybe-uninitialized] - m_uiout->end (Type); - ~~~~~~~~~~~~~^~~~~~ -/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-gnu-toolchain/build/../riscv-gdb/gdb/record-btrace.c:786:35: note: ‘asm_list.ui_out_emit_type<(ui_out_type)1>::m_uiout’ was declared here - gdb::optional asm_list; - ^~~~~~~~ -../../../riscv-gcc/gcc/fold-const.c: In function ‘void fold_overflow_warning(const char*, warn_strict_overflow_code)’: -../../../riscv-gcc/gcc/fold-const.c:303:42: warning: format not a string literal and no format arguments [-Wformat-security] - warning (OPT_Wstrict_overflow, gmsgid); - ^ -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncpy(gimple_stmt_iterator*, tree, tree, tree)’: -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, slen); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncat(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len, dstsize); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len)) - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c: In function ‘void find_explicit_erroneous_behavior()’: -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c:554:35: warning: format not a string literal and no format arguments [-Wformat-security] - OPT_Wreturn_local_addr, msg)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In function ‘bool {anonymous}::format_directive(const {anonymous}::sprintf_dom_walker::call_info&, {anonymous}::format_result*, const {anonymous}::directive&, vr_values*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - target_to_host (hostdir, sizeof hostdir, dir.beg)); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: field precision specifier ‘.*’ expects argument of type ‘int’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In member function ‘bool {anonymous}::sprintf_dom_walker::handle_gimple_call(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_overlap(location_t, gimple*, {anonymous}::builtin_access&)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[0], sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_access_bounds(location_t, gimple*, tree, int, const {anonymous}::builtin_memref&, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1], ref.base, type)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.basesize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.base, type); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.refoff.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘int check_bounds_or_overlap(gimple*, tree, tree, tree, tree, bool, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/hsa-gen.c: In member function ‘void omp_simple_builtin::generate(gimple*, hsa_bb*)’: -../../../riscv-gcc/gcc/hsa-gen.c:88:32: warning: format not a string literal and no format arguments [-Wformat-security] - inform (location, message); \ - ^ -../../../riscv-gcc/gcc/hsa-gen.c:4548:2: note: in expansion of macro ‘HSA_SORRY_AT’ - HSA_SORRY_AT (gimple_location (stmt), m_warning_message); - ^~~~~~~~~~~~ -../../../riscv-gcc/gcc/hsa-gen.c:4555:68: warning: format not a string literal and no format arguments [-Wformat-security] - warning_at (gimple_location (stmt), OPT_Whsa, m_warning_message); - ^ -../../../riscv-gcc/gcc/ipa-devirt.c: In function ‘void warn_odr(tree, tree, tree, tree, bool, bool*, const char*)’: -../../../riscv-gcc/gcc/ipa-devirt.c:1050:47: warning: format not a string literal and no format arguments [-Wformat-security] - inform (DECL_SOURCE_LOCATION (decl2), reason); - ^ -../../../riscv-gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx_insn*)’: -../../../riscv-gcc/gcc/reload1.c:3754:28: warning: ‘orig_dup[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized] - *recog_data.dup_loc[i] = orig_dup[i]; - ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ -../../../riscv-gcc/gcc/tree-ssa-ccp.c: In member function ‘virtual unsigned int {anonymous}::pass_post_ipa_warn::execute(function*)’: -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: unknown conversion type character ‘G’ in format [-Wformat=] - "expected", stmt, i + 1)) - ^ -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘bool maybe_diag_stxncpy_trunc(gimple_stmt_iterator, tree, tree)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘void handle_builtin_stxncpy(built_in_function, gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func)) - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/collect2.c: In function ‘void scan_prog_file(const char*, scanpass, scanfilter)’: -../../../riscv-gcc/gcc/collect2.c:2463:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/collect-utils.c: In function ‘pex_obj* collect_execute(const char*, char**, const char*, const char*, int, bool)’: -../../../riscv-gcc/gcc/collect-utils.c:195:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/lto-wrapper.c: In function ‘bool find_and_merge_options(int, off_t, const char*, cl_decoded_option**, unsigned int*, const char*)’: -../../../riscv-gcc/gcc/lto-wrapper.c:1005:8: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, data, length); - ~~~~~^~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘long unsigned int get_random_number()’: -../../../riscv-gcc/gcc/gcc.c:9639:12: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, &ret, sizeof (HOST_WIDE_INT)); - ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘void do_report_bug(const char**, int, char**, char**)’: -../../../riscv-gcc/gcc/gcc.c:6999:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n//", 3); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7002:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, " ", 1); - ~~~~~~^~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7003:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, new_argv[i], strlen (new_argv[i])); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7005:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n\n", 2); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c: In function ‘void lto_resolution_read(splay_tree, FILE*, lto_file*)’: -../../../riscv-gcc/gcc/lto/lto.c:1918:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, " "); /* Read white space. */ - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1920:9: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Wunused-result] - fread (obj_name, sizeof (char), name_len, resolution); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1940:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, "%u", &num_symbols); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Applying io_quotes_use to drm/exynos_drm.h -Applying io_quotes_use to drm/nouveau_drm.h -Applying io_quotes_use to drm/radeon_drm.h -Applying io_quotes_use to drm/drm.h -Applying io_quotes_use to drm/etnaviv_drm.h -Applying io_quotes_use to drm/v3d_drm.h -Applying io_quotes_use to drm/savage_drm.h -Applying io_quotes_use to drm/vc4_drm.h -Applying io_quotes_use to drm/mga_drm.h -Applying io_quotes_use to drm/omap_drm.h -Applying io_quotes_use to drm/i915_drm.h -Applying io_quotes_use to drm/r128_drm.h -Applying io_quotes_use to drm/msm_drm.h -Applying io_quotes_use to drm/amdgpu_drm.h -Applying io_quotes_use to drm/via_drm.h -Applying io_quotes_use to drm/sis_drm.h -Applying io_quotes_use to drm/vgem_drm.h -Applying io_quotes_use to drm/i810_drm.h -Applying io_quotes_use to drm/tegra_drm.h -Applying io_quotes_use to linux/fd.h -Applying io_quotes_use to linux/usb/tmc.h -Applying io_quotes_use to linux/nbd.h -Applying io_quotes_use to linux/ppdev.h -Applying io_quotes_def to linux/ppp-comp.h -Applying io_quotes_use to linux/fuse.h -Applying io_quotes_use to linux/ipmi_bmc.h -Applying io_quotes_use to linux/lightnvm.h -Applying io_quotes_use to linux/gpio.h -Applying io_quotes_use to linux/spi/spidev.h -Applying io_quotes_use to linux/mmtimer.h -Applying io_quotes_use to linux/btrfs.h -Applying io_quotes_use to linux/bt-bmc.h -Applying io_quotes_use to linux/nsfs.h -Applying io_quotes_def to linux/version.h -Applying io_quotes_use to linux/seccomp.h --fself-test: 46308 pass(es) in 0.358501 seconds -Applying io_quotes_use to linux/mmc/ioctl.h -Applying io_quotes_use to linux/phantom.h -Applying io_quotes_use to linux/vm_sockets.h -Applying io_quotes_use to linux/omapfb.h -Applying io_quotes_def to linux/soundcard.h -Applying io_quotes_use to linux/vtpm_proxy.h -Applying io_quotes_use to linux/synclink.h -Applying io_quotes_use to linux/dn.h -Applying io_quotes_use to linux/atmbr2684.h -Applying io_quotes_use to linux/rpmsg.h -Applying io_quotes_use to linux/rio_cm_cdev.h -Applying io_quotes_use to linux/cciss_ioctl.h -Applying io_quotes_use to linux/sync_file.h -Applying io_quotes_use to linux/tee.h -Applying io_quotes_use to linux/i2o-dev.h -Applying io_quotes_use to linux/rfkill.h -Applying io_quotes_use to linux/watchdog.h -Applying io_quotes_use to linux/cm4000_cs.h -Applying io_quotes_use to linux/genwqe/genwqe_card.h -Applying io_quotes_use to linux/vfio.h -Applying io_quotes_use to linux/gigaset_dev.h -Applying io_quotes_use to linux/if_pppox.h -Applying io_quotes_use to linux/blkzoned.h -Applying io_quotes_use to linux/ndctl.h -Applying io_quotes_use to linux/agpgart.h -Applying io_quotes_use to linux/blkpg.h -Applying io_quotes_use to linux/fpga-dfl.h -Applying io_quotes_use to linux/psp-sev.h -Applying io_quotes_use to linux/wmi.h -Applying io_quotes_use to linux/fs.h -Applying io_quotes_use to linux/ptp_clock.h -Applying io_quotes_use to linux/reiserfs_fs.h -Applying io_quotes_use to linux/dma-buf.h -Applying io_quotes_use to linux/raid/md_u.h -Applying io_quotes_use to linux/random.h -Applying io_quotes_use to linux/auto_fs.h -Applying io_quotes_use to linux/uinput.h -Applying io_quotes_use to linux/suspend_ioctls.h -Applying io_quotes_use to linux/vboxguest.h -Applying io_quotes_use to linux/ipmi.h -Applying io_quotes_use to linux/dm-ioctl.h -Applying io_quotes_use to linux/aspeed-lpc-ctrl.h -Applying io_quotes_use to linux/hsi/cs-protocol.h -Applying io_quotes_use to linux/hsi/hsi_char.h -Applying io_quotes_use to linux/raw.h -Applying io_quotes_use to linux/vhost.h -Applying io_quotes_use to linux/userfaultfd.h -Applying io_quotes_def to linux/pci_regs.h -Applying io_quotes_use to linux/pktcdvd.h -Applying io_quotes_use to rdma/rdma_user_ioctl.h -Applying io_quotes_use to video/sisfb.h -Applying io_quotes_use to sound/emu10k1.h -Applying io_quotes_use to sound/compress_offload.h -Applying io_quotes_use to sound/asequencer.h -Applying io_quotes_use to sound/asound.h -Applying io_quotes_use to scsi/cxlflash_ioctl.h -Applying io_quotes_use to mtd/ubi-user.h -Applying io_quotes_use to misc/cxl.h -Applying io_quotes_use to misc/ocxl.h -configure: WARNING: decimal float is not supported for this target, ignored -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -configure: WARNING: gcc emits a warning for alias between functions of incompatible types -configure: WARNING: Multi-arch is disabled. -configure: WARNING: gcc emits a warning for alias between functions of incompatible types -configure: WARNING: Multi-arch is disabled. -configure: WARNING: minimum kernel version reset to 4.15.0 -configure: WARNING: minimum kernel version reset to 4.15.0 -*** errlist.c count 134 inflated to GLIBC_2.12 count 135 (old errno.h?) -*** This configuration is not supported in the following subdirectories: - zlib target-libquadmath target-libitm target-libsanitizer target-libvtv gnattools gotools target-libada target-libhsail-rt target-libphobos target-zlib target-libgo target-libffi target-libobjc target-liboffloadmic target-libssp - (Any other directories should still work fine.) -configure: WARNING: decimal float is not supported for this target, ignored -objcopy: /tmp/ls375352: debuglink section already exists -ar: `u' modifier ignored since `D' is the default (see `U') -../../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -../../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -libtool: install: warning: remember to run `libtool --finish /home/riscvuser/chipyard/riscv-tools-install/libexec/gcc/riscv64-unknown-linux-gnu/9.2.0' -../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -ar: `u' modifier ignored since `D' is the default (see `U') -../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -ar: `u' modifier ignored since `D' is the default (see `U') -configure: WARNING: decimal float is not supported for this target, ignored -configure: WARNING: fixed-point is not supported for this target, ignored -Links are now set up to build a cross-compiler - from x86_64-pc-linux-gnu to riscv64-unknown-linux-gnu. -../../../riscv-gcc/gcc/genhooks.c: In function ‘void emit_documentation(const char*)’: -../../../riscv-gcc/gcc/genhooks.c:131:45: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - while (fscanf (f, "%*[^@]"), buf[0] = '\0', - ^ -../../../riscv-gcc/gcc/genhooks.c:140:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:193:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%5[^ \n]", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:199:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -../../../riscv-gcc/gcc/fortran/gfortran.texi:2769: warning: @ref node name should not contain `:' -GIMPLE decision tree has 2874 leafs, maximum depth 12 and a total number of 11721 nodes -removed 1855 duplicate tails -GENERIC decision tree has 2760 leafs, maximum depth 12 and a total number of 11180 nodes -removed 1757 duplicate tails -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘int convert_arguments(location_t, vec, tree, vec*, vec*, tree, tree)’: -../../../riscv-gcc/gcc/c/c-typeck.c:3601:28: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_func_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_unary_op(location_t, tree_code, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:4339:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘void warning_init(location_t, int, const char*)’: -../../../riscv-gcc/gcc/c/c-typeck.c:6400:43: warning: format not a string literal and no format arguments [-Wformat-security] - warned = warning_at (exploc, opt, gmsgid); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_binary_op(location_t, tree_code, tree, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:11480:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c/c-convert.c: In function ‘tree_node* convert(tree, tree)’: -../../../riscv-gcc/gcc/c/c-convert.c:81:31: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_conv_diag); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c: In function ‘void c_parse_error(const char*, cpp_ttype, tree, unsigned char, rich_location*)’: -../../../riscv-gcc/gcc/c-family/c-common.c:6144:30: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, gmsgid); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c:6148:33: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, message); - ^ -../../../riscv-gcc/gcc/fold-const.c: In function ‘void fold_overflow_warning(const char*, warn_strict_overflow_code)’: -../../../riscv-gcc/gcc/fold-const.c:303:42: warning: format not a string literal and no format arguments [-Wformat-security] - warning (OPT_Wstrict_overflow, gmsgid); - ^ -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncpy(gimple_stmt_iterator*, tree, tree, tree)’: -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, slen); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncat(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len, dstsize); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len)) - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c: In function ‘void find_explicit_erroneous_behavior()’: -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c:554:35: warning: format not a string literal and no format arguments [-Wformat-security] - OPT_Wreturn_local_addr, msg)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In function ‘bool {anonymous}::format_directive(const {anonymous}::sprintf_dom_walker::call_info&, {anonymous}::format_result*, const {anonymous}::directive&, vr_values*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - target_to_host (hostdir, sizeof hostdir, dir.beg)); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: field precision specifier ‘.*’ expects argument of type ‘int’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In member function ‘bool {anonymous}::sprintf_dom_walker::handle_gimple_call(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_overlap(location_t, gimple*, {anonymous}::builtin_access&)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[0], sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_access_bounds(location_t, gimple*, tree, int, const {anonymous}::builtin_memref&, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1], ref.base, type)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.basesize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.base, type); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.refoff.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘int check_bounds_or_overlap(gimple*, tree, tree, tree, tree, bool, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/hsa-gen.c: In member function ‘void omp_simple_builtin::generate(gimple*, hsa_bb*)’: -../../../riscv-gcc/gcc/hsa-gen.c:88:32: warning: format not a string literal and no format arguments [-Wformat-security] - inform (location, message); \ - ^ -../../../riscv-gcc/gcc/hsa-gen.c:4548:2: note: in expansion of macro ‘HSA_SORRY_AT’ - HSA_SORRY_AT (gimple_location (stmt), m_warning_message); - ^~~~~~~~~~~~ -../../../riscv-gcc/gcc/hsa-gen.c:4555:68: warning: format not a string literal and no format arguments [-Wformat-security] - warning_at (gimple_location (stmt), OPT_Whsa, m_warning_message); - ^ -../../../riscv-gcc/gcc/ipa-devirt.c: In function ‘void warn_odr(tree, tree, tree, tree, bool, bool*, const char*)’: -../../../riscv-gcc/gcc/ipa-devirt.c:1050:47: warning: format not a string literal and no format arguments [-Wformat-security] - inform (DECL_SOURCE_LOCATION (decl2), reason); - ^ -../../../riscv-gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx_insn*)’: -../../../riscv-gcc/gcc/reload1.c:3754:28: warning: ‘orig_dup[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized] - *recog_data.dup_loc[i] = orig_dup[i]; - ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ -../../../riscv-gcc/gcc/tree-ssa-ccp.c: In member function ‘virtual unsigned int {anonymous}::pass_post_ipa_warn::execute(function*)’: -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: unknown conversion type character ‘G’ in format [-Wformat=] - "expected", stmt, i + 1)) - ^ -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘bool maybe_diag_stxncpy_trunc(gimple_stmt_iterator, tree, tree)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘void handle_builtin_stxncpy(built_in_function, gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func)) - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘void print_conversion_rejection(location_t, conversion_info*, tree)’: -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: unknown conversion type character ‘H’ in format [-Wformat=] - info->n_arg + 1, from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘z_candidate* build_user_type_conversion_1(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: unknown conversion type character ‘H’ in format [-Wformat=] - fromtype, totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* build_converted_constant_expr_internal(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: unknown conversion type character ‘H’ in format [-Wformat=] - type, next_conversion (c)->type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "converted constant expression", t, type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* build_conditional_expr_1(const op_location_t&, tree, tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "involves truncation", arg2_type, vtype); - ^ -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "involves truncation", arg3_type, vtype); - ^ -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* convert_like_real(conversion*, tree, tree, int, bool, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: unknown conversion type character ‘H’ in format [-Wformat=] - totype, TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: unknown conversion type character ‘H’ in format [-Wformat=] - totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "lvalue of type %qI", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "type %qH to an rvalue of type %qI", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "discards qualifiers", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* convert_arg_to_ellipsis(tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: unknown conversion type character ‘H’ in format [-Wformat=] - arg_type, double_type_node); - ^ -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘void complain_about_bad_argument(location_t, tree, tree, tree, int)’: -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from_type, to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘int joust(z_candidate*, z_candidate*, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: unknown conversion type character ‘H’ in format [-Wformat=] - source, w->second_conv->type)) - ^ -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* perform_implicit_conversion_flags(tree, tree, tsubst_flags_t, int)’: -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* initialize_reference(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: unknown conversion type character ‘H’ in format [-Wformat=] - type, TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* cp_convert_to_pointer(tree, tree, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: unknown conversion type character ‘H’ in format [-Wformat=] - intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: unknown conversion type character ‘H’ in format [-Wformat=] - error_at (loc, "invalid conversion from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* convert_to_reference(tree, tree, int, int, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: unknown conversion type character ‘H’ in format [-Wformat=] - ttr, reftype); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: unknown conversion type character ‘H’ in format [-Wformat=] - error_at (loc, "cannot convert type %qH to type %qI", intype, reftype); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* ocp_convert(tree, tree, int, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:707:26: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_conv_diag); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/pt.c: In function ‘tree_node* tsubst_copy_and_build(tree, tree, tsubst_flags_t, tree, bool, bool)’: -../../../riscv-gcc/gcc/cp/pt.c:18292:20: warning: format not a string literal and no format arguments [-Wformat-security] - error (error_msg); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* cp_build_binary_op(const op_location_t&, tree_code, tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:4480:24: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_op_diag); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* cp_build_unary_op(tree_code, tree, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:6232:24: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_op_diag); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* convert_member_func_to_ptr(tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "converting from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* build_reinterpret_cast_1(tree, tree, bool, bool*, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - " from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - " from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "increases required alignment of target type", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* build_const_cast_1(tree, tree, tsubst_flags_t, bool*)’: -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - src_type, dst_type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* convert_for_assignment(tree, tree, impl_conv_rhs, tree, int, tsubst_flags_t, int)’: -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c: In function ‘bool check_narrowing(tree, tree, tsubst_flags_t, bool)’: -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type) - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/fortran/trans-intrinsic.c: In function ‘void gfc_conv_intrinsic_findloc(gfc_se*, gfc_expr*)’: -../../../riscv-gcc/gcc/fortran/trans-intrinsic.c:5615:7: warning: ‘forward_branch’ may be used uninitialized in this function [-Wmaybe-uninitialized] - tmp = build3_v (COND_EXPR, backse.expr, forward_branch, back_branch); -../../../riscv-gcc/gcc/collect2.c: In function ‘void scan_prog_file(const char*, scanpass, scanfilter)’: -../../../riscv-gcc/gcc/collect2.c:2463:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/collect-utils.c: In function ‘pex_obj* collect_execute(const char*, char**, const char*, const char*, int, bool)’: -../../../riscv-gcc/gcc/collect-utils.c:195:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/lto-wrapper.c: In function ‘bool find_and_merge_options(int, off_t, const char*, cl_decoded_option**, unsigned int*, const char*)’: -../../../riscv-gcc/gcc/lto-wrapper.c:1005:8: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, data, length); - ~~~~~^~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘long unsigned int get_random_number()’: -../../../riscv-gcc/gcc/gcc.c:9639:12: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, &ret, sizeof (HOST_WIDE_INT)); - ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘void do_report_bug(const char**, int, char**, char**)’: -../../../riscv-gcc/gcc/gcc.c:6999:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n//", 3); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7002:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, " ", 1); - ~~~~~~^~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7003:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, new_argv[i], strlen (new_argv[i])); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7005:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n\n", 2); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c: In function ‘void lto_resolution_read(splay_tree, FILE*, lto_file*)’: -../../../riscv-gcc/gcc/lto/lto.c:1918:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, " "); /* Read white space. */ - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1920:9: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Wunused-result] - fread (obj_name, sizeof (char), name_len, resolution); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1940:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, "%u", &num_symbols); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/config/riscv/riscv.md:2281:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2303:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2326:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2349:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2415:1: warning: source missing a mode? -Statistics for recog: - Number of decisions: 1699 - longest path: 32 (code: 188) - longest backtrack: 13 (code: 336) -Statistics for split_insns: - Number of decisions: 209 - longest path: 30 (code: 40) - longest backtrack: 3 (code: 40) -Statistics for peephole2_insns: - Number of decisions: 22 - longest path: 22 (code: 1) - longest backtrack: 0 (code: 1) -Shared 1212 out of 3026 states by creating 356 new states, saving 856 -Applying io_quotes_use to drm/exynos_drm.h -Applying io_quotes_use to drm/nouveau_drm.h -Applying io_quotes_use to drm/radeon_drm.h -Applying io_quotes_use to drm/drm.h -Applying io_quotes_use to drm/etnaviv_drm.h -Applying io_quotes_use to drm/v3d_drm.h -Applying io_quotes_use to drm/savage_drm.h -Applying io_quotes_use to drm/vc4_drm.h -Applying io_quotes_use to drm/mga_drm.h -Applying io_quotes_use to drm/omap_drm.h -Applying io_quotes_use to drm/i915_drm.h -Applying io_quotes_use to drm/r128_drm.h -Applying io_quotes_use to drm/msm_drm.h -Applying io_quotes_use to drm/amdgpu_drm.h -Applying io_quotes_use to drm/via_drm.h -Applying io_quotes_use to drm/sis_drm.h -Applying io_quotes_use to drm/vgem_drm.h -Applying io_quotes_use to drm/i810_drm.h -Applying io_quotes_use to drm/tegra_drm.h -Applying hpux8_bogus_inlines to math.h -Applying io_quotes_use to linux/fd.h -Applying io_quotes_use to linux/usb/tmc.h -Applying io_quotes_use to linux/nbd.h -Applying io_quotes_use to linux/ppdev.h -Applying io_quotes_def to linux/ppp-comp.h -Applying io_quotes_use to linux/fuse.h -Applying io_quotes_use to linux/ipmi_bmc.h -Applying io_quotes_use to linux/lightnvm.h -Applying io_quotes_use to linux/gpio.h -Applying io_quotes_use to linux/spi/spidev.h -Applying io_quotes_use to linux/mmtimer.h -Applying io_quotes_use to linux/btrfs.h --fself-test: 46338 pass(es) in 0.468013 seconds -Applying io_quotes_use to linux/bt-bmc.h -Applying io_quotes_use to linux/nsfs.h -Applying io_quotes_def to linux/version.h -Applying io_quotes_use to linux/seccomp.h -Applying io_quotes_use to linux/mmc/ioctl.h -Applying io_quotes_use to linux/phantom.h --fself-test: 46308 pass(es) in 0.474821 seconds -Applying io_quotes_use to linux/vm_sockets.h -Applying io_quotes_use to linux/omapfb.h -Applying io_quotes_def to linux/soundcard.h -Applying io_quotes_use to linux/vtpm_proxy.h -Applying io_quotes_use to linux/synclink.h -Applying io_quotes_use to linux/dn.h -Applying io_quotes_use to linux/atmbr2684.h -Applying io_quotes_use to linux/rpmsg.h -Applying io_quotes_use to linux/rio_cm_cdev.h -Applying io_quotes_use to linux/cciss_ioctl.h -Applying io_quotes_use to linux/sync_file.h -Applying io_quotes_use to linux/tee.h -Applying io_quotes_use to linux/i2o-dev.h -Applying io_quotes_use to linux/rfkill.h -Applying io_quotes_use to linux/watchdog.h -Applying io_quotes_use to linux/cm4000_cs.h -Applying io_quotes_use to linux/genwqe/genwqe_card.h -Applying io_quotes_use to linux/vfio.h -Applying io_quotes_use to linux/gigaset_dev.h -Applying io_quotes_use to linux/if_pppox.h -Applying io_quotes_use to linux/blkzoned.h -Applying io_quotes_use to linux/ndctl.h -Applying io_quotes_use to linux/agpgart.h -Applying io_quotes_use to linux/blkpg.h -Applying io_quotes_use to linux/fpga-dfl.h -Applying io_quotes_use to linux/psp-sev.h -Applying io_quotes_use to linux/wmi.h -Applying io_quotes_use to linux/fs.h -Applying io_quotes_use to linux/ptp_clock.h -Applying io_quotes_use to linux/reiserfs_fs.h -Applying io_quotes_use to linux/dma-buf.h -Applying io_quotes_use to linux/raid/md_u.h -Applying io_quotes_use to linux/random.h -Applying io_quotes_use to linux/auto_fs.h -Applying io_quotes_use to linux/uinput.h -Applying io_quotes_use to linux/suspend_ioctls.h -Applying io_quotes_use to linux/vboxguest.h -Applying io_quotes_use to linux/ipmi.h -Applying io_quotes_use to linux/dm-ioctl.h -Applying io_quotes_use to linux/aspeed-lpc-ctrl.h -Applying io_quotes_use to linux/hsi/cs-protocol.h -Applying io_quotes_use to linux/hsi/hsi_char.h -Applying io_quotes_use to linux/raw.h -Applying io_quotes_use to linux/vhost.h -Applying io_quotes_use to linux/userfaultfd.h -Applying io_quotes_def to linux/pci_regs.h -Applying io_quotes_use to linux/pktcdvd.h -Applying io_quotes_use to rdma/rdma_user_ioctl.h -Applying sun_malloc to malloc.h -Applying pthread_incomplete_struct_argument to pthread.h -Applying io_quotes_use to video/sisfb.h -Applying sysv68_string to string.h -Applying io_quotes_use to sound/emu10k1.h -Applying io_quotes_use to sound/compress_offload.h -Applying io_quotes_use to sound/asequencer.h -Applying io_quotes_use to sound/asound.h -Applying glibc_stdint to stdint.h -Applying io_quotes_use to sys/mount.h -Applying io_quotes_use to sys/raw.h -Applying io_quotes_use to scsi/cxlflash_ioctl.h -Applying io_quotes_use to mtd/ubi-user.h -Applying io_quotes_use to misc/cxl.h -Applying io_quotes_use to misc/ocxl.h -configure: WARNING: decimal float is not supported for this target, ignored -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -In file included from ../../../../riscv-gcc/libgcc/unwind-dw2.c:411: -./md-unwind-support.h: In function 'riscv_fallback_frame_state': -./md-unwind-support.h:67:6: warning: assignment to 'struct sigcontext *' from incompatible pointer type 'mcontext_t *' {aka 'struct mcontext_t *'} [-Wincompatible-pointer-types] - 67 | sc = &rt_->uc.uc_mcontext; - | ^ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c: In function '__sync_nand_and_fetch_1': -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:63:14: note: '__sync_fetch_and_nand' changed semantics in GCC 4.4 - 63 | type o = __sync_fetch_and_ ## opname ## _ ## size (p, v); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -In file included from ../../../../riscv-gcc/libgcc/unwind-dw2.c:411: -./md-unwind-support.h: In function 'riscv_fallback_frame_state': -./md-unwind-support.h:67:6: warning: assignment to 'struct sigcontext *' from incompatible pointer type 'mcontext_t *' {aka 'struct mcontext_t *'} [-Wincompatible-pointer-types] - 67 | sc = &rt_->uc.uc_mcontext; - | ^ -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -configure: WARNING: No native atomic operations are provided for this platform. -configure: WARNING: They will be faked using a mutex. -configure: WARNING: Performance of certain classes will degrade as a result. -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c: In function 'date_and_time': -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:33: warning: '%04d' directive output may be truncated writing between 4 and 11 bytes into a region of size 9 [-Wformat-truncation=] - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:32: note: directive argument in the range [-2147481748, 2147483647] - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:32: note: directive argument in the range [-2147483647, 2147483647] -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:2: note: 'snprintf' output between 9 and 34 bytes into a destination of size 9 - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 166 | values[0], values[1], values[2]); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:33: warning: '%+03d' directive output may be truncated writing between 3 and 9 bytes into a region of size 6 [-Wformat-truncation=] - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:32: note: directive argument in the range [-35791394, 35791394] - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:32: note: directive argument in the range [0, 59] -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:2: note: 'snprintf' output between 6 and 12 bytes into a destination of size 6 - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 173 | values[3] / 60, abs (values[3] % 60)); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: .libs/fpu.o: in function `.L11': -fpu.c:(.text._gfortrani_set_fpu_trap_exceptions+0x86): warning: fedisableexcept is not implemented and will always fail -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: fpu.c:(.text._gfortrani_set_fpu_trap_exceptions+0x74): warning: feenableexcept is not implemented and will always fail -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: .libs/fpu.o: in function `_gfortrani_get_fpu_trap_exceptions': -fpu.c:(.text._gfortrani_get_fpu_trap_exceptions+0x4): warning: fegetexcept is not implemented and will always fail -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-isa-sim'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-pk'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-tests'... -Submodule 'env' (https://github.com/riscv/riscv-test-env.git) registered for path 'toolchains/riscv-tools/riscv-tests/env' -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-tests/env'... -Cloning into '/home/riscvuser/chipyard/toolchains/libgloss'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu'... -Submodule 'capstone' (https://git.qemu.org/git/capstone.git) registered for path 'toolchains/qemu/capstone' -Submodule 'dtc' (https://git.qemu.org/git/dtc.git) registered for path 'toolchains/qemu/dtc' -Submodule 'roms/QemuMacDrivers' (https://git.qemu.org/git/QemuMacDrivers.git) registered for path 'toolchains/qemu/roms/QemuMacDrivers' -Submodule 'roms/SLOF' (https://git.qemu.org/git/SLOF.git) registered for path 'toolchains/qemu/roms/SLOF' -Submodule 'roms/edk2' (https://git.qemu.org/git/edk2.git) registered for path 'toolchains/qemu/roms/edk2' -Submodule 'roms/ipxe' (https://git.qemu.org/git/ipxe.git) registered for path 'toolchains/qemu/roms/ipxe' -Submodule 'roms/openbios' (https://git.qemu.org/git/openbios.git) registered for path 'toolchains/qemu/roms/openbios' -Submodule 'roms/openhackware' (https://git.qemu.org/git/openhackware.git) registered for path 'toolchains/qemu/roms/openhackware' -Submodule 'roms/opensbi' (https://git.qemu.org/git/opensbi.git) registered for path 'toolchains/qemu/roms/opensbi' -Submodule 'roms/qemu-palcode' (https://git.qemu.org/git/qemu-palcode.git) registered for path 'toolchains/qemu/roms/qemu-palcode' -Submodule 'roms/seabios' (https://git.qemu.org/git/seabios.git/) registered for path 'toolchains/qemu/roms/seabios' -Submodule 'roms/seabios-hppa' (https://git.qemu.org/git/seabios-hppa.git) registered for path 'toolchains/qemu/roms/seabios-hppa' -Submodule 'roms/sgabios' (https://git.qemu.org/git/sgabios.git) registered for path 'toolchains/qemu/roms/sgabios' -Submodule 'roms/skiboot' (https://git.qemu.org/git/skiboot.git) registered for path 'toolchains/qemu/roms/skiboot' -Submodule 'roms/u-boot' (https://git.qemu.org/git/u-boot.git) registered for path 'toolchains/qemu/roms/u-boot' -Submodule 'roms/u-boot-sam460ex' (https://git.qemu.org/git/u-boot-sam460ex.git) registered for path 'toolchains/qemu/roms/u-boot-sam460ex' -Submodule 'slirp' (https://git.qemu.org/git/libslirp.git) registered for path 'toolchains/qemu/slirp' -Submodule 'tests/fp/berkeley-softfloat-3' (https://git.qemu.org/git/berkeley-softfloat-3.git) registered for path 'toolchains/qemu/tests/fp/berkeley-softfloat-3' -Submodule 'tests/fp/berkeley-testfloat-3' (https://git.qemu.org/git/berkeley-testfloat-3.git) registered for path 'toolchains/qemu/tests/fp/berkeley-testfloat-3' -Submodule 'ui/keycodemapdb' (https://git.qemu.org/git/keycodemapdb.git) registered for path 'toolchains/qemu/ui/keycodemapdb' -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/capstone'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/dtc'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/QemuMacDrivers'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/SLOF'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/ipxe'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/openbios'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/openhackware'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/opensbi'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/qemu-palcode'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/seabios'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/seabios-hppa'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/sgabios'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/skiboot'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/u-boot'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/u-boot-sam460ex'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/slirp'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/tests/fp/berkeley-softfloat-3'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/tests/fp/berkeley-testfloat-3'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/ui/keycodemapdb'... -Submodule 'SoftFloat' (https://github.com/ucb-bar/berkeley-softfloat-3.git) registered for path 'toolchains/qemu/roms/edk2/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3' -Submodule 'CryptoPkg/Library/OpensslLib/openssl' (https://github.com/openssl/openssl) registered for path 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl' -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl'... -Submodule 'boringssl' (https://boringssl.googlesource.com/boringssl) registered for path 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/boringssl' -Submodule 'krb5' (https://github.com/krb5/krb5) registered for path 'toolchai warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -configure: WARNING: gcc emits a warning for alias between functions of incompatible types -configure: WARNING: Multi-arch is disabled. -configure: WARNING: gcc emits a warning for alias between functions of incompatible types -configure: WARNING: Multi-arch is disabled. -configure: WARNING: minimum kernel version reset to 4.15.0 -configure: WARNING: minimum kernel version reset to 4.15.0 -*** errlist.c count 134 inflated to GLIBC_2.12 count 135 (old errno.h?) -*** This configuration is not supported in the following subdirectories: - zlib target-libquadmath target-libitm target-libsanitizer target-libvtv gnattools gotools target-libada target-libhsail-rt target-libphobos target-zlib target-libgo target-libffi target-libobjc target-liboffloadmic target-libssp - (Any other directories should still work fine.) -objcopy: /tmp/ls373943: debuglink section already exists -configure: WARNING: decimal float is not supported for this target, ignored -ar: `u' modifier ignored since `D' is the default (see `U') -../../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -../../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -libtool: install: warning: remember to run `libtool --finish /home/riscvuser/chipyard/riscv-tools-install/libexec/gcc/riscv64-unknown-linux-gnu/9.2.0' -ar: `u' modifier ignored since `D' is the default (see `U') -../../../riscv-gcc/libcpp/expr.c: In function ‘unsigned int cpp_classify_number(cpp_reader*, const cpp_token*, const char**, location_t)’: -../../../riscv-gcc/libcpp/expr.c:797:18: warning: format not a string literal and no format arguments [-Wformat-security] - 0, message); - ^ -../../../riscv-gcc/libcpp/expr.c:800:39: warning: format not a string literal and no format arguments [-Wformat-security] - virtual_location, 0, message); - ^ -../../../riscv-gcc/libcpp/macro.c: In member function ‘vaopt_state::update_type vaopt_state::update(const cpp_token*)’: -../../../riscv-gcc/libcpp/macro.c:164:23: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c:193:24: warning: format not a string literal and no format arguments [-Wformat-security] - vaopt_paste_error); - ^ -../../../riscv-gcc/libcpp/macro.c: In function ‘cpp_macro* create_iso_definition(cpp_reader*)’: -../../../riscv-gcc/libcpp/macro.c:3385:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -../../../riscv-gcc/libcpp/macro.c:3400:58: warning: format not a string literal and no format arguments [-Wformat-security] - cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); - ^ -ar: `u' modifier ignored since `D' is the default (see `U') -configure: WARNING: decimal float is not supported for this target, ignored -configure: WARNING: fixed-point is not supported for this target, ignored -Links are now set up to build a cross-compiler - from x86_64-pc-linux-gnu to riscv64-unknown-linux-gnu. -../../../riscv-gcc/gcc/genhooks.c: In function ‘void emit_documentation(const char*)’: -../../../riscv-gcc/gcc/genhooks.c:131:45: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - while (fscanf (f, "%*[^@]"), buf[0] = '\0', - ^ -../../../riscv-gcc/gcc/genhooks.c:140:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:193:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%5[^ \n]", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/genhooks.c:199:14: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (f, "%999s", buf); - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/fortran/gfortran.texi:2769: warning: @ref node name should not contain `:' -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -GIMPLE decision tree has 2874 leafs, maximum depth 12 and a total number of 11721 nodes -removed 1855 duplicate tails -GENERIC decision tree has 2760 leafs, maximum depth 12 and a total number of 11180 nodes -removed 1757 duplicate tails -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘int convert_arguments(location_t, vec, tree, vec*, vec*, tree, tree)’: -../../../riscv-gcc/gcc/c/c-typeck.c:3601:28: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_func_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_unary_op(location_t, tree_code, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:4339:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘void warning_init(location_t, int, const char*)’: -../../../riscv-gcc/gcc/c/c-typeck.c:6400:43: warning: format not a string literal and no format arguments [-Wformat-security] - warned = warning_at (exploc, opt, gmsgid); - ^ -../../../riscv-gcc/gcc/c/c-typeck.c: In function ‘tree_node* build_binary_op(location_t, tree_code, tree, tree, bool)’: -../../../riscv-gcc/gcc/c/c-typeck.c:11480:42: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (location, invalid_op_diag); - ^ -../../../riscv-gcc/gcc/c/c-convert.c: In function ‘tree_node* convert(tree, tree)’: -../../../riscv-gcc/gcc/c/c-convert.c:81:31: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_conv_diag); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c: In function ‘void c_parse_error(const char*, cpp_ttype, tree, unsigned char, rich_location*)’: -../../../riscv-gcc/gcc/c-family/c-common.c:6144:30: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, gmsgid); - ^ -../../../riscv-gcc/gcc/c-family/c-common.c:6148:33: warning: format not a string literal and no format arguments [-Wformat-security] - error_at (richloc, message); - ^ -../../../riscv-gcc/gcc/fold-const.c: In function ‘void fold_overflow_warning(const char*, warn_strict_overflow_code)’: -../../../riscv-gcc/gcc/fold-const.c:303:42: warning: format not a string literal and no format arguments [-Wformat-security] - warning (OPT_Wstrict_overflow, gmsgid); - ^ -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncpy(gimple_stmt_iterator*, tree, tree, tree)’: -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, slen); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1854:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:1858:16: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c: In function ‘bool gimple_fold_builtin_strncat(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len, dstsize); - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2229:37: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, fndecl, len)) - ^ -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-fold.c:2246:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c: In function ‘void find_explicit_erroneous_behavior()’: -../../../riscv-gcc/gcc/gimple-ssa-isolate-paths.c:554:35: warning: format not a string literal and no format arguments [-Wformat-security] - OPT_Wreturn_local_addr, msg)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In function ‘bool {anonymous}::format_directive(const {anonymous}::sprintf_dom_walker::call_info&, {anonymous}::format_result*, const {anonymous}::directive&, vr_values*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - target_to_host (hostdir, sizeof hostdir, dir.beg)); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: field precision specifier ‘.*’ expects argument of type ‘int’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:2816:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c: In member function ‘bool {anonymous}::sprintf_dom_walker::handle_gimple_call(gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4180:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - info.callstmt); - ^ -../../../riscv-gcc/gcc/gimple-ssa-sprintf.c:4210:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_overlap(location_t, gimple*, {anonymous}::builtin_access&)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1449:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1459:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1467:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1482:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1490:13: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 7 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1497:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1511:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: format ‘%s’ expects argument of type ‘char*’, but argument 10 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1518:38: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[0], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 6 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1524:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1553:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1561:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1571:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1579:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, sizrange[0], sizrange[1], ovlsiz[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1591:53: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] - offstr[0], offstr[1], ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 9 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 11 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: format ‘%s’ expects argument of type ‘char*’, but argument 12 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1601:48: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ovlsiz[1], offstr[2]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 8 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: format ‘%s’ expects argument of type ‘char*’, but argument 11 has type ‘long int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1611:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘bool {anonymous}::maybe_diag_access_bounds(location_t, gimple*, tree, int, const {anonymous}::builtin_memref&, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1655:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: unknown conversion type character ‘G’ in format [-Wformat=] - maxobjsize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1662:30: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1], ref.base, type)) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1719:58: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1729:42: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], rangestr[1]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1735:45: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 7 has type ‘long unsigned int’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1756:40: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.base, TREE_TYPE (ref.base))) - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1764:39: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.basesize.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1778:57: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0]); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1784:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func, rangestr[0], ref.base, type); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1796:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: unknown conversion type character ‘G’ in format [-Wformat=] - ref.refoff.to_uhwi ()); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%s’ expects argument of type ‘char*’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%E’ expects argument of type ‘tree_node*’, but argument 6 has type ‘char*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1808:28: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c: In function ‘int check_bounds_or_overlap(gimple*, tree, tree, tree, tree, bool, bool)’: -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: unknown conversion type character ‘G’ in format [-Wformat=] - call, func); - ^ -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/gimple-ssa-warn-restrict.c:1981:19: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/hsa-gen.c: In member function ‘void omp_simple_builtin::generate(gimple*, hsa_bb*)’: -../../../riscv-gcc/gcc/hsa-gen.c:88:32: warning: format not a string literal and no format arguments [-Wformat-security] - inform (location, message); \ - ^ -../../../riscv-gcc/gcc/hsa-gen.c:4548:2: note: in expansion of macro ‘HSA_SORRY_AT’ - HSA_SORRY_AT (gimple_location (stmt), m_warning_message); - ^~~~~~~~~~~~ -../../../riscv-gcc/gcc/hsa-gen.c:4555:68: warning: format not a string literal and no format arguments [-Wformat-security] - warning_at (gimple_location (stmt), OPT_Whsa, m_warning_message); - ^ -../../../riscv-gcc/gcc/ipa-devirt.c: In function ‘void warn_odr(tree, tree, tree, tree, bool, bool*, const char*)’: -../../../riscv-gcc/gcc/ipa-devirt.c:1050:47: warning: format not a string literal and no format arguments [-Wformat-security] - inform (DECL_SOURCE_LOCATION (decl2), reason); - ^ -../../../riscv-gcc/gcc/reload1.c: In function ‘void elimination_costs_in_insn(rtx_insn*)’: -../../../riscv-gcc/gcc/reload1.c:3754:28: warning: ‘orig_dup[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized] - *recog_data.dup_loc[i] = orig_dup[i]; - ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ -../../../riscv-gcc/gcc/tree-ssa-ccp.c: In member function ‘virtual unsigned int {anonymous}::pass_post_ipa_warn::execute(function*)’: -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: unknown conversion type character ‘G’ in format [-Wformat=] - "expected", stmt, i + 1)) - ^ -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-ccp.c:3460:34: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘bool maybe_diag_stxncpy_trunc(gimple_stmt_iterator, tree, tree)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2101:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2115:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2121:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt, lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: unknown conversion type character ‘G’ in format [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 6 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2134:46: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[1].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2140:52: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: unknown conversion type character ‘G’ in format [-Wformat=] - cntrange[1].to_uhwi (), lenrange[0].to_uhwi ()); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: format ‘%wu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘tree {aka tree_node*}’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2156:55: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func, cnt); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2182:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c: In function ‘void handle_builtin_stxncpy(built_in_function, gimple_stmt_iterator*)’: -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func)) - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2295:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: unknown conversion type character ‘G’ in format [-Wformat=] - stmt, func); - ^ -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: format ‘%D’ expects argument of type ‘tree_node*’, but argument 4 has type ‘gimple*’ [-Wformat=] -../../../riscv-gcc/gcc/tree-ssa-strlen.c:2301:15: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘void print_conversion_rejection(location_t, conversion_info*, tree)’: -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3559:22: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3572:25: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: unknown conversion type character ‘H’ in format [-Wformat=] - info->n_arg + 1, from, info->to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:3578:44: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘z_candidate* build_user_type_conversion_1(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: unknown conversion type character ‘H’ in format [-Wformat=] - fromtype, totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4094:20: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* build_converted_constant_expr_internal(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: unknown conversion type character ‘H’ in format [-Wformat=] - type, next_conversion (c)->type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4241:37: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "converted constant expression", t, type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4261:49: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:4296:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* build_conditional_expr_1(const op_location_t&, tree, tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "involves truncation", arg2_type, vtype); - ^ -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:5096:50: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "involves truncation", arg3_type, vtype); - ^ -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:5103:50: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* convert_like_real(conversion*, tree, tree, int, bool, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: unknown conversion type character ‘H’ in format [-Wformat=] - totype, TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7027:29: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: unknown conversion type character ‘H’ in format [-Wformat=] - totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7036:17: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), totype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7075:31: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "lvalue of type %qI", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7373:61: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "type %qH to an rvalue of type %qI", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7377:55: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "discards qualifiers", totype, extype); - ^ -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7380:41: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* convert_arg_to_ellipsis(tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: unknown conversion type character ‘H’ in format [-Wformat=] - arg_type, double_type_node); - ^ -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:7535:33: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘void complain_about_bad_argument(location_t, tree, tree, tree, int)’: -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: unknown conversion type character ‘H’ in format [-Wformat=] - from_type, to_type); - ^ -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:9522:24: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘int joust(z_candidate*, z_candidate*, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: unknown conversion type character ‘H’ in format [-Wformat=] - source, w->second_conv->type)) - ^ -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:10777:34: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* perform_implicit_conversion_flags(tree, tree, tsubst_flags_t, int)’: -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11250:32: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c: In function ‘tree_node* initialize_reference(tree, tree, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: unknown conversion type character ‘H’ in format [-Wformat=] - type, TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11589:31: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr)); - ^ -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/call.c:11593:25: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* cp_convert_to_pointer(tree, tree, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: unknown conversion type character ‘H’ in format [-Wformat=] - intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:92:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:102:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:174:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:201:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: unknown conversion type character ‘H’ in format [-Wformat=] - error_at (loc, "invalid conversion from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:226:67: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: unknown conversion type character ‘H’ in format [-Wformat=] - expr, intype, type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:255:26: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* convert_to_reference(tree, tree, int, int, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: unknown conversion type character ‘H’ in format [-Wformat=] - ttr, reftype); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:476:17: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: unknown conversion type character ‘H’ in format [-Wformat=] - error_at (loc, "cannot convert type %qH to type %qI", intype, reftype); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:525:74: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/cvt.c: In function ‘tree_node* ocp_convert(tree, tree, int, int, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/cvt.c:707:26: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_conv_diag); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - TREE_TYPE (expr), type); - ^ -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/cvt.c:947:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/pt.c: In function ‘tree_node* tsubst_copy_and_build(tree, tree, tsubst_flags_t, tree, bool, bool)’: -../../../riscv-gcc/gcc/cp/pt.c:18292:20: warning: format not a string literal and no format arguments [-Wformat-security] - error (error_msg); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* cp_build_binary_op(const op_location_t&, tree_code, tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:4480:24: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_op_diag); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* cp_build_unary_op(tree_code, tree, bool, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:6232:24: warning: format not a string literal and no format arguments [-Wformat-security] - error (invalid_op_diag); - ^ -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* convert_member_func_to_ptr(tree, tree, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "converting from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7449:49: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* build_reinterpret_cast_1(tree, tree, bool, bool*, tsubst_flags_t)’: -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7594:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - " from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7619:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: unknown conversion type character ‘H’ in format [-Wformat=] - " from %qH to %qI", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7630:36: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: unknown conversion type character ‘H’ in format [-Wformat=] - "increases required alignment of target type", intype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7651:63: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* build_const_cast_1(tree, tree, tsubst_flags_t, bool*)’: -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - src_type, dst_type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:7834:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c: In function ‘tree_node* convert_for_assignment(tree, tree, impl_conv_rhs, tree, int, tsubst_flags_t, int)’: -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9013:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9018:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9022:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9027:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9031:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: unknown conversion type character ‘H’ in format [-Wformat=] - rhstype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck.c:9036:18: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c: In function ‘bool check_narrowing(tree, tree, tsubst_flags_t, bool)’: -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:999:21: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type) - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:1010:27: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: unknown conversion type character ‘H’ in format [-Wformat=] - init, ftype, type); - ^ -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: unknown conversion type character ‘I’ in format [-Wformat=] -../../../riscv-gcc/gcc/cp/typeck2.c:1023:23: warning: too many arguments for format [-Wformat-extra-args] -../../../riscv-gcc/gcc/fortran/trans-intrinsic.c: In function ‘void gfc_conv_intrinsic_findloc(gfc_se*, gfc_expr*)’: -../../../riscv-gcc/gcc/fortran/trans-intrinsic.c:5615:7: warning: ‘forward_branch’ may be used uninitialized in this function [-Wmaybe-uninitialized] - tmp = build3_v (COND_EXPR, backse.expr, forward_branch, back_branch); -../../../riscv-gcc/gcc/collect2.c: In function ‘void scan_prog_file(const char*, scanpass, scanfilter)’: -../../../riscv-gcc/gcc/collect2.c:2463:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/collect-utils.c: In function ‘pex_obj* collect_execute(const char*, char**, const char*, const char*, int, bool)’: -../../../riscv-gcc/gcc/collect-utils.c:195:37: warning: format not a string literal and no format arguments [-Wformat-security] - fatal_error (input_location, errmsg); - ^ -../../../riscv-gcc/gcc/lto-wrapper.c: In function ‘bool find_and_merge_options(int, off_t, const char*, cl_decoded_option**, unsigned int*, const char*)’: -../../../riscv-gcc/gcc/lto-wrapper.c:1005:8: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, data, length); - ~~~~~^~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l: In function ‘int yylex(const char**)’: -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:119:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - "GTY"/{EOID} { return GTY_TOKEN; } - ^~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gengtype-lex.l:114:1: note: here - "^" | - ^~~~ -gengtype-lex.c:357:15: warning: this statement may fall through [-Wimplicit-fallthrough=] - #define YY_DO_BEFORE_ACTION \ - ~~~~~~~~~~~~~^~~ -../../../riscv-gcc/gcc/gengtype-lex.l:136:1: note: in expansion of macro ‘YY_DO_BEFORE_ACTION’ - - ^ -../../../riscv-gcc/gcc/gengtype-lex.l:132:1: note: here - size_t len; - ^ ~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘long unsigned int get_random_number()’: -../../../riscv-gcc/gcc/gcc.c:9639:12: warning: ignoring return value of ‘ssize_t read(int, void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - read (fd, &ret, sizeof (HOST_WIDE_INT)); - ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c: In function ‘void do_report_bug(const char**, int, char**, char**)’: -../../../riscv-gcc/gcc/gcc.c:6999:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n//", 3); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7002:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, " ", 1); - ~~~~~~^~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7003:13: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, new_argv[i], strlen (new_argv[i])); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/gcc.c:7005:9: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result] - write (fd, "\n\n", 2); - ~~~~~~^~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c: In function ‘void lto_resolution_read(splay_tree, FILE*, lto_file*)’: -../../../riscv-gcc/gcc/lto/lto.c:1918:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, " "); /* Read white space. */ - ~~~~~~~^~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1920:9: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Wunused-result] - fread (obj_name, sizeof (char), name_len, resolution); - ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/lto/lto.c:1940:10: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] - fscanf (resolution, "%u", &num_symbols); - ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../riscv-gcc/gcc/config/riscv/riscv.md:2281:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2303:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2326:1: warning: operand 0 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2349:1: warning: operand 1 missing mode? -../../../riscv-gcc/gcc/config/riscv/riscv.md:2415:1: warning: source missing a mode? -Statistics for recog: - Number of decisions: 1699 - longest path: 32 (code: 188) - longest backtrack: 13 (code: 336) -Statistics for split_insns: - Number of decisions: 209 - longest path: 30 (code: 40) - longest backtrack: 3 (code: 40) -Statistics for peephole2_insns: - Number of decisions: 22 - longest path: 22 (code: 1) - longest backtrack: 0 (code: 1) -Shared 1212 out of 3026 states by creating 356 new states, saving 856 --fself-test: 46338 pass(es) in 0.621204 seconds --fself-test: 46308 pass(es) in 0.606442 seconds -Applying io_quotes_use to drm/exynos_drm.h -Applying io_quotes_use to drm/nouveau_drm.h -Applying io_quotes_use to drm/radeon_drm.h -Applying io_quotes_use to drm/drm.h -Applying io_quotes_use to drm/etnaviv_drm.h -Applying io_quotes_use to drm/v3d_drm.h -Applying io_quotes_use to drm/savage_drm.h -Applying io_quotes_use to drm/vc4_drm.h -Applying io_quotes_use to drm/mga_drm.h -Applying io_quotes_use to drm/omap_drm.h -Applying io_quotes_use to drm/i915_drm.h -Applying io_quotes_use to drm/r128_drm.h -Applying io_quotes_use to drm/msm_drm.h -Applying io_quotes_use to drm/amdgpu_drm.h -Applying io_quotes_use to drm/via_drm.h -Applying io_quotes_use to drm/sis_drm.h -Applying io_quotes_use to drm/vgem_drm.h -Applying io_quotes_use to drm/i810_drm.h -Applying io_quotes_use to drm/tegra_drm.h -Applying hpux8_bogus_inlines to math.h -Applying io_quotes_use to linux/fd.h -Applying io_quotes_use to linux/usb/tmc.h -Applying io_quotes_use to linux/nbd.h -Applying io_quotes_use to linux/ppdev.h -Applying io_quotes_def to linux/ppp-comp.h -Applying io_quotes_use to linux/fuse.h -Applying io_quotes_use to linux/ipmi_bmc.h -Applying io_quotes_use to linux/lightnvm.h -Applying io_quotes_use to linux/gpio.h -Applying io_quotes_use to linux/spi/spidev.h -Applying io_quotes_use to linux/mmtimer.h -Applying io_quotes_use to linux/btrfs.h -Applying io_quotes_use to linux/bt-bmc.h -Applying io_quotes_use to linux/nsfs.h -Applying io_quotes_def to linux/version.h -Applying io_quotes_use to linux/seccomp.h -Applying io_quotes_use to linux/mmc/ioctl.h -Applying io_quotes_use to linux/phantom.h -Applying io_quotes_use to linux/vm_sockets.h -Applying io_quotes_use to linux/omapfb.h -Applying io_quotes_def to linux/soundcard.h -Applying io_quotes_use to linux/vtpm_proxy.h -Applying io_quotes_use to linux/synclink.h -Applying io_quotes_use to linux/dn.h -Applying io_quotes_use to linux/atmbr2684.h -Applying io_quotes_use to linux/rpmsg.h -Applying io_quotes_use to linux/rio_cm_cdev.h -Applying io_quotes_use to linux/cciss_ioctl.h -Applying io_quotes_use to linux/sync_file.h -Applying io_quotes_use to linux/tee.h -Applying io_quotes_use to linux/i2o-dev.h -Applying io_quotes_use to linux/rfkill.h -Applying io_quotes_use to linux/watchdog.h -Applying io_quotes_use to linux/cm4000_cs.h -Applying io_quotes_use to linux/genwqe/genwqe_card.h -Applying io_quotes_use to linux/vfio.h -Applying io_quotes_use to linux/gigaset_dev.h -Applying io_quotes_use to linux/if_pppox.h -Applying io_quotes_use to linux/blkzoned.h -Applying io_quotes_use to linux/ndctl.h -Applying io_quotes_use to linux/agpgart.h -Applying io_quotes_use to linux/blkpg.h -Applying io_quotes_use to linux/fpga-dfl.h -Applying io_quotes_use to linux/psp-sev.h -Applying io_quotes_use to linux/wmi.h -Applying io_quotes_use to linux/fs.h -Applying io_quotes_use to linux/ptp_clock.h -Applying io_quotes_use to linux/reiserfs_fs.h -Applying io_quotes_use to linux/dma-buf.h -Applying io_quotes_use to linux/raid/md_u.h -Applying io_quotes_use to linux/random.h -Applying io_quotes_use to linux/auto_fs.h -Applying io_quotes_use to linux/uinput.h -Applying io_quotes_use to linux/suspend_ioctls.h -Applying io_quotes_use to linux/vboxguest.h -Applying io_quotes_use to linux/ipmi.h -Applying io_quotes_use to linux/dm-ioctl.h -Applying io_quotes_use to linux/aspeed-lpc-ctrl.h -Applying io_quotes_use to linux/hsi/cs-protocol.h -Applying io_quotes_use to linux/hsi/hsi_char.h -Applying io_quotes_use to linux/raw.h -Applying io_quotes_use to linux/vhost.h -Applying io_quotes_use to linux/userfaultfd.h -Applying io_quotes_def to linux/pci_regs.h -Applying io_quotes_use to linux/pktcdvd.h -Applying io_quotes_use to rdma/rdma_user_ioctl.h -Applying sun_malloc to malloc.h -Applying pthread_incomplete_struct_argument to pthread.h -Applying io_quotes_use to video/sisfb.h -Applying sysv68_string to string.h -Applying io_quotes_use to sound/emu10k1.h -Applying io_quotes_use to sound/compress_offload.h -Applying io_quotes_use to sound/asequencer.h -Applying io_quotes_use to sound/asound.h -Applying glibc_stdint to stdint.h -Applying io_quotes_use to sys/mount.h -Applying io_quotes_use to sys/raw.h -Applying io_quotes_use to scsi/cxlflash_ioctl.h -Applying io_quotes_use to mtd/ubi-user.h -Applying io_quotes_use to misc/cxl.h -Applying io_quotes_use to misc/ocxl.h -configure: WARNING: decimal float is not supported for this target, ignored -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -In file included from ../../../../riscv-gcc/libgcc/unwind-dw2.c:411: -./md-unwind-support.h: In function 'riscv_fallback_frame_state': -./md-unwind-support.h:67:6: warning: assignment to 'struct sigcontext *' from incompatible pointer type 'mcontext_t *' {aka 'struct mcontext_t *'} [-Wincompatible-pointer-types] - 67 | sc = &rt_->uc.uc_mcontext; - | ^ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_1'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_add_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_add_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:100:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 100 | GENERATE_FETCH_AND_OP(type, size, add, add, DONT_INVERT, o + v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_sub_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_sub_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:101:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 101 | GENERATE_FETCH_AND_OP(type, size, sub, sub, DONT_INVERT, o - v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_and_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_and_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:102:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 102 | GENERATE_FETCH_AND_OP(type, size, and, and, DONT_INVERT, o & v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_xor_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_xor_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:103:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 103 | GENERATE_FETCH_AND_OP(type, size, xor, xor, DONT_INVERT, o ^ v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_or_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_or_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:104:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 104 | GENERATE_FETCH_AND_OP(type, size, or, or, DONT_INVERT, o | v) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:34:8: warning: mismatch in argument 1 type of built-in function '__sync_fetch_and_nand_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 34 | type __sync_fetch_and_ ## opname ## _ ## size (type *p, type v) \ - | ^~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:61:8: warning: mismatch in argument 1 type of built-in function '__sync_nand_and_fetch_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 61 | type __sync_ ## opname ## _and_fetch_ ## size (type *p, type v) \ - | ^~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:68:8: warning: mismatch in argument 1 type of built-in function '__sync_val_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 68 | type __sync_val_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:94:8: warning: mismatch in argument 1 type of built-in function '__sync_bool_compare_and_swap_2'; expected 'volatile void *' [-Wbuiltin-declaration-mismatch] - 94 | bool __sync_bool_compare_and_swap_ ## size (type *p, type o, type n) \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:106:3: note: in expansion of macro 'GENERATE_COMPARE_AND_SWAP' - 106 | GENERATE_COMPARE_AND_SWAP(type, size) - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:109:1: note: in expansion of macro 'GENERATE_ALL' - 109 | GENERATE_ALL(unsigned short, 2) - | ^~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c: In function '__sync_nand_and_fetch_1': -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:63:14: note: '__sync_fetch_and_nand' changed semantics in GCC 4.4 - 63 | type o = __sync_fetch_and_ ## opname ## _ ## size (p, v); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:105:3: note: in expansion of macro 'GENERATE_FETCH_AND_OP' - 105 | GENERATE_FETCH_AND_OP(type, size, nand, and, INVERT, ~(o & v)) \ - | ^~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgcc/config/riscv/atomic.c:108:1: note: in expansion of macro 'GENERATE_ALL' - 108 | GENERATE_ALL(unsigned char, 1) - | ^~~~~~~~~~~~ -In file included from ../../../../riscv-gcc/libgcc/unwind-dw2.c:411: -./md-unwind-support.h: In function 'riscv_fallback_frame_state': -./md-unwind-support.h:67:6: warning: assignment to 'struct sigcontext *' from incompatible pointer type 'mcontext_t *' {aka 'struct mcontext_t *'} [-Wincompatible-pointer-types] - 67 | sc = &rt_->uc.uc_mcontext; - | ^ -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -configure: WARNING: No native atomic operations are provided for this platform. -configure: WARNING: They will be faked using a mutex. -configure: WARNING: Performance of certain classes will degrade as a result. -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c: In function 'date_and_time': -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:33: warning: '%04d' directive output may be truncated writing between 4 and 11 bytes into a region of size 9 [-Wformat-truncation=] - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:32: note: directive argument in the range [-2147481748, 2147483647] - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:32: note: directive argument in the range [-2147483647, 2147483647] -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:165:2: note: 'snprintf' output between 9 and 34 bytes into a destination of size 9 - 165 | snprintf (date, DATE_LEN + 1, "%04d%02d%02d", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 166 | values[0], values[1], values[2]); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:33: warning: '%+03d' directive output may be truncated writing between 3 and 9 bytes into a region of size 6 [-Wformat-truncation=] - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:32: note: directive argument in the range [-35791394, 35791394] - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~~~~~~~ -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:32: note: directive argument in the range [0, 59] -../../../../riscv-gcc/libgfortran/intrinsics/date_and_time.c:172:2: note: 'snprintf' output between 6 and 12 bytes into a destination of size 6 - 172 | snprintf (zone, ZONE_LEN + 1, "%+03d%02d", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 173 | values[3] / 60, abs (values[3] % 60)); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: .libs/fpu.o: in function `.L11': -fpu.c:(.text._gfortrani_set_fpu_trap_exceptions+0x86): warning: fedisableexcept is not implemented and will always fail -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: fpu.c:(.text._gfortrani_set_fpu_trap_exceptions+0x74): warning: feenableexcept is not implemented and will always fail -/home/riscvuser/chipyard/riscv-tools-install/riscv64-unknown-linux-gnu/bin/ld: .libs/fpu.o: in function `_gfortrani_get_fpu_trap_exceptions': -fpu.c:(.text._gfortrani_get_fpu_trap_exceptions+0x4): warning: fegetexcept is not implemented and will always fail -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Makefile:867: warning: overriding recipe for target 'all-multi' -Makefile:861: warning: ignoring old recipe for target 'all-multi' -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-isa-sim'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-pk'... -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-tests'... -Submodule 'env' (https://github.com/riscv/riscv-test-env.git) registered for path 'toolchains/riscv-tools/riscv-tests/env' -Cloning into '/home/riscvuser/chipyard/toolchains/riscv-tools/riscv-tests/env'... -Cloning into '/home/riscvuser/chipyard/toolchains/libgloss'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu'... -Submodule 'capstone' (https://git.qemu.org/git/capstone.git) registered for path 'toolchains/qemu/capstone' -Submodule 'dtc' (https://git.qemu.org/git/dtc.git) registered for path 'toolchains/qemu/dtc' -Submodule 'roms/QemuMacDrivers' (https://git.qemu.org/git/QemuMacDrivers.git) registered for path 'toolchains/qemu/roms/QemuMacDrivers' -Submodule 'roms/SLOF' (https://git.qemu.org/git/SLOF.git) registered for path 'toolchains/qemu/roms/SLOF' -Submodule 'roms/edk2' (https://git.qemu.org/git/edk2.git) registered for path 'toolchains/qemu/roms/edk2' -Submodule 'roms/ipxe' (https://git.qemu.org/git/ipxe.git) registered for path 'toolchains/qemu/roms/ipxe' -Submodule 'roms/openbios' (https://git.qemu.org/git/openbios.git) registered for path 'toolchains/qemu/roms/openbios' -Submodule 'roms/openhackware' (https://git.qemu.org/git/openhackware.git) registered for path 'toolchains/qemu/roms/openhackware' -Submodule 'roms/opensbi' (https://git.qemu.org/git/opensbi.git) registered for path 'toolchains/qemu/roms/opensbi' -Submodule 'roms/qemu-palcode' (https://git.qemu.org/git/qemu-palcode.git) registered for path 'toolchains/qemu/roms/qemu-palcode' -Submodule 'roms/seabios' (https://git.qemu.org/git/seabios.git/) registered for path 'toolchains/qemu/roms/seabios' -Submodule 'roms/seabios-hppa' (https://git.qemu.org/git/seabios-hppa.git) registered for path 'toolchains/qemu/roms/seabios-hppa' -Submodule 'roms/sgabios' (https://git.qemu.org/git/sgabios.git) registered for path 'toolchains/qemu/roms/sgabios' -Submodule 'roms/skiboot' (https://git.qemu.org/git/skiboot.git) registered for path 'toolchains/qemu/roms/skiboot' -Submodule 'roms/u-boot' (https://git.qemu.org/git/u-boot.git) registered for path 'toolchains/qemu/roms/u-boot' -Submodule 'roms/u-boot-sam460ex' (https://git.qemu.org/git/u-boot-sam460ex.git) registered for path 'toolchains/qemu/roms/u-boot-sam460ex' -Submodule 'slirp' (https://git.qemu.org/git/libslirp.git) registered for path 'toolchains/qemu/slirp' -Submodule 'tests/fp/berkeley-softfloat-3' (https://git.qemu.org/git/berkeley-softfloat-3.git) registered for path 'toolchains/qemu/tests/fp/berkeley-softfloat-3' -Submodule 'tests/fp/berkeley-testfloat-3' (https://git.qemu.org/git/berkeley-testfloat-3.git) registered for path 'toolchains/qemu/tests/fp/berkeley-testfloat-3' -Submodule 'ui/keycodemapdb' (https://git.qemu.org/git/keycodemapdb.git) registered for path 'toolchains/qemu/ui/keycodemapdb' -Cloning into '/home/riscvuser/chipya \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100644 index e044310f..00000000 --- a/entrypoint.sh +++ /dev/null @@ -1,4 +0,0 @@ -# adapted from https://stackoverflow.com/questions/55921914/how-to-source-a-script-with-environment-variables-in-a-docker-build-process -#!/bin/sh -. ./env.sh -exec "$@"