From 53386efb8efd5d751b0c11dabae62dc99c7f0835 Mon Sep 17 00:00:00 2001 From: Abel Joseph John Date: Sat, 13 Jun 2020 06:33:09 +0530 Subject: [PATCH 01/40] added gettext dependency for qemu build --- scripts/ubuntu-req.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ubuntu-req.sh b/scripts/ubuntu-req.sh index a46971747a..3bc22c7395 100755 --- a/scripts/ubuntu-req.sh +++ b/scripts/ubuntu-req.sh @@ -14,7 +14,7 @@ sudo apt-get install -y libexpat1-dev libusb-dev libncurses5-dev cmake # deps for poky sudo apt-get install -y python3.6 patch diffstat texi2html texinfo subversion chrpath git wget # deps for qemu -sudo apt-get install -y libgtk-3-dev +sudo apt-get install -y libgtk-3-dev gettext # deps for firemarshal sudo apt-get install -y python3-pip python3.6-dev rsync libguestfs-tools expat ctags # install DTC From 8e19b46a33f14232bd8aa4cebc8475308a4c03d7 Mon Sep 17 00:00:00 2001 From: Amirali Sharifian Date: Wed, 7 Oct 2020 11:38:41 -0700 Subject: [PATCH 02/40] Update Gemmini.rst The gemmini config file's name is been updated from `configs.scala` to `Configs.scala` --- docs/Generators/Gemmini.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Generators/Gemmini.rst b/docs/Generators/Gemmini.rst index 34fc728bea..6f1a9ba3ee 100644 --- a/docs/Generators/Gemmini.rst +++ b/docs/Generators/Gemmini.rst @@ -5,7 +5,7 @@ The Gemmini project is developing a systolic-array based matrix multiplication u Gemmini is implemented as a RoCC accelerator with non-standard RISC-V custom instructions. The Gemmini unit uses the RoCC port of a Rocket or BOOM `tile`, and by default connects to the memory system through the System Bus (i.e., directly to the L2 cache). -To add a Gemmini unit to an SoC, you should add the ``gemmini.DefaultGemminiConfig`` config fragment to the SoC configurations. To change the configuration of the Gemmini accelerator unit, you can write a custom configuration to replace the ``DefaultGemminiConfig``, which you can view under `generators/gemmini/src/main/scala/configs.scala `__ to see the possible configuration parameters. +To add a Gemmini unit to an SoC, you should add the ``gemmini.DefaultGemminiConfig`` config fragment to the SoC configurations. To change the configuration of the Gemmini accelerator unit, you can write a custom configuration to replace the ``DefaultGemminiConfig``, which you can view under `generators/gemmini/src/main/scala/configs.scala `__ to see the possible configuration parameters. The example Chipyard config includes the following example SoC configuration which includes Gemmini: From 4253382df0e9504d8ff94c3198861fb68a9e12a6 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sun, 29 Nov 2020 20:49:39 -0800 Subject: [PATCH 03/40] switched dockerfile base to ubuntu and fixed bugs. created entrypoint.sh script for setting environment variables --- Dockerfile | 296 ++++++++++++++++++++++++++++++++++++++++++++++++ Dockerfile-ella | 296 ++++++++++++++++++++++++++++++++++++++++++++++++ entrypoint.sh | 4 + 3 files changed, 596 insertions(+) create mode 100644 Dockerfile create mode 100644 Dockerfile-ella create mode 100644 entrypoint.sh diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..f3505d194c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,296 @@ +### 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/ucb-bar/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/Dockerfile-ella b/Dockerfile-ella new file mode 100644 index 0000000000..b818539c45 --- /dev/null +++ b/Dockerfile-ella @@ -0,0 +1,296 @@ +### 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/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000000..e044310f8d --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,4 @@ +# 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 "$@" From 8141c717fca2e2928e4d3cd13e223c10d2f54f97 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Tue, 1 Dec 2020 13:37:56 -0800 Subject: [PATCH 04/40] entrypoint.sh sets environment variables correctly. Dockerfile has all necessary steps, still needs to be cleaned up --- Dockerfile | 49 +++++++++++++++---------------------------- scripts/entrypoint.sh | 7 +++++++ 2 files changed, 24 insertions(+), 32 deletions(-) create mode 100644 scripts/entrypoint.sh diff --git a/Dockerfile b/Dockerfile index f3505d194c..7e4d2cb07a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,25 +41,11 @@ RUN apt-get update && \ 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 @@ -228,13 +214,6 @@ 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/ @@ -259,23 +238,34 @@ RUN git clone https://github.com/ucb-bar/chipyard.git && \ RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install keyboard-configuration && \ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - +# Install dependencies from ubuntu-req.sh RUN cd chipyard && \ ./scripts/ubuntu-req.sh 1>/dev/null + +# smoke test with path +RUN mvn -version \ + && ant -version \ + && gradle -version \ + && sbt sbtVersion \ + && verilator --version # Install riscv-tools RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \./scripts/build-toolchains.sh riscv-tools 1>/dev/null +# Install esp-tools +RUN cd chipyard && \ + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/build-toolchains.sh esp-tools 1>/dev/null + #ENTRYPOINT ["sh", "-c", "-l", "cd chipyard && . ./env.sh && #\"$@\"", "-s"] -WORKDIR $HOME/chipyard -COPY ./entrypoint.sh entrypoint.sh -#USER root +#WORKDIR $HOME/chipyard +#COPY entrypoint.sh /home/riscvuser/chipyard/entrypoint.sh +#RUN sudo chown riscvuser entrypoint.sh #RUN chmod +x entrypoint.sh -#USER riscvuser #WORKDIR $HOME -#ENTRYPOINT ["sh", "/home/riscvuser/chipyard/entrypoint.sh"] +ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] #env_file: ./env.sh @@ -285,11 +275,6 @@ COPY ./entrypoint.sh entrypoint.sh #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 diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh new file mode 100644 index 0000000000..c83661911b --- /dev/null +++ b/scripts/entrypoint.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# adapted from https://stackoverflow.com/questions/55921914/how-to-source-a-script-with-environment-variables-in-a-docker-build-process + +. /home/riscvuser/chipyard/env.sh + +exec "$@" From 77459a347d485adc7ea3fe9dd0c559a77b7b9195 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 2 Dec 2020 21:03:03 -0800 Subject: [PATCH 05/40] working version of dockerfile and entrypoint.sh --- Dockerfile | 4 +- build-clone-entrypoint.txt | 1294 +++++++++++ completed.txt | 4486 ++++++++++++++++++++++++++++++++++++ 3 files changed, 5782 insertions(+), 2 deletions(-) create mode 100644 build-clone-entrypoint.txt create mode 100644 completed.txt diff --git a/Dockerfile b/Dockerfile index 7e4d2cb07a..6edd0635ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -262,8 +262,8 @@ RUN cd chipyard && \ #WORKDIR $HOME/chipyard #COPY entrypoint.sh /home/riscvuser/chipyard/entrypoint.sh -#RUN sudo chown riscvuser entrypoint.sh -#RUN chmod +x entrypoint.sh +RUN sudo chown riscvuser /home/riscvuser/chipyard/scripts/entrypoint.sh +RUN chmod +x /home/riscvuser/chipyard/scripts/entrypoint.sh #WORKDIR $HOME ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] diff --git a/build-clone-entrypoint.txt b/build-clone-entrypoint.txt new file mode 100644 index 0000000000..5bee04c705 --- /dev/null +++ b/build-clone-entrypoint.txt @@ -0,0 +1,1294 @@ +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 new file mode 100644 index 0000000000..f026eb0ae4 --- /dev/null +++ b/completed.txt @@ -0,0 +1,4486 @@ +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 From cfca224b6ff072ebeea5109410dc87082acc3e33 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 2 Dec 2020 21:06:56 -0800 Subject: [PATCH 06/40] removed log files for real this time? --- Dockerfile-ella | 296 --- build-clone-entrypoint.txt | 1294 ----------- completed.txt | 4486 ------------------------------------ entrypoint.sh | 4 - 4 files changed, 6080 deletions(-) delete mode 100644 Dockerfile-ella delete mode 100644 build-clone-entrypoint.txt delete mode 100644 completed.txt delete mode 100644 entrypoint.sh diff --git a/Dockerfile-ella b/Dockerfile-ella deleted file mode 100644 index b818539c45..0000000000 --- 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 5bee04c705..0000000000 --- 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 f026eb0ae4..0000000000 --- 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 e044310f8d..0000000000 --- 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 "$@" From fe1f7feba70bc03205cd6b494f38c29dd5d356a9 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sat, 5 Dec 2020 19:04:13 -0800 Subject: [PATCH 07/40] changed permissions of entrypoint.sh --- scripts/entrypoint.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 scripts/entrypoint.sh diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh old mode 100644 new mode 100755 From 7439191a697e828515b87c726fe5f8cc70c8c868 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Tue, 8 Dec 2020 01:52:47 -0800 Subject: [PATCH 08/40] removed some redundancies from dockerfile --- Dockerfile | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6edd0635ec..e4b216558b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -145,7 +145,7 @@ RUN apt-get update RUN apt-get install -y --no-install-recommends openjfx # Add build-essential -RUN apt-get install -y build-essential +#RUN apt-get install -y build-essential # Add RISCV toolchain necessary dependencies RUN apt-get update @@ -156,9 +156,7 @@ RUN apt-get install -y \ babeltrace \ bc \ curl \ - device-tree-compiler \ expat \ - flex \ gawk \ gperf \ g++ \ @@ -175,7 +173,6 @@ RUN apt-get install -y \ texinfo \ zlib1g-dev \ rsync \ - bison \ verilator @@ -251,7 +248,8 @@ RUN mvn -version \ # Install riscv-tools RUN cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \./scripts/build-toolchains.sh riscv-tools 1>/dev/null + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/build-toolchains.sh riscv-tools 1>/dev/null # Install esp-tools RUN cd chipyard && \ @@ -260,11 +258,6 @@ RUN cd chipyard && \ #ENTRYPOINT ["sh", "-c", "-l", "cd chipyard && . ./env.sh && #\"$@\"", "-s"] -#WORKDIR $HOME/chipyard -#COPY entrypoint.sh /home/riscvuser/chipyard/entrypoint.sh -RUN sudo chown riscvuser /home/riscvuser/chipyard/scripts/entrypoint.sh -RUN chmod +x /home/riscvuser/chipyard/scripts/entrypoint.sh -#WORKDIR $HOME ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] #env_file: ./env.sh From 39572823ce8b4a043d83c208db9b5aa883df9e0e Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sun, 20 Dec 2020 23:22:47 -0800 Subject: [PATCH 09/40] Cleaned up dockerfile --- Dockerfile | 216 +---------------------------------------------------- 1 file changed, 3 insertions(+), 213 deletions(-) diff --git a/Dockerfile b/Dockerfile index e4b216558b..3c38101e83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,195 +11,17 @@ 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 - -#ADDED -RUN apt-get install -y apt-utils - -# 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 + apt-utils 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 \ - expat \ - 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 \ - 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" @@ -211,64 +33,32 @@ ENV PATH="$RISCV/bin:$PATH" WORKDIR $HOME USER riscvuser -# remove extra folders -# RUN rm -rf project/ - # Install Chipyard RUN git clone https://github.com/ucb-bar/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 && \ +RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup # Install dependencies from ubuntu-req.sh RUN cd chipyard && \ ./scripts/ubuntu-req.sh 1>/dev/null - -# smoke test with path -RUN mvn -version \ - && ant -version \ - && gradle -version \ - && sbt sbtVersion \ - && verilator --version # Install riscv-tools RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/build-toolchains.sh riscv-tools 1>/dev/null - + # Install esp-tools RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/build-toolchains.sh esp-tools 1>/dev/null - -#ENTRYPOINT ["sh", "-c", "-l", "cd chipyard && . ./env.sh && #\"$@\"", "-s"] ENTRYPOINT ["/home/riscvuser/chipyard/scripts/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 - - # END IMAGE CUSTOMIZATIONS CMD ["/bin/sh"] From ef84927f3a219a1624f58854b6568297cbd6b00a Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Tue, 22 Dec 2020 19:56:35 -0800 Subject: [PATCH 10/40] Removed environment variables from dockerfile --- Dockerfile | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c38101e83..8d95af552b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,43 +9,32 @@ MAINTAINER jacobgadikian@gmail.com # 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 \ curl \ git \ - sudo \ - tar \ - apt-utils + sudo + +# Stopping docker keyboard-config from disrupting ubuntu-req.sh +RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ + sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup 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 -# 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 +WORKDIR /home/riscvuser USER riscvuser # Install Chipyard RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \ - ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - -# Stopping docker keyboard-config from disrupting ubuntu-req.sh -RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + ./scripts/ubuntu-req.sh 1>/dev/null # Install dependencies from ubuntu-req.sh RUN cd chipyard && \ - ./scripts/ubuntu-req.sh 1>/dev/null + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null # Install riscv-tools RUN cd chipyard && \ From db7fafb4acc8fd3fa50f9154f8041908f387055f Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sun, 29 Nov 2020 20:49:39 -0800 Subject: [PATCH 11/40] switched dockerfile base to ubuntu and fixed bugs. created entrypoint.sh script for setting environment variables --- Dockerfile | 1 - Dockerfile-ella | 296 ++++++++++++++++++++++++++++++++++++++++++++++++ entrypoint.sh | 4 + 3 files changed, 300 insertions(+), 1 deletion(-) create mode 100644 Dockerfile-ella create mode 100644 entrypoint.sh diff --git a/Dockerfile b/Dockerfile index 8d95af552b..b1d8e78bcb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,6 @@ MAINTAINER jacobgadikian@gmail.com RUN apt-get update && \ apt-get upgrade -y && \ apt-get install -y \ - curl \ git \ sudo diff --git a/Dockerfile-ella b/Dockerfile-ella new file mode 100644 index 0000000000..b818539c45 --- /dev/null +++ b/Dockerfile-ella @@ -0,0 +1,296 @@ +### 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/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000000..e044310f8d --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,4 @@ +# 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 "$@" From f5ae2e0bfd5851f0630742bcb0188e224bdfe22f Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Tue, 1 Dec 2020 13:37:56 -0800 Subject: [PATCH 12/40] entrypoint.sh sets environment variables correctly. Dockerfile has all necessary steps, still needs to be cleaned up --- Dockerfile | 1 + entrypoint.sh | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 entrypoint.sh diff --git a/Dockerfile b/Dockerfile index b1d8e78bcb..8d95af552b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ MAINTAINER jacobgadikian@gmail.com RUN apt-get update && \ apt-get upgrade -y && \ apt-get install -y \ + curl \ git \ sudo diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100644 index e044310f8d..0000000000 --- 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 "$@" From f25aa8de27d4f38b4417c020ea7fe6ebb435c975 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 2 Dec 2020 21:03:03 -0800 Subject: [PATCH 13/40] working version of dockerfile and entrypoint.sh --- Dockerfile-ella | 296 ------------------------------------------------ 1 file changed, 296 deletions(-) delete mode 100644 Dockerfile-ella diff --git a/Dockerfile-ella b/Dockerfile-ella deleted file mode 100644 index b818539c45..0000000000 --- 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"] From 3ba19bb1a0cbdecf67ee6f70fdfd715d3314ea08 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sat, 5 Dec 2020 19:04:13 -0800 Subject: [PATCH 14/40] changed permissions of entrypoint.sh From 8300d9cfc4dd087499d1786ec2d480f2c5599deb Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 11 Jan 2021 17:36:50 -0800 Subject: [PATCH 15/40] removed log files --- aptget-sudo.txt | 231 + no-apget.txt | 70 + no-apt-utils.txt | 3403 ++ verilator-no-env.txt | 68235 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 71939 insertions(+) create mode 100644 aptget-sudo.txt create mode 100644 no-apget.txt create mode 100644 no-apt-utils.txt create mode 100644 verilator-no-env.txt diff --git a/aptget-sudo.txt b/aptget-sudo.txt new file mode 100644 index 0000000000..5dc12d2945 --- /dev/null +++ b/aptget-sudo.txt @@ -0,0 +1,231 @@ +Script started on 2020-12-22 18:21:21-0800 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker buidld . +double free or corruption (out) +SIGABRT: abort +PC=0x7f17c6ce2fb7 m=0 sigcode=18446744073709551610 +signal arrived during cgo execution + +goroutine 1 [syscall, locked to thread]: +runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) + /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 +github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1fcd990) + github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1fcd990) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 +github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) + :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 +github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 +github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffd158c1b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 +github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 +main.main() + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 +runtime.main() + /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 + +goroutine 17 [syscall, locked to thread]: +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 + +rax 0x0 +rbx 0x7ffd158c0cc0 +rcx 0x7f17c6ce2fb7 +rdx 0x0 +rdi 0x2 +rsi 0x7ffd158c0a50 +rbp 0x7ffd158c0dc0 +rsp 0x7ffd158c0a50 +r8 0x0 +r9 0x7ffd158c0a50 +r10 0x8 +r11 0x246 +r12 0x7ffd158c0cc0 +r13 0x1000 +r14 0x0 +r15 0x30 +rip 0x7f17c6ce2fb7 +rflags 0x246 +cs 0x33 +fs 0x0 +gs 0x0 +Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.515MB +Step 1/12 : FROM ubuntu:18.04 + ---> 2c047404e52d +Step 2/12 : MAINTAINER jacobgadikian@gmail.com + ---> Using cache + ---> eada3313413a +Step 3/12 : RUN apt-get update && apt-get upgrade -y && apt-get install -y sudo + ---> Running in c27755861e07 +Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] +Get:3 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [237 kB] +Get:4 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [15.3 kB] +Get:5 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1816 kB] +Get:6 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] +Get:7 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1372 kB] +Get:8 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] +Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] +Get:10 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] +Get:11 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB] +Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB] +Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [53.8 kB] +Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2136 kB] +Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2244 kB] +Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [266 kB] +Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB] +Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB] +Fetched 21.5 MB in 4s (6089 kB/s) +Reading package lists... +Reading package lists... +Building dependency tree... +Reading state information... +Calculating upgrade... +The following packages will be upgraded: + apt libapt-pkg5.0 libc-bin libc6 +4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Need to get 5482 kB of archives. +After this operation, 0 B of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6 amd64 2.27-3ubuntu1.4 [2832 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-bin amd64 2.27-3ubuntu1.4 [643 kB] +Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-pkg5.0 amd64 1.6.12ubuntu0.2 [806 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 apt amd64 1.6.12ubuntu0.2 [1201 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 5482 kB in 1s (3663 kB/s) +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libc6_2.27-3ubuntu1.4_amd64.deb ... +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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +debconf: falling back to frontend: Teletype +Unpacking libc6:amd64 (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... +Setting up libc6:amd64 (2.27-3ubuntu1.4) ... +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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +debconf: falling back to frontend: Teletype +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libc-bin_2.27-3ubuntu1.4_amd64.deb ... +Unpacking libc-bin (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... +Setting up libc-bin (2.27-3ubuntu1.4) ... +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libapt-pkg5.0_1.6.12ubuntu0.2_amd64.deb ... +Unpacking libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... +Setting up libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) ... +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../apt_1.6.12ubuntu0.2_amd64.deb ... +Unpacking apt (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... +Setting up apt (1.6.12ubuntu0.2) ... +Processing triggers for libc-bin (2.27-3ubuntu1.4) ... +Reading package lists... +Building dependency tree... +Reading state information... +The following NEW packages will be installed: + sudo +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Need to get 428 kB of archives. +After this operation, 1765 kB of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.3 [428 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 428 kB in 1s (441 kB/s) +Selecting previously unselected package sudo. +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../sudo_1.8.21p2-3ubuntu1.3_amd64.deb ... +Unpacking sudo (1.8.21p2-3ubuntu1.3) ... +Setting up sudo (1.8.21p2-3ubuntu1.3) ... +Removing intermediate container c27755861e07 + ---> e698584146a9 +Step 4/12 : 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 + ---> Running in 1e53f8d31d4e +Removing intermediate container 1e53f8d31d4e + ---> 15fd862c9209 +Step 5/12 : WORKDIR /home/riscvuser + ---> Running in b8f02acf19fc +Removing intermediate container b8f02acf19fc + ---> 02954f57aa07 +Step 6/12 : USER riscvuser + ---> Running in 798c5fb253c3 +Removing intermediate container 798c5fb253c3 + ---> 38b2cbaf0b9d +Step 7/12 : RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + ---> Running in c7d1326a30e1 +Reading package lists... +Building dependency tree... +Reading state information... +The following additional packages will be installed: + liblocale-gettext-perl +The following NEW packages will be installed: + keyboard-configuration liblocale-gettext-perl +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Need to get 386 kB of archives. +After this operation, 2675 kB 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 keyboard-configuration all 1.178ubuntu2.9 [369 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 386 kB in 1s (366 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 ... 4100 files and directories currently installed.) +Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... +Unpacking liblocale-gettext-perl (1.07-3build2) ... +Selecting previously unselected package keyboard-configuration. +Preparing to unpack .../keyboard-configuration_1.178ubuntu2.9_all.deb ... +Unpacking keyboard-configuration (1.178ubuntu2.9) ... +Setting up liblocale-gettext-perl (1.07-3build2) ... +Setting up keyboard-configuration (1.178ubuntu2.9) ... +Your console font configuration will be updated the next time your system +boots. If you want to update it now, run 'setupcon' from a virtual console. +Reading package lists... +Building dependency tree... +Reading state information... +The following additional packages will be installed: + console-setup-linux kbd xkb-data +Suggested packages: + locales +The following NEW packages will be installed: + console-setup console-setup-linux kbd xkb-data +0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. +Need to get 1627 kB of archives. +After this operation, 6256 kB of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 kbd amd64 2.0.4-2ubuntu1 [215 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup-linux all 1.178ubuntu2.9 [982 kB] +Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup all 1.178ubuntu2.9 [105 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 1627 kB in 1s (1166 kB/s) +Selecting previously unselected package kbd. +(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 ... 4139 files and directories currently installed.) +Preparing to unpack .../kbd_2.0.4-2ubuntu1_amd64.deb ... +Unpacking kbd (2.0.4-2ubuntu1) ... +Selecting previously unselected package console-setup-linux. +Preparing to unpack .../console-setup-linux_1.178ubuntu2.9_all.deb ... +Unpacking console-setup-linux (1.178ubuntu2.9) ... +Selecting previously unselected package xkb-data. +Preparing to unpack .../xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ... +Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ... +Selecting previously unselected package console-setup. +Preparing to unpack .../console-setup_1.178ubuntu2.9_all.deb ... +Unpacking console-setup (1.178ubuntu2.9) ... +Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ... +Setting up console-setup-linux (1.178ubuntu2.9) ... +update-alternatives: using /etc/console-setup/vtrgb to provide /etc/vtrgb (vtrgb) in auto mode +Setting up console-setup (1.178ubuntu2.9) ... +Setting up kbd (2.0.4-2ubuntu1) ... +Removing intermediate container c7d1326a30e1 + ---> e7015c0130f5 +Step 8/12 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null + ---> Running in f5878ae67d8a +/bin/sh: 1: git: not found +The command '/bin/sh -c git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null' returned a non-zero code: 127 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build .sciript no-tapaptaptutils-utilsexit +exit + +Script done on 2020-12-22 18:25:28-0800 diff --git a/no-apget.txt b/no-apget.txt new file mode 100644 index 0000000000..78d690a15c --- /dev/null +++ b/no-apget.txt @@ -0,0 +1,70 @@ +Script started on 2020-12-22 18:19:10-0800 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build . +double free or corruption (out) +SIGABRT: abort +PC=0x7fdf84420fb7 m=0 sigcode=18446744073709551610 +signal arrived during cgo execution + +goroutine 1 [syscall, locked to thread]: +runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) + /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 +github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1a91990) + github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1a91990) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 +github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) + :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 +github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 +github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffdff7d8b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 +github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 +main.main() + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 +runtime.main() + /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 + +goroutine 17 [syscall, locked to thread]: +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 + +rax 0x0 +rbx 0x7ffdff7d79c0 +rcx 0x7fdf84420fb7 +rdx 0x0 +rdi 0x2 +rsi 0x7ffdff7d7750 +rbp 0x7ffdff7d7ac0 +rsp 0x7ffdff7d7750 +r8 0x0 +r9 0x7ffdff7d7750 +r10 0x8 +r11 0x246 +r12 0x7ffdff7d79c0 +r13 0x1000 +r14 0x0 +r15 0x30 +rip 0x7fdf84420fb7 +rflags 0x246 +cs 0x33 +fs 0x0 +gs 0x0 +Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.51MB +Step 1/11 : FROM ubuntu:18.04 + ---> 2c047404e52d +Step 2/11 : MAINTAINER jacobgadikian@gmail.com + ---> Using cache + ---> eada3313413a +Step 3/11 : 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 + ---> Running in e95c9de803d8 +/bin/sh: 1: cannot create /etc/sudoers.d/50-riscvuser: Directory nonexistent +The command '/bin/sh -c 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' returned a non-zero code: 2 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ exit +exit + +Script done on 2020-12-22 18:20:07-0800 diff --git a/no-apt-utils.txt b/no-apt-utils.txt new file mode 100644 index 0000000000..0a52582c5b --- /dev/null +++ b/no-apt-utils.txt @@ -0,0 +1,3403 @@ +Script started on 2020-12-22 18:25:39-0800 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build . +double free or corruption (out) +SIGABRT: abort +PC=0x7f9d7fa1bfb7 m=0 sigcode=18446744073709551610 +signal arrived during cgo execution + +goroutine 1 [syscall, locked to thread]: +runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) + /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 +github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1a0f990) + github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1a0f990) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 +github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 +github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) + :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 +github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 +github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffe380a4b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 +github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 +main.main() + /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 +runtime.main() + /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 + +goroutine 17 [syscall, locked to thread]: +runtime.goexit() + /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 + +rax 0x0 +rbx 0x7ffe380a2dd0 +rcx 0x7f9d7fa1bfb7 +rdx 0x0 +rdi 0x2 +rsi 0x7ffe380a2b60 +rbp 0x7ffe380a2ed0 +rsp 0x7ffe380a2b60 +r8 0x0 +r9 0x7ffe380a2b60 +r10 0x8 +r11 0x246 +r12 0x7ffe380a2dd0 +r13 0x1000 +r14 0x0 +r15 0x30 +rip 0x7f9d7fa1bfb7 +rflags 0x246 +cs 0x33 +fs 0x0 +gs 0x0 +Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.535MB +Step 1/12 : FROM ubuntu:18.04 + ---> 2c047404e52d +Step 2/12 : MAINTAINER jacobgadikian@gmail.com + ---> Using cache + ---> eada3313413a +Step 3/12 : RUN apt-get update && apt-get upgrade -y && apt-get install -y curl git sudo + ---> Running in 1c41b0062191 +Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] +Get:3 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1816 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] +Get:5 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [237 kB] +Get:6 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1372 kB] +Get:7 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [15.3 kB] +Get:8 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] +Get:9 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB] +Get:10 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] +Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] +Get:12 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB] +Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2136 kB] +Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2244 kB] +Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [53.8 kB] +Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [266 kB] +Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB] +Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB] +Fetched 21.5 MB in 3s (6280 kB/s) +Reading package lists... +Reading package lists... +Building dependency tree... +Reading state information... +Calculating upgrade... +The following packages will be upgraded: + apt libapt-pkg5.0 libc-bin libc6 +4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Need to get 5482 kB of archives. +After this operation, 0 B of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6 amd64 2.27-3ubuntu1.4 [2832 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-bin amd64 2.27-3ubuntu1.4 [643 kB] +Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-pkg5.0 amd64 1.6.12ubuntu0.2 [806 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 apt amd64 1.6.12ubuntu0.2 [1201 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 5482 kB in 2s (3510 kB/s) +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libc6_2.27-3ubuntu1.4_amd64.deb ... +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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +debconf: falling back to frontend: Teletype +Unpacking libc6:amd64 (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... +Setting up libc6:amd64 (2.27-3ubuntu1.4) ... +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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) +debconf: falling back to frontend: Teletype +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libc-bin_2.27-3ubuntu1.4_amd64.deb ... +Unpacking libc-bin (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... +Setting up libc-bin (2.27-3ubuntu1.4) ... +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../libapt-pkg5.0_1.6.12ubuntu0.2_amd64.deb ... +Unpacking libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... +Setting up libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) ... +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../apt_1.6.12ubuntu0.2_amd64.deb ... +Unpacking apt (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... +Setting up apt (1.6.12ubuntu0.2) ... +Processing triggers for libc-bin (2.27-3ubuntu1.4) ... +Reading package lists... +Building dependency tree... +Reading state information... +The following additional packages will be installed: + ca-certificates git-man krb5-locales less libasn1-8-heimdal libbsd0 + libcurl3-gnutls libcurl4 libedit2 liberror-perl libexpat1 libgdbm-compat4 + libgdbm5 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal + libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libk5crypto3 + libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 + libldap-common libnghttp2-14 libperl5.26 libpsl5 libroken18-heimdal librtmp1 + libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 + libssl1.1 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 + libxext6 libxmuu1 multiarch-support netbase openssh-client openssl patch + perl perl-modules-5.26 publicsuffix xauth +Suggested packages: + gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email + git-gui gitk gitweb git-cvs git-mediawiki git-svn gdbm-l10n krb5-doc + krb5-user libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal + libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql keychain + libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc + libterm-readline-gnu-perl | libterm-readline-perl-perl make +The following NEW packages will be installed: + ca-certificates curl git git-man krb5-locales less libasn1-8-heimdal libbsd0 + libcurl3-gnutls libcurl4 libedit2 liberror-perl libexpat1 libgdbm-compat4 + libgdbm5 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal + libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libk5crypto3 + libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 + libldap-common libnghttp2-14 libperl5.26 libpsl5 libroken18-heimdal librtmp1 + libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 + libssl1.1 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 + libxext6 libxmuu1 multiarch-support netbase openssh-client openssl patch + perl perl-modules-5.26 publicsuffix sudo xauth +0 upgraded, 57 newly installed, 0 to remove and 0 not upgraded. +Need to get 19.7 MB of archives. +After this operation, 105 MB of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 multiarch-support amd64 2.27-3ubuntu1.4 [6944 B] +Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxau6 amd64 1:1.0.8-1ubuntu1 [7556 B] +Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] +Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] +Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.3 [114 kB] +Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.3 [571 kB] +Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] +Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.5 [2762 kB] +Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] +Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6084 B] +Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.5 [3534 kB] +Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.5 [201 kB] +Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.1 amd64 1.1.1-1ubuntu2.1~18.04.7 [1301 kB] +Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.7 [614 kB] +Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20201027ubuntu0.18.04.1 [153 kB] +Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 less amd64 487-0.1 [112 kB] +Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] +Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsqlite3-0 amd64 3.22.0-1ubuntu0.4 [499 kB] +Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] +Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.3 [428 kB] +Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.2 [13.4 kB] +Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] +Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.2 [30.8 kB] +Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.2 [85.5 kB] +Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8720 B] +Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.2 [279 kB] +Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.2 [122 kB] +Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] +Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.0.0 amd64 1.0.2n-1ubuntu5.5 [1088 kB] +Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9674 B] +Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssh-client amd64 1:7.6p1-4ubuntu0.3 [614 kB] +Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] +Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 xauth amd64 1:1.0.10-1 [24.6 kB] +Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libroken18-heimdal amd64 7.5.0+dfsg-1 [41.3 kB] +Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libasn1-8-heimdal amd64 7.5.0+dfsg-1 [175 kB] +Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimbase1-heimdal amd64 7.5.0+dfsg-1 [29.3 kB] +Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhcrypto4-heimdal amd64 7.5.0+dfsg-1 [85.9 kB] +Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwind0-heimdal amd64 7.5.0+dfsg-1 [47.8 kB] +Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhx509-5-heimdal amd64 7.5.0+dfsg-1 [107 kB] +Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkrb5-26-heimdal amd64 7.5.0+dfsg-1 [206 kB] +Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimntlm0-heimdal amd64 7.5.0+dfsg-1 [14.8 kB] +Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgssapi3-heimdal amd64 7.5.0+dfsg-1 [96.5 kB] +Get:44 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [14.8 kB] +Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [49.2 kB] +Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-common all 2.4.45+dfsg-1ubuntu1.8 [17.0 kB] +Get:47 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-2.4-2 amd64 2.4.45+dfsg-1ubuntu1.8 [155 kB] +Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] +Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] +Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.12 [214 kB] +Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.12 [159 kB] +Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.12 [212 kB] +Get:53 http://archive.ubuntu.com/ubuntu bionic/main amd64 liberror-perl all 0.17025-1 [22.8 kB] +Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git-man all 1:2.17.1-1ubuntu0.7 [804 kB] +Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git amd64 1:2.17.1-1ubuntu0.7 [3915 kB] +Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [48.8 kB] +Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 19.7 MB in 3s (6627 kB/s) +Selecting previously unselected package multiarch-support. +(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 ... 4045 files and directories currently installed.) +Preparing to unpack .../0-multiarch-support_2.27-3ubuntu1.4_amd64.deb ... +Unpacking multiarch-support (2.27-3ubuntu1.4) ... +Selecting previously unselected package libxau6:amd64. +Preparing to unpack .../1-libxau6_1%3a1.0.8-1ubuntu1_amd64.deb ... +Unpacking libxau6:amd64 (1:1.0.8-1ubuntu1) ... +Selecting previously unselected package libbsd0:amd64. +Preparing to unpack .../2-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... +Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... +Selecting previously unselected package libxdmcp6:amd64. +Preparing to unpack .../3-libxdmcp6_1%3a1.1.2-3_amd64.deb ... +Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... +Selecting previously unselected package libxcb1:amd64. +Preparing to unpack .../4-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... +Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... +Selecting previously unselected package libx11-data. +Preparing to unpack .../5-libx11-data_2%3a1.6.4-3ubuntu0.3_all.deb ... +Unpacking libx11-data (2:1.6.4-3ubuntu0.3) ... +Selecting previously unselected package libx11-6:amd64. +Preparing to unpack .../6-libx11-6_2%3a1.6.4-3ubuntu0.3_amd64.deb ... +Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... +Setting up multiarch-support (2.27-3ubuntu1.4) ... +Selecting previously unselected package libxext6: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 ... 4335 files and directories currently installed.) +Preparing to unpack .../00-libxext6_2%3a1.3.3-1_amd64.deb ... +Unpacking libxext6:amd64 (2:1.3.3-1) ... +Selecting previously unselected package perl-modules-5.26. +Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.5_all.deb ... +Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.5) ... +Selecting previously unselected package libgdbm5:amd64. +Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ... +Unpacking libgdbm5:amd64 (1.14.1-6) ... +Selecting previously unselected package libgdbm-compat4:amd64. +Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ... +Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... +Selecting previously unselected package libperl5.26:amd64. +Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.5_amd64.deb ... +Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... +Selecting previously unselected package perl. +Preparing to unpack .../05-perl_5.26.1-6ubuntu0.5_amd64.deb ... +Unpacking perl (5.26.1-6ubuntu0.5) ... +Selecting previously unselected package libssl1.1:amd64. +Preparing to unpack .../06-libssl1.1_1.1.1-1ubuntu2.1~18.04.7_amd64.deb ... +Unpacking libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.7) ... +Selecting previously unselected package openssl. +Preparing to unpack .../07-openssl_1.1.1-1ubuntu2.1~18.04.7_amd64.deb ... +Unpacking openssl (1.1.1-1ubuntu2.1~18.04.7) ... +Selecting previously unselected package ca-certificates. +Preparing to unpack .../08-ca-certificates_20201027ubuntu0.18.04.1_all.deb ... +Unpacking ca-certificates (20201027ubuntu0.18.04.1) ... +Selecting previously unselected package less. +Preparing to unpack .../09-less_487-0.1_amd64.deb ... +Unpacking less (487-0.1) ... +Selecting previously unselected package libexpat1:amd64. +Preparing to unpack .../10-libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... +Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... +Selecting previously unselected package libsqlite3-0:amd64. +Preparing to unpack .../11-libsqlite3-0_3.22.0-1ubuntu0.4_amd64.deb ... +Unpacking libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... +Selecting previously unselected package netbase. +Preparing to unpack .../12-netbase_5.4_all.deb ... +Unpacking netbase (5.4) ... +Selecting previously unselected package sudo. +Preparing to unpack .../13-sudo_1.8.21p2-3ubuntu1.3_amd64.deb ... +Unpacking sudo (1.8.21p2-3ubuntu1.3) ... +Selecting previously unselected package krb5-locales. +Preparing to unpack .../14-krb5-locales_1.16-2ubuntu0.2_all.deb ... +Unpacking krb5-locales (1.16-2ubuntu0.2) ... +Selecting previously unselected package libedit2:amd64. +Preparing to unpack .../15-libedit2_3.1-20170329-1_amd64.deb ... +Unpacking libedit2:amd64 (3.1-20170329-1) ... +Selecting previously unselected package libkrb5support0:amd64. +Preparing to unpack .../16-libkrb5support0_1.16-2ubuntu0.2_amd64.deb ... +Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.2) ... +Selecting previously unselected package libk5crypto3:amd64. +Preparing to unpack .../17-libk5crypto3_1.16-2ubuntu0.2_amd64.deb ... +Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.2) ... +Selecting previously unselected package libkeyutils1:amd64. +Preparing to unpack .../18-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... +Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... +Selecting previously unselected package libkrb5-3:amd64. +Preparing to unpack .../19-libkrb5-3_1.16-2ubuntu0.2_amd64.deb ... +Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.2) ... +Selecting previously unselected package libgssapi-krb5-2:amd64. +Preparing to unpack .../20-libgssapi-krb5-2_1.16-2ubuntu0.2_amd64.deb ... +Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... +Selecting previously unselected package libpsl5:amd64. +Preparing to unpack .../21-libpsl5_0.19.1-5build1_amd64.deb ... +Unpacking libpsl5:amd64 (0.19.1-5build1) ... +Selecting previously unselected package libssl1.0.0:amd64. +Preparing to unpack .../22-libssl1.0.0_1.0.2n-1ubuntu5.5_amd64.deb ... +Unpacking libssl1.0.0:amd64 (1.0.2n-1ubuntu5.5) ... +Selecting previously unselected package libxmuu1:amd64. +Preparing to unpack .../23-libxmuu1_2%3a1.1.2-2_amd64.deb ... +Unpacking libxmuu1:amd64 (2:1.1.2-2) ... +Selecting previously unselected package openssh-client. +Preparing to unpack .../24-openssh-client_1%3a7.6p1-4ubuntu0.3_amd64.deb ... +Unpacking openssh-client (1:7.6p1-4ubuntu0.3) ... +Selecting previously unselected package publicsuffix. +Preparing to unpack .../25-publicsuffix_20180223.1310-1_all.deb ... +Unpacking publicsuffix (20180223.1310-1) ... +Selecting previously unselected package xauth. +Preparing to unpack .../26-xauth_1%3a1.0.10-1_amd64.deb ... +Unpacking xauth (1:1.0.10-1) ... +Selecting previously unselected package libroken18-heimdal:amd64. +Preparing to unpack .../27-libroken18-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libasn1-8-heimdal:amd64. +Preparing to unpack .../28-libasn1-8-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libheimbase1-heimdal:amd64. +Preparing to unpack .../29-libheimbase1-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libhcrypto4-heimdal:amd64. +Preparing to unpack .../30-libhcrypto4-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libwind0-heimdal:amd64. +Preparing to unpack .../31-libwind0-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libhx509-5-heimdal:amd64. +Preparing to unpack .../32-libhx509-5-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libkrb5-26-heimdal:amd64. +Preparing to unpack .../33-libkrb5-26-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libheimntlm0-heimdal:amd64. +Preparing to unpack .../34-libheimntlm0-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libgssapi3-heimdal:amd64. +Preparing to unpack .../35-libgssapi3-heimdal_7.5.0+dfsg-1_amd64.deb ... +Unpacking libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... +Selecting previously unselected package libsasl2-modules-db:amd64. +Preparing to unpack .../36-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... +Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Selecting previously unselected package libsasl2-2:amd64. +Preparing to unpack .../37-libsasl2-2_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... +Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Selecting previously unselected package libldap-common. +Preparing to unpack .../38-libldap-common_2.4.45+dfsg-1ubuntu1.8_all.deb ... +Unpacking libldap-common (2.4.45+dfsg-1ubuntu1.8) ... +Selecting previously unselected package libldap-2.4-2:amd64. +Preparing to unpack .../39-libldap-2.4-2_2.4.45+dfsg-1ubuntu1.8_amd64.deb ... +Unpacking libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.8) ... +Selecting previously unselected package libnghttp2-14:amd64. +Preparing to unpack .../40-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... +Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... +Selecting previously unselected package librtmp1:amd64. +Preparing to unpack .../41-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... +Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... +Selecting previously unselected package libcurl4:amd64. +Preparing to unpack .../42-libcurl4_7.58.0-2ubuntu3.12_amd64.deb ... +Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.12) ... +Selecting previously unselected package curl. +Preparing to unpack .../43-curl_7.58.0-2ubuntu3.12_amd64.deb ... +Unpacking curl (7.58.0-2ubuntu3.12) ... +Selecting previously unselected package libcurl3-gnutls:amd64. +Preparing to unpack .../44-libcurl3-gnutls_7.58.0-2ubuntu3.12_amd64.deb ... +Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... +Selecting previously unselected package liberror-perl. +Preparing to unpack .../45-liberror-perl_0.17025-1_all.deb ... +Unpacking liberror-perl (0.17025-1) ... +Selecting previously unselected package git-man. +Preparing to unpack .../46-git-man_1%3a2.17.1-1ubuntu0.7_all.deb ... +Unpacking git-man (1:2.17.1-1ubuntu0.7) ... +Selecting previously unselected package git. +Preparing to unpack .../47-git_1%3a2.17.1-1ubuntu0.7_amd64.deb ... +Unpacking git (1:2.17.1-1ubuntu0.7) ... +Selecting previously unselected package libsasl2-modules:amd64. +Preparing to unpack .../48-libsasl2-modules_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... +Unpacking libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Selecting previously unselected package patch. +Preparing to unpack .../49-patch_2.7.6-2ubuntu1.1_amd64.deb ... +Unpacking patch (2.7.6-2ubuntu1.1) ... +Setting up libedit2:amd64 (3.1-20170329-1) ... +Setting up git-man (1:2.17.1-1ubuntu0.7) ... +Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... +Setting up less (487-0.1) ... +debconf: unable to initialize frontend: Dialog +debconf: (TERM is not set, so the dialog frontend is not usable.) +debconf: falling back to frontend: Readline +Setting up libssl1.0.0:amd64 (1.0.2n-1ubuntu5.5) ... +debconf: unable to initialize frontend: Dialog +debconf: (TERM is not set, so the dialog frontend is not usable.) +debconf: falling back to frontend: Readline +Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... +Setting up sudo (1.8.21p2-3ubuntu1.3) ... +Setting up libldap-common (2.4.45+dfsg-1ubuntu1.8) ... +Setting up libpsl5:amd64 (0.19.1-5build1) ... +Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Setting up libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... +Setting up perl-modules-5.26 (5.26.1-6ubuntu0.5) ... +Setting up libgdbm5:amd64 (1.14.1-6) ... +Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... +Setting up libkrb5support0:amd64 (1.16-2ubuntu0.2) ... +Setting up patch (2.7.6-2ubuntu1.1) ... +Setting up krb5-locales (1.16-2ubuntu0.2) ... +Setting up publicsuffix (20180223.1310-1) ... +Setting up libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.7) ... +debconf: unable to initialize frontend: Dialog +debconf: (TERM is not set, so the dialog frontend is not usable.) +debconf: falling back to frontend: Readline +Setting up libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up openssl (1.1.1-1ubuntu2.1~18.04.7) ... +Setting up libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... +Setting up libxdmcp6:amd64 (1:1.1.2-3) ... +Setting up libgdbm-compat4:amd64 (1.14.1-6) ... +Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... +Setting up libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... +Setting up ca-certificates (20201027ubuntu0.18.04.1) ... +debconf: unable to initialize frontend: Dialog +debconf: (TERM is not set, so the dialog frontend is not usable.) +debconf: falling back to frontend: Readline +Updating certificates in /etc/ssl/certs... +138 added, 0 removed; done. +Setting up libx11-data (2:1.6.4-3ubuntu0.3) ... +Setting up libxau6:amd64 (1:1.0.8-1ubuntu1) ... +Setting up netbase (5.4) ... +Setting up libk5crypto3:amd64 (1.16-2ubuntu0.2) ... +Setting up libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... +Setting up libkrb5-3:amd64 (1.16-2ubuntu0.2) ... +Setting up libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... +Setting up libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... +Setting up libxmuu1:amd64 (2:1.1.2-2) ... +Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... +Setting up perl (5.26.1-6ubuntu0.5) ... +Setting up libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... +Setting up openssh-client (1:7.6p1-4ubuntu0.3) ... +Setting up libxext6:amd64 (2:1.3.3-1) ... +Setting up liberror-perl (0.17025-1) ... +Setting up xauth (1:1.0.10-1) ... +Setting up libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.8) ... +Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... +Setting up libcurl4:amd64 (7.58.0-2ubuntu3.12) ... +Setting up git (1:2.17.1-1ubuntu0.7) ... +Setting up curl (7.58.0-2ubuntu3.12) ... +Processing triggers for libc-bin (2.27-3ubuntu1.4) ... +Processing triggers for ca-certificates (20201027ubuntu0.18.04.1) ... +Updating certificates in /etc/ssl/certs... +0 added, 0 removed; done. +Running hooks in /etc/ca-certificates/update.d... +done. +Removing intermediate container 1c41b0062191 + ---> a1d44680a9d4 +Step 4/12 : 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 + ---> Running in f1e61d1c92a5 +Removing intermediate container f1e61d1c92a5 + ---> 7ae1a44a0f88 +Step 5/12 : WORKDIR /home/riscvuser + ---> Running in 86c878f6c78a +Removing intermediate container 86c878f6c78a + ---> 7360866710f4 +Step 6/12 : USER riscvuser + ---> Running in 3882ccbffe7b +Removing intermediate container 3882ccbffe7b + ---> c1f23cf819bf +Step 7/12 : RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + ---> Running in d4bcb1959542 +Reading package lists... +Building dependency tree... +Reading state information... +The following additional packages will be installed: + liblocale-gettext-perl +The following NEW packages will be installed: + keyboard-configuration liblocale-gettext-perl +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Need to get 386 kB of archives. +After this operation, 2675 kB 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 keyboard-configuration all 1.178ubuntu2.9 [369 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 386 kB in 1s (274 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 ... 7875 files and directories currently installed.) +Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... +Unpacking liblocale-gettext-perl (1.07-3build2) ... +Selecting previously unselected package keyboard-configuration. +Preparing to unpack .../keyboard-configuration_1.178ubuntu2.9_all.deb ... +Unpacking keyboard-configuration (1.178ubuntu2.9) ... +Setting up liblocale-gettext-perl (1.07-3build2) ... +Setting up keyboard-configuration (1.178ubuntu2.9) ... +Your console font configuration will be updated the next time your system +boots. If you want to update it now, run 'setupcon' from a virtual console. +Reading package lists... +Building dependency tree... +Reading state information... +The following additional packages will be installed: + console-setup-linux kbd xkb-data +Suggested packages: + locales +The following NEW packages will be installed: + console-setup console-setup-linux kbd xkb-data +0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. +Need to get 1627 kB of archives. +After this operation, 6256 kB of additional disk space will be used. +Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 kbd amd64 2.0.4-2ubuntu1 [215 kB] +Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup-linux all 1.178ubuntu2.9 [982 kB] +Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB] +Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup all 1.178ubuntu2.9 [105 kB] +debconf: delaying package configuration, since apt-utils is not installed +Fetched 1627 kB in 1s (1162 kB/s) +Selecting previously unselected package kbd. +(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 ... 7914 files and directories currently installed.) +Preparing to unpack .../kbd_2.0.4-2ubuntu1_amd64.deb ... +Unpacking kbd (2.0.4-2ubuntu1) ... +Selecting previously unselected package console-setup-linux. +Preparing to unpack .../console-setup-linux_1.178ubuntu2.9_all.deb ... +Unpacking console-setup-linux (1.178ubuntu2.9) ... +Selecting previously unselected package xkb-data. +Preparing to unpack .../xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ... +Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ... +Selecting previously unselected package console-setup. +Preparing to unpack .../console-setup_1.178ubuntu2.9_all.deb ... +Unpacking console-setup (1.178ubuntu2.9) ... +Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ... +Setting up console-setup-linux (1.178ubuntu2.9) ... +update-alternatives: using /etc/console-setup/vtrgb to provide /etc/vtrgb (vtrgb) in auto mode +Setting up console-setup (1.178ubuntu2.9) ... +Setting up kbd (2.0.4-2ubuntu1) ... +Removing intermediate container d4bcb1959542 + ---> c394950174e5 +Step 8/12 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null + ---> Running in e9b3287018db +Cloning into 'chipyard'... ++ sudo apt-get install -y build-essential bison flex +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y libgmp-dev libmpfr-dev libmpc-dev zlib1g-dev vim git default-jdk default-jre +debconf: delaying package configuration, since apt-utils is not installed ++ 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 +Warning: apt-key output should not be parsed (stdout is not a terminal) ++ sudo apt-get update ++ sudo apt-get install -y sbt +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y texinfo gengetopt +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y libexpat1-dev libusb-dev libncurses5-dev cmake +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y python3.6 patch diffstat texi2html texinfo subversion chrpath git wget +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y libgtk-3-dev gettext +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y python3-pip python3.6-dev rsync libguestfs-tools expat ctags +debconf: delaying package configuration, since apt-utils is not installed ++ sudo apt-get install -y device-tree-compiler +debconf: delaying package configuration, since apt-utils is not installed ++ git clone http://git.veripool.org/git/verilator +Cloning into 'verilator'... ++ cd verilator ++ git checkout v4.034 +Note: checking out 'v4.034'. + +You are in 'detached HEAD' state. You can look around, make experimental +changes and commit them, and you can discard any commits you make in this +state without impacting any branches by performing another checkout. + +If you want to create a new branch to retain commits you create, you may +do so (now or later) by using -b with the checkout command again. Example: + + git checkout -b + +HEAD is now at 9dc65df9 Version bump ++ autoconf ++ ./configure ++ make -j16 +make[2]: warning: -jN forced in submake: disabling jobserver mode. +make[2]: warning: -jN forced in submake: disabling jobserver mode. ++ sudo make install +mkdir /usr/local/share/verilator +mkdir /usr/local/share/verilator/bin +mkdir /usr/local/share/man/man1 +mkdir /usr/local/share/verilator/include +mkdir /usr/local/share/verilator/include/gtkwave +mkdir /usr/local/share/verilator/include/vltstd +mkdir /usr/local/share/verilator/examples +mkdir /usr/local/share/verilator/examples/make_hello_c +mkdir /usr/local/share/verilator/examples/make_hello_sc +mkdir /usr/local/share/verilator/examples/make_tracing_c +mkdir /usr/local/share/verilator/examples/make_tracing_sc +mkdir /usr/local/share/verilator/examples/make_protect_lib +mkdir /usr/local/share/verilator/examples/cmake_hello_c +mkdir /usr/local/share/verilator/examples/cmake_hello_sc +mkdir /usr/local/share/verilator/examples/cmake_tracing_c +mkdir /usr/local/share/verilator/examples/cmake_tracing_sc +mkdir /usr/local/share/verilator/examples/cmake_protect_lib +mkdir /usr/local/share/verilator/examples/xml_py +mkdir /usr/local/share/pkgconfig +Removing intermediate container e9b3287018db + ---> 21bafbf4da21 +Step 9/12 : RUN cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null + ---> Running in 676d65941d3a +Removing intermediate container 676d65941d3a + ---> b7d45d90bbcb +Step 10/12 : RUN cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/build-toolchains.sh riscv-tools 1>/dev/null + ---> Running in d4c7d9e86f09 +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/defparse.y: warning: 27 shift/reduce conflicts [-Wconflicts-sr] +/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/sysinfo.y: warning: 1 shift/reduce conflict [-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/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: decimal float is not supported for this target, ignored +objcopy: /tmp/ls106546: debuglink section already exists +ar: `u' modifier ignored since `D' is the default (see `U') +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/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 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: python is missing or unusable; some features may be unavailable. +configure: WARNING: libipt is missing or unusable; some features may be unavailable. +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); + ^ +../../../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 +configure: WARNING: babeltrace is missing or unusable; GDB is unable to read CTF data. +/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)) + ^~ +/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 ()); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +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; + ^ ~~ +/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(); } + ^^^^^^^^^^^^^^^^^^^^ +../../../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-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); + ^ +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; + ^~~~~~~~~~~~~~~~~~~~~~ +../../../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); + ^ +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/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/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; + ^ ~~ +GIMPLE decision tree has 2874 leafs, maximum depth 12 and a total number of 11721 nodes +removed 1855 duplicate tails +../../../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); + ~~~~~~^~~~~~~~~~~~~~~ +GENERIC decision tree has 2760 leafs, maximum depth 12 and a total number of 11180 nodes +removed 1757 duplicate tails +../../../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 scsi/cxlflash_ioctl.h +Applying io_quotes_use to mtd/ubi-user.h +Applying io_quotes_use to rdma/rdma_user_ioctl.h +Applying io_quotes_use to misc/cxl.h +Applying io_quotes_use to misc/ocxl.h +Applying io_quotes_use to sound/asound.h +Applying io_quotes_use to sound/emu10k1.h +Applying io_quotes_use to sound/asequencer.h +Applying io_quotes_use to sound/compress_offload.h +Applying io_quotes_use to drm/omap_drm.h +Applying io_quotes_use to drm/r128_drm.h +Applying io_quotes_use to drm/i915_drm.h +Applying io_quotes_use to drm/nouveau_drm.h +Applying io_quotes_use to drm/mga_drm.h +Applying io_quotes_use to drm/via_drm.h +Applying io_quotes_use to drm/i810_drm.h +Applying io_quotes_use to drm/radeon_drm.h +Applying io_quotes_use to drm/vc4_drm.h +Applying io_quotes_use to drm/vgem_drm.h +Applying io_quotes_use to drm/amdgpu_drm.h +Applying io_quotes_use to drm/sis_drm.h +Applying io_quotes_use to drm/msm_drm.h +Applying io_quotes_use to drm/drm.h +Applying io_quotes_use to drm/tegra_drm.h +Applying io_quotes_use to drm/v3d_drm.h +Applying io_quotes_use to drm/exynos_drm.h +Applying io_quotes_use to drm/savage_drm.h +Applying io_quotes_use to drm/etnaviv_drm.h +Applying io_quotes_use to linux/dm-ioctl.h +Applying io_quotes_use to linux/btrfs.h +Applying io_quotes_use to linux/fpga-dfl.h +Applying io_quotes_use to linux/agpgart.h +Applying io_quotes_use to linux/rpmsg.h +Applying io_quotes_use to linux/vfio.h +Applying io_quotes_use to linux/if_pppox.h +Applying io_quotes_use to linux/vtpm_proxy.h +Applying io_quotes_use to linux/ptp_clock.h +Applying io_quotes_use to linux/mmc/ioctl.h +Applying io_quotes_use to linux/ipmi.h +Applying io_quotes_use to linux/ndctl.h +Applying io_quotes_use to linux/vboxguest.h +Applying io_quotes_use to linux/nsfs.h +Applying io_quotes_use to linux/dn.h +Applying io_quotes_use to linux/fd.h +Applying io_quotes_use to linux/synclink.h +Applying io_quotes_use to linux/wmi.h +Applying io_quotes_use to linux/gpio.h +Applying io_quotes_use to linux/atmbr2684.h +Applying io_quotes_use to linux/suspend_ioctls.h +Applying io_quotes_use to linux/ppdev.h +Applying io_quotes_use to linux/genwqe/genwqe_card.h +Applying io_quotes_use to linux/ipmi_bmc.h +Applying io_quotes_use to linux/seccomp.h +Applying io_quotes_use to linux/omapfb.h +Applying io_quotes_use to linux/vhost.h +Applying io_quotes_use to linux/tee.h +Applying io_quotes_use to linux/lightnvm.h +Applying io_quotes_use to linux/cm4000_cs.h +Applying io_quotes_use to linux/mmtimer.h +Applying io_quotes_use to linux/usb/tmc.h +Applying io_quotes_use to linux/aspeed-lpc-ctrl.h +Applying io_quotes_use to linux/gigaset_dev.h +Applying io_quotes_def to linux/version.h +Applying io_quotes_use to linux/rio_cm_cdev.h +Applying io_quotes_use to linux/nbd.h +Applying io_quotes_use to linux/fuse.h +Applying io_quotes_use to linux/rfkill.h +Applying io_quotes_use to linux/pktcdvd.h +Applying io_quotes_use to linux/watchdog.h +Applying io_quotes_use to linux/i2o-dev.h +Applying io_quotes_use to linux/vm_sockets.h +Applying io_quotes_use to linux/userfaultfd.h +Applying io_quotes_use to linux/uinput.h +Applying io_quotes_def to linux/pci_regs.h +Applying io_quotes_use to linux/reiserfs_fs.h +Applying io_quotes_use to linux/random.h +Applying io_quotes_use to linux/bt-bmc.h +Applying io_quotes_use to linux/cciss_ioctl.h +Applying io_quotes_use to linux/psp-sev.h +Applying io_quotes_def to linux/ppp-comp.h +Applying io_quotes_use to linux/phantom.h +Applying io_quotes_use to linux/blkpg.h +Applying io_quotes_def to linux/soundcard.h +Applying io_quotes_use to linux/raid/md_u.h +Applying io_quotes_use to linux/dma-buf.h +Applying io_quotes_use to linux/fs.h +Applying io_quotes_use to linux/raw.h +Applying io_quotes_use to linux/spi/spidev.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/blkzoned.h +Applying io_quotes_use to linux/sync_file.h +Applying io_quotes_use to linux/auto_fs.h +Applying io_quotes_use to video/sisfb.h +-fself-test: 46308 pass(es) in 0.379968 seconds +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/ls71525: 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); + ^ +ar: `u' modifier ignored since `D' is the default (see `U') +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); + ^ +../../../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 `:' +../../../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 '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-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-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-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-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-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: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/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/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/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/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/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/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/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 +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/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/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); +Applying hpux8_bogus_inlines to math.h +Applying io_quotes_use to scsi/cxlflash_ioctl.h +Applying sysv68_string to string.h +Applying io_quotes_use to mtd/ubi-user.h +Applying pthread_incomplete_struct_argument to pthread.h +Applying io_quotes_use to rdma/rdma_user_ioctl.h +Applying io_quotes_use to sys/mount.h +Applying io_quotes_use to sys/raw.h +Applying sun_malloc to malloc.h +Applying io_quotes_use to misc/cxl.h +Applying io_quotes_use to misc/ocxl.h +Applying io_quotes_use to sound/asound.h +Applying io_quotes_use to sound/emu10k1.h +Applying io_quotes_use to sound/asequencer.h +Applying io_quotes_use to sound/compress_offload.h +Applying io_quotes_use to drm/omap_drm.h +Applying io_quotes_use to drm/r128_drm.h +Applying io_quotes_use to drm/i915_drm.h +Applying io_quotes_use to drm/nouveau_drm.h +Applying io_quotes_use to drm/mga_drm.h +Applying io_quotes_use to drm/via_drm.h +Applying io_quotes_use to drm/i810_drm.h +Applying io_quotes_use to drm/radeon_drm.h +Applying io_quotes_use to drm/vc4_drm.h +Applying io_quotes_use to drm/vgem_drm.h +Applying io_quotes_use to drm/amdgpu_drm.h +Applying io_quotes_use to drm/sis_drm.h +Applying io_quotes_use to drm/msm_drm.h +Applying io_quotes_use to drm/drm.h +Applying io_quotes_use to drm/tegra_drm.h +Applying io_quotes_use to drm/v3d_drm.h +Applying io_quotes_use to drm/exynos_drm.h +Applying io_quotes_use to drm/savage_drm.h +Applying io_quotes_use to drm/etnaviv_drm.h +Applying io_quotes_use to linux/dm-ioctl.h +Applying io_quotes_use to linux/btrfs.h +Applying io_quotes_use to linux/fpga-dfl.h +Applying io_quotes_use to linux/agpgart.h +Applying io_quotes_use to linux/rpmsg.h +Applying io_quotes_use to linux/vfio.h +Applying io_quotes_use to linux/if_pppox.h +Applying io_quotes_use to linux/vtpm_proxy.h +Applying io_quotes_use to linux/ptp_clock.h +-fself-test: 46308 pass(es) in 0.375724 seconds +Applying io_quotes_use to linux/mmc/ioctl.h +Applying io_quotes_use to linux/ipmi.h +Applying io_quotes_use to linux/ndctl.h +Applying io_quotes_use to linux/vboxguest.h +Applying io_quotes_use to linux/nsfs.h +Applying io_quotes_use to linux/dn.h +Applying io_quotes_use to linux/fd.h +Applying io_quotes_use to linux/synclink.h +Applying io_quotes_use to linux/wmi.h +Applying io_quotes_use to linux/gpio.h +Applying io_quotes_use to linux/atmbr2684.h +Applying io_quotes_use to linux/suspend_ioctls.h +Applying io_quotes_use to linux/ppdev.h +Applying io_quotes_use to linux/genwqe/genwqe_card.h +Applying io_quotes_use to linux/ipmi_bmc.h +Applying io_quotes_use to linux/seccomp.h +Applying io_quotes_use to linux/omapfb.h +Applying io_quotes_use to linux/vhost.h +Applying io_quotes_use to linux/tee.h +Applying io_quotes_use to linux/lightnvm.h +Applying io_quotes_use to linux/cm4000_cs.h +Applying io_quotes_use to linux/mmtimer.h +Applying io_quotes_use to linux/usb/tmc.h +Applying io_quotes_use to linux/aspeed-lpc-ctrl.h +Applying io_quotes_use to linux/gigaset_dev.h +Applying io_quotes_def to linux/version.h +Applying io_quotes_use to linux/rio_cm_cdev.h +Applying io_quotes_use to linux/nbd.h +Applying io_quotes_use to linux/fuse.h +Applying io_quotes_use to linux/rfkill.h +Applying io_quotes_use to linux/pktcdvd.h +Applying io_quotes_use to linux/watchdog.h +Applying io_quotes_use to linux/i2o-dev.h +Applying io_quotes_use to linux/vm_sockets.h +Applying io_quotes_use to linux/userfaultfd.h +Applying io_quotes_use to linux/uinput.h +Applying io_quotes_def to linux/pci_regs.h +Applying io_quotes_use to linux/reiserfs_fs.h +Applying io_quotes_use to linux/random.h +Applying io_quotes_use to linux/bt-bmc.h +Applying io_quotes_use to linux/cciss_ioctl.h +Applying io_quotes_use to linux/psp-sev.h +Applying io_quotes_def to linux/ppp-comp.h +Applying io_quotes_use to linux/phantom.h +Applying io_quotes_use to linux/blkpg.h +Applying io_quotes_def to linux/soundcard.h +Applying io_quotes_use to linux/raid/md_u.h +Applying io_quotes_use to linux/dma-buf.h +Applying io_quotes_use to linux/fs.h +Applying io_quotes_use to linux/raw.h +Applying io_quotes_use to linux/spi/spidev.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/blkzoned.h +Applying io_quotes_use to linux/sync_file.h +Applying io_quotes_use to linux/auto_fs.h +Applying io_quotes_use to video/sisfb.h +Applying glibc_stdint to stdint.h +-fself-test: 46338 pass(es) in 0.372092 seconds +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 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/krb5' +Submodule 'pyca.cryptography' (https://github.com/pyca/cryptography.git) registered for path 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/pyca-cryptography' +Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/boringssl'... +Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/krb5'... +Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/pyca-cryptography'... +ar: creating libdromajo_cosim.a +Removing intermediate container d4c7d9e86f09 + ---> 67593a0dda02 +Step 11/12 : ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] + ---> Running in 15694aa6e91a +Removing intermediate container 15694aa6e91a + ---> df74d16ea3fb +Step 12/12 : CMD ["/bin/sh"] + ---> Running in 00e6435aedd8 +Removing intermediate container 00e6435aedd8 + ---> 24b1063f956e +Successfully built 24b1063f956e +[schwarzem@a6:/scratch/schwarzem/chipyard]$ eixit +exit + +Script done on 2020-12-22 19:36:46-0800 diff --git a/verilator-no-env.txt b/verilator-no-env.txt new file mode 100644 index 0000000000..9100a140b3 --- /dev/null +++ b/verilator-no-env.txt @@ -0,0 +1,68235 @@ +Script started on 2020-12-22 19:37:05-0800 +[schwarzem@a6:/scratch/schwarzem/chipyard]$ exitdocker build .exitdocker build .exitdocker build .git pushcommit -m "Cleaned d up dockerfile"add * + cat Dockerfiledocker ps --sizef -k /ocker run --rm -it 4e ec24ac7d0ce bash -ilbuild . + run --rm -it cd d221c694d36 bash -ilbuild . + run --rm -it cd d221c694d36 bash -il  b24[12@b1063f956e b +]0;riscvuser@dd954fd5a122: ~riscvuser@dd954fd5a122:~$ ]0;riscvuser@dd954fd5a122: ~riscvuser@dd954fd5a122:~$ cd chipyard/sims/verilator +]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ make +make -C /home/riscvuser/chipyard/tools/firrtl SBT="java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar" root_dir=/home/riscvuser/chipyard/tools/firrtl build-scala +make[1]: Entering directory '/home/riscvuser/chipyard/tools/firrtl' +java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "assembly" +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +Getting org.scala-sbt sbt 1.3.8 (this may take some time)... +downloading https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#sbt;1.3.8!sbt.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar ... + [SUCCESSFUL ] org.scala-lang#scala-library;2.12.10!scala-library.jar (137ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#main_2.12;1.3.8!main_2.12.jar (155ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#io_2.12;1.3.3!io_2.12.jar (23ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#logic_2.12;1.3.8!logic_2.12.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#actions_2.12;1.3.8!actions_2.12.jar (18ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#main-settings_2.12;1.3.8!main-settings_2.12.jar (24ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#run_2.12;1.3.8!run_2.12.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#command_2.12;1.3.8!command_2.12.jar (62ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#collections_2.12;1.3.8!collections_2.12.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#scripted-sbt-redux_2.12;1.3.8!scripted-sbt-redux_2.12.jar (39ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#scripted-plugin_2.12;1.3.8!scripted-plugin_2.12.jar (13ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-lm-integration_2.12;1.3.8!zinc-lm-integration_2.12.jar (18ms) +downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar ... + [SUCCESSFUL ] org.scala-lang.modules#scala-xml_2.12;1.2.0!scala-xml_2.12.jar(bundle) (26ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar ... + [SUCCESSFUL ] org.scala-sbt#launcher-interface;1.1.3!launcher-interface.jar (15ms) +downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar ... + [SUCCESSFUL ] org.apache.logging.log4j#log4j-api;2.11.2!log4j-api.jar (18ms) +downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar ... + [SUCCESSFUL ] org.apache.logging.log4j#log4j-core;2.11.2!log4j-core.jar (38ms) +downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar ... + [SUCCESSFUL ] org.apache.logging.log4j#log4j-slf4j-impl;2.11.2!log4j-slf4j-impl.jar (62ms) +downloading https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar ... + [SUCCESSFUL ] com.github.cb372#scalacache-caffeine_2.12;0.20.0!scalacache-caffeine_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar ... + [SUCCESSFUL ] io.get-coursier#lm-coursier-shaded_2.12;2.0.0-RC5-3!lm-coursier-shaded_2.12.jar (195ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-logging_2.12;1.3.3!util-logging_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar ... + [SUCCESSFUL ] org.scala-sbt#librarymanagement-core_2.12;1.3.1!librarymanagement-core_2.12.jar (27ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar ... + [SUCCESSFUL ] org.scala-sbt#librarymanagement-ivy_2.12;1.3.1!librarymanagement-ivy_2.12.jar (23ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#compiler-interface;1.3.4!compiler-interface.jar (18ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-compile_2.12;1.3.4!zinc-compile_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-relation_2.12;1.3.3!util-relation_2.12.jar (103ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar ... + [SUCCESSFUL ] com.eed3si9n#sjson-new-scalajson_2.12;0.8.2!sjson-new-scalajson_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-position_2.12;1.3.3!util-position_2.12.jar (15ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar ... + [SUCCESSFUL ] com.eed3si9n#shaded-scalajson_2.12;1.0.0-M4!shaded-scalajson_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar ... + [SUCCESSFUL ] org.spire-math#jawn-parser_2.12;0.10.4!jawn-parser_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar ... + [SUCCESSFUL ] org.scala-lang#scala-reflect;2.12.10!scala-reflect.jar (66ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#completion_2.12;1.3.8!completion_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#task-system_2.12;1.3.8!task-system_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#tasks_2.12;1.3.8!tasks_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#testing_2.12;1.3.8!testing_2.12.jar (18ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-tracking_2.12;1.3.3!util-tracking_2.12.jar (13ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-classpath_2.12;1.3.4!zinc-classpath_2.12.jar (13ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-apiinfo_2.12;1.3.4!zinc-apiinfo_2.12.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc_2.12;1.3.4!zinc_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar ... + [SUCCESSFUL ] jline#jline;2.14.6!jline.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-control_2.12;1.3.3!util-control_2.12.jar (12ms) +downloading https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar ... + [SUCCESSFUL ] com.swoval#file-tree-views;2.1.3!file-tree-views.jar (17ms) +downloading https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar ... + [SUCCESSFUL ] net.java.dev.jna#jna;4.5.0!jna.jar (37ms) +downloading https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar ... + [SUCCESSFUL ] net.java.dev.jna#jna-platform;4.5.0!jna-platform.jar (46ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-interface;1.3.3!util-interface.jar (14ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar ... + [SUCCESSFUL ] com.eed3si9n#sjson-new-core_2.12;0.8.3!sjson-new-core_2.12.jar (24ms) +downloading https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar ... + [SUCCESSFUL ] com.lmax#disruptor;3.4.2!disruptor.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar ... + [SUCCESSFUL ] org.scala-lang#scala-compiler;2.12.10!scala-compiler.jar (259ms) +downloading https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar ... + [SUCCESSFUL ] com.google.protobuf#protobuf-java;3.7.0!protobuf-java.jar(bundle) (34ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-cache_2.12;1.3.3!util-cache_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar ... + [SUCCESSFUL ] com.eed3si9n#sjson-new-murmurhash_2.12;0.8.3!sjson-new-murmurhash_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#test-agent;1.3.8!test-agent.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar ... + [SUCCESSFUL ] org.scala-sbt#test-interface;1.0!test-interface.jar (62ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#compiler-bridge_2.12;1.3.4!compiler-bridge_2.12.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-classfile_2.12;1.3.4!zinc-classfile_2.12.jar (18ms) +downloading https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar ... + [SUCCESSFUL ] com.jcraft#jsch;0.1.54!jsch.jar (18ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar ... + [SUCCESSFUL ] com.eed3si9n#gigahorse-okhttp_2.12;0.5.0!gigahorse-okhttp_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar ... + [SUCCESSFUL ] com.squareup.okhttp3#okhttp-urlconnection;3.7.0!okhttp-urlconnection.jar (15ms) +downloading https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar ... + [SUCCESSFUL ] com.eed3si9n#gigahorse-core_2.12;0.5.0!gigahorse-core_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar ... + [SUCCESSFUL ] com.squareup.okhttp3#okhttp;3.14.2!okhttp.jar (19ms) +downloading https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar ... + [SUCCESSFUL ] com.typesafe#ssl-config-core_2.12;0.4.0!ssl-config-core_2.12.jar(bundle) (19ms) +downloading https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar ... + [SUCCESSFUL ] org.reactivestreams#reactive-streams;1.0.2!reactive-streams.jar (13ms) +downloading https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar ... + [SUCCESSFUL ] org.slf4j#slf4j-api;1.7.26!slf4j-api.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar ... + [SUCCESSFUL ] org.scala-lang.modules#scala-parser-combinators_2.12;1.1.2!scala-parser-combinators_2.12.jar(bundle) (20ms) +downloading https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar ... + [SUCCESSFUL ] com.typesafe#config;1.3.3!config.jar(bundle) (20ms) +downloading https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar ... + [SUCCESSFUL ] com.squareup.okio#okio;1.17.2!okio.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-core_2.12;1.3.4!zinc-core_2.12.jar (27ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-persist_2.12;1.3.4!zinc-persist_2.12.jar (39ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-compile-core_2.12;1.3.4!zinc-compile-core_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar ... + [SUCCESSFUL ] com.trueaccord.scalapb#scalapb-runtime_2.12;0.6.0!scalapb-runtime_2.12.jar (40ms) +downloading https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar ... + [SUCCESSFUL ] com.trueaccord.lenses#lenses_2.12;0.4.12!lenses_2.12.jar (13ms) +downloading https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar ... + [SUCCESSFUL ] com.lihaoyi#fastparse_2.12;0.4.2!fastparse_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar ... + [SUCCESSFUL ] com.lihaoyi#fastparse-utils_2.12;0.4.2!fastparse-utils_2.12.jar (46ms) +downloading https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar ... + [SUCCESSFUL ] com.lihaoyi#sourcecode_2.12;0.1.3!sourcecode_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar ... + [SUCCESSFUL ] org.scala-sbt#sbinary_2.12;0.5.0!sbinary_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#core-macros_2.12;1.3.8!core-macros_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar ... + [SUCCESSFUL ] org.scala-sbt#protocol_2.12;1.3.8!protocol_2.12.jar (22ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar ... + [SUCCESSFUL ] org.scala-sbt#template-resolver;0.1!template-resolver.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar ... + [SUCCESSFUL ] org.scala-sbt.ipcsocket#ipcsocket;1.0.0!ipcsocket.jar (14ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar ... + [SUCCESSFUL ] org.scala-sbt#util-scripted_2.12;1.3.3!util-scripted_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar ... + [SUCCESSFUL ] com.github.cb372#scalacache-core_2.12;0.20.0!scalacache-core_2.12.jar (14ms) +downloading https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar ... + [SUCCESSFUL ] com.github.ben-manes.caffeine#caffeine;2.5.6!caffeine.jar (216ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar ... + [SUCCESSFUL ] org.scala-sbt.ivy#ivy;2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19!ivy.jar (450ms) +:: retrieving :: org.scala-sbt#boot-app + confs: [default] + 81 artifacts copied, 0 already retrieved (37999kB/85ms) +Getting Scala 2.12.10 (for sbt)... +downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar ... + [SUCCESSFUL ] org.scala-lang.modules#scala-xml_2.12;1.0.6!scala-xml_2.12.jar(bundle) (22ms) +downloading https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/jansi-1.12.jar ... + [SUCCESSFUL ] org.fusesource.jansi#jansi;1.12!jansi.jar (17ms) +:: retrieving :: org.scala-sbt#boot-scala + confs: [default] + 6 artifacts copied, 0 already retrieved (20113kB/26ms) +[info] Loading settings for project firrtl-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/tools/firrtl/project + + + + + + | => Global / publishTo 0s + | => Global / credentials 0s + | => firrtl-build / dependencyResolution 0s + + + + + + + + | => firrtl-build / dependencyResolution 0s + + + + + + + + | => firrtl-build / dependencyResolution 0s + + + + + + | => Global / publishTo 0s + | => Global / credentials 0s + | => firrtl-build / dependencyResolution 0s + + + + + + | => Global / publishTo 0s + | => Global / credentials 0s + | => firrtl-build / dependencyResolution 0s + + + + + + + | => firrtl-build / otherResolvers 0s + | => Global / credentials 0s + + + + + + + | => firrtl-build / otherResolvers 0s + | => Global / credentials 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | => firrtl-build / dependencyResolution 0s + | => firrtl-build / projectDependencies 0s + | => firrtl-build / Compile / scalacOptions 0s + + + + + + | => firrtl-build / dependencyResolution 0s + | => firrtl-build / projectDependencies 0s + | => firrtl-build / Compile / scalacOptions 0s + + + + + + | => firrtl-build / dependencyResolution 0s + | => firrtl-build / projectDependencies 0s + | => firrtl-build / Compile / scalacOptions 0s + + + + + + | => firrtl-build / allCredentials 0s + | => firrtl-build / csrConfiguration 0s + | => firrtl-build / dependencyPositions 0s + | => firrtl-build / projectDescriptors 0s + | => firrtl-build / csrRecursiveResolvers 0s + | => firrtl-build / csrInterProjectDependencies 0s + | => firrtl-build / csrFallbackDependencies 0s + + + + + + | => firrtl-build / allCredentials 0s + | => firrtl-build / csrConfiguration 0s + | => firrtl-build / dependencyPositions 0s + | => firrtl-build / projectDescriptors 0s + | => firrtl-build / csrRecursiveResolvers 0s + | => firrtl-build / csrInterProjectDependencies 0s + | => firrtl-build / csrFallbackDependencies 0s + + + + + + + + + | => Global / incOptions 0s + | => firrtl-build / csrConfiguration 0s + | => firrtl-build / dependencyPositions 0s + | => firrtl-build / projectDescriptors 0s + + + + + + | => firrtl-build / csrRecursiveResolvers 0s + | => firrtl-build / csrInterProjectDependencies 0s + | => firrtl-build / csrFallbackDependencies 0s + | => firrtl-build / Compile / unmanagedJars 0s + | => firrtl-build / Runtime / unmanagedJars 0s + | => firrtl-build / moduleSettings 0s + | => firrtl-build / csrConfiguration 0s + | => firrtl-build / dependencyPositions 0s + | => firrtl-build / projectDescriptors 0s + + + + + + + + + | => firrtl-build / scalaCompilerBridgeResolvers 0s + | => firrtl-build / csrConfiguration 0s + | => firrtl-build / Compile / externalHooks 0s + | => firrtl-build / Compile / externalHooks 0s + | => firrtl-build / moduleSettings 0s + | => firrtl-build / dependencyPositions 0s + + + + + + + + + + + + + | => firrtl-build / csrProject 0s + | => firrtl-build / dependencyPositions 0s + + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + + | => firrtl-build / update 0s +[info] Updating  + + + + + + + + + + + + + | => firrtl-build / update 0s +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-site_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 0s +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 100.0% [##########] 3.1 KiB (36.3 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 100.0% [##########] 3.1 KiB (40.2 KiB / s) +https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? + 100.0% [##########] 4.6 KiB (61.1 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 100.0% [##########] 3.1 KiB (22.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 1.6 KiB (11.0 KiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? + 100.0% [##########] 1.9 KiB (13.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? + 100.0% [##########] 4.5 KiB (134.9 KiB / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 100.0% [##########] 2.1 KiB (65.4 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 0s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + | => firrtl-build / update 0s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 1s + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 2s +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 2s +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 2s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 2.0 KiB (6.8 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 1.7 KiB (5.3 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 2.4 KiB (7.1 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 1.5 KiB (4.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 2.3 KiB (6.7 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 4.0 KiB (12.0 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 2s +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss? + 100.0% [##########] 6.4 KiB (98.7 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 2s + + + + + + + + + + + + + | => firrtl-build / update 3s +https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? + 100.0% [##########] 1.8 KiB (122.8 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 100.0% [##########] 2.5 KiB (167.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? + 100.0% [##########] 3.4 KiB (225.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? + 100.0% [##########] 7.8 KiB (521.9 KiB / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? + 100.0% [##########] 2.2 KiB (90.7 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? + 100.0% [##########] 3.0 KiB (330.7 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 9.5 KiB (414.8 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 100.0% [##########] 2.6 KiB (136.1 KiB / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? + 100.0% [##########] 2.1 KiB (81.6 KiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 100.0% [##########] 2.2 KiB (78.0 KiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? + 100.0% [##########] 2.6 KiB (134.4 KiB / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 100.0% [##########] 2.4 KiB (188.2 KiB / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? + 100.0% [##########] 36.8 KiB (995.3 KiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-filter_2? + 100.0% [##########] 2.9 KiB (240.7 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 100.0% [##########] 2.0 KiB (185.6 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 100.0% [##########] 2.9 KiB (137.3 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? + 100.0% [##########] 2.7 KiB (190.3 KiB / s) +https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? + 100.0% [##########] 2.6 KiB (124.5 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 100.0% [##########] 2.0 KiB (72.9 KiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-directiv? + 100.0% [##########] 2.9 KiB (151.8 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? + 100.0% [##########] 2.7 KiB (47.9 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 3s +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 100.0% [##########] 1.6 KiB (16.4 KiB / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 3s + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s +https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s +https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s + + + + + + + + + + + + + | => firrtl-build / update 4s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 4s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 2.5 KiB (20.8 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 5s +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 35.3 KiB (2.2 MiB / s) + + + + + + + + + + + + + | => firrtl-build / update 5s +https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? + 100.0% [##########] 4.4 KiB (258.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? + 100.0% [##########] 9.4 KiB (552.9 KiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 100.0% [##########] 1.1 KiB (65.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? + 100.0% [##########] 2.6 KiB (154.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? + 100.0% [##########] 9.4 KiB (254.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? + 100.0% [##########] 2.6 KiB (71.0 KiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 100.0% [##########] 1.1 KiB (30.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 100.0% [##########] 3.8 KiB (103.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 100.0% [##########] 3.1 KiB (84.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? + 100.0% [##########] 4.4 KiB (115.8 KiB / s) +https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffe? + 100.0% [##########] 2.4 KiB (168.0 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? + 100.0% [##########] 3.2 KiB (126.4 KiB / s) +https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? + 100.0% [##########] 7.3 KiB (280.2 KiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? + 100.0% [##########] 1.4 KiB (65.1 KiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 100.0% [##########] 2.1 KiB (79.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 2.4 KiB (173.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 1.8 KiB (77.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 100.0% [##########] 4.3 KiB (267.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/? + 100.0% [##########] 6.0 KiB (401.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? + 100.0% [##########] 1.8 KiB (96.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 100.0% [##########] 4.3 KiB (159.0 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 100.0% [##########] 2.4 KiB (133.3 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.1/jzlib-1.1.? + 100.0% [##########] 3.0 KiB (300.2 KiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? + 100.0% [##########] 7.1 KiB (282.2 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.1/jzlib-1.1.? + 100.0% [##########] 3.0 KiB (107.2 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 100.0% [##########] 2.4 KiB (66.7 KiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? + 100.0% [##########] 1.8 KiB (195.3 KiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? + 100.0% [##########] 1.5 KiB (59.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-ap? + 100.0% [##########] 12.8 KiB (675.4 KiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? + 100.0% [##########] 9.9 KiB (583.5 KiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? + 100.0% [##########] 1.5 KiB (140.7 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? + 100.0% [##########] 1.9 KiB (69.4 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom + 100.0% [##########] 2.9 KiB (150.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 100.0% [##########] 2.8 KiB (175.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? + 100.0% [##########] 3.6 KiB (208.9 KiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? + 100.0% [##########] 2.5 KiB (103.2 KiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 100.0% [##########] 3.8 KiB (182.6 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? + 100.0% [##########] 3.6 KiB (324.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 100.0% [##########] 5.9 KiB (585.5 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-a? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 5s +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 100.0% [##########] 5.9 KiB (218.0 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 100.0% [##########] 2.2 KiB (105.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 100.0% [##########] 22.6 KiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? + 100.0% [##########] 3.5 KiB (314.0 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? + 100.0% [##########] 6.7 KiB (335.3 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? + 100.0% [##########] 3.6 KiB (119.1 KiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? + 100.0% [##########] 2.0 KiB (107.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 100.0% [##########] 2.7 KiB (122.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? + 100.0% [##########] 6.5 KiB (435.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 100.0% [##########] 5.9 KiB (201.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_? + 100.0% [##########] 4.8 KiB (265.5 KiB / s) +https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? + 100.0% [##########] 2.5 KiB (208.4 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-a? + 100.0% [##########] 2.6 KiB (90.6 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? + 100.0% [##########] 1.7 KiB (69.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 100.0% [##########] 5.6 KiB (214.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? + 100.0% [##########] 4.3 KiB (193.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 100.0% [##########] 4.7 KiB (174.0 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? + 100.0% [##########] 1.9 KiB (24.4 KiB / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 5s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 5s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 6s + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 2.7 KiB (27.3 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 2.7 KiB (22.7 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-project/9? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/ant/ant-parent/1.9.9/a? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven/3.3.9/mave? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/ant/ant-parent/1.9.9/a? + 100.0% [##########] 5.5 KiB (238.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.? + 100.0% [##########] 60.3 KiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven/3.3.9/mave? + 100.0% [##########] 23.4 KiB (1016.0 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-project/9? + 100.0% [##########] 42.3 KiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/9.2.6.0? + 100.0% [##########] 3.9 KiB (276.2 KiB / s) +https://repo1.maven.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom + 100.0% [##########] 11.0 KiB (476.8 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4? + 100.0% [##########] 11.5 KiB (501.2 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/oss? + 100.0% [##########] 4.7 KiB (337.0 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/5/oss? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/3/oss? + 100.0% [##########] 3.3 KiB (297.5 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/5/oss? + 100.0% [##########] 4.0 KiB (173.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/21/apache-21.pom + 100.0% [##########] 16.7 KiB (928.1 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-parent/27/? + 100.0% [##########] 39.8 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-parent/23? + 100.0% [##########] 21.4 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-parent/9.2.6.0/jr? + 100.0% [##########] 24.6 KiB (1.3 MiB / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/org/apache/apache/17/apache-17.pom + 100.0% [##########] 15.7 KiB (871.1 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/oss? + 100.0% [##########] 4.7 KiB (247.9 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? + 100.0% [##########] 2.1 KiB (93.7 KiB / s) +https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? + 100.0% [##########] 1.8 KiB (141.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 100.0% [##########] 2.1 KiB (97.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 100.0% [##########] 3.5 KiB (157.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? + 100.0% [##########] 4.8 KiB (369.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? + 100.0% [##########] 2.1 KiB (92.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 100.0% [##########] 2.7 KiB (208.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? + 100.0% [##########] 2.5 KiB (195.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? + 100.0% [##########] 2.9 KiB (221.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 100.0% [##########] 3.7 KiB (162.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 100.0% [##########] 3.9 KiB (169.3 KiB / s) +https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom + 100.0% [##########] 632 B (77.1 KiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? + 100.0% [##########] 2.9 KiB (317.3 KiB / s) +https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? + 100.0% [##########] 2.1 KiB (102.2 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 100.0% [##########] 2.1 KiB (122.5 KiB / s) +https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? + 100.0% [##########] 11.3 KiB (436.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? + 100.0% [##########] 3.9 KiB (164.1 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? + 100.0% [##########] 6.1 KiB (318.8 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 4.1 KiB (290.9 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? + 100.0% [##########] 1.9 KiB (77.5 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? + 100.0% [##########] 3.0 KiB (179.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 100.0% [##########] 4.8 KiB (191.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? + 100.0% [##########] 1.5 KiB (96.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? + 100.0% [##########] 4.7 KiB (180.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? + 100.0% [##########] 3.2 KiB (323.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zin? + 100.0% [##########] 4.1 KiB (292.3 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 100.0% [##########] 5.2 KiB (207.4 KiB / s) +https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? + 100.0% [##########] 1.3 KiB (61.0 KiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? + 100.0% [##########] 1.8 KiB (152.9 KiB / s) +https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? + 100.0% [##########] 2.3 KiB (87.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? + 100.0% [##########] 2.1 KiB (122.6 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? + 100.0% [##########] 2.0 KiB (73.2 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? + 100.0% [##########] 2.5 KiB (114.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 100.0% [##########] 4.8 KiB (265.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? + 100.0% [##########] 4.3 KiB (250.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? + 100.0% [##########] 5.2 KiB (521.7 KiB / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 100.0% [##########] 8.1 KiB (354.3 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 100.0% [##########] 17.4 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 100.0% [##########] 3.0 KiB (304.2 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-? + 100.0% [##########] 3.7 KiB (415.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? + 100.0% [##########] 2.3 KiB (105.0 KiB / s) +https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? + 100.0% [##########] 5.5 KiB (273.2 KiB / s) +https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.p? + 100.0% [##########] 19.4 KiB (1.5 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? + 100.0% [##########] 3.2 KiB (152.7 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 100.0% [##########] 42.7 KiB (2.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 100.0% [##########] 17.4 KiB (580.7 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-? + 100.0% [##########] 3.1 KiB (162.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? + 100.0% [##########] 3.2 KiB (215.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 100.0% [##########] 2.3 KiB (80.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 100.0% [##########] 3.0 KiB (104.9 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-? + 100.0% [##########] 3.7 KiB (133.7 KiB / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.pom + 100.0% [##########] 2.8 KiB (251.8 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.pom + 100.0% [##########] 2.8 KiB (92.3 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.7.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? + 100.0% [##########] 7.1 KiB (321.2 KiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.7.0? + 100.0% [##########] 15.7 KiB (714.4 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom + 100.0% [##########] 14.1 KiB (640.5 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.? + 100.0% [##########] 13.4 KiB (609.3 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf? + 100.0% [##########] 13.2 KiB (573.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 21.4% [## ] 12.0 KiB (547.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 56.4 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? + 38.6% [### ] 1.3 KiB (191.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/15/apache-15.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? + 100.0% [##########] 3.5 KiB (128.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/15/apache-15.pom + 100.0% [##########] 14.9 KiB (551.1 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 4.0 KiB (152.5 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? + 100.0% [##########] 9.9 KiB (659.9 KiB / s) +https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? + 100.0% [##########] 6.6 KiB (389.5 KiB / s) +https://repo1.maven.org/maven2/commons-logging/commons-logging/1? + 100.0% [##########] 5.1 KiB (321.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 100.0% [##########] 2.1 KiB (81.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 100.0% [##########] 2.8 KiB (107.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 27.2 KiB (1.6 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 100.0% [##########] 5.0 KiB (192.6 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? + 100.0% [##########] 3.6 KiB (136.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? + 100.0% [##########] 2.3 KiB (84.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 100.0% [##########] 3.7 KiB (206.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 100.0% [##########] 3.7 KiB (372.6 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? + 100.0% [##########] 2.7 KiB (301.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? + 100.0% [##########] 2.5 KiB (92.6 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-constants/0.9.? + 100.0% [##########] 3.7 KiB (184.1 KiB / s) +https://repo1.maven.org/maven2/com/headius/modulator/1.0/modulat? + 100.0% [##########] 1.7 KiB (142.3 KiB / s) +https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? + 100.0% [##########] 1.6 KiB (83.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-exte? + 100.0% [##########] 4.8 KiB (396.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? + 100.0% [##########] 3.3 KiB (163.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? + 100.0% [##########] 4.2 KiB (159.9 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? + 100.0% [##########] 2.7 KiB (96.9 KiB / s) +https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.p? + 100.0% [##########] 2.9 KiB (286.0 KiB / s) +https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? + 100.0% [##########] 7.0 KiB (437.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 100.0% [##########] 3.7 KiB (128.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/com/headius/backport9/1.1/backpor? + 100.0% [##########] 1.7 KiB (142.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 100.0% [##########] 17.8 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 100.0% [##########] 5.0 KiB (209.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? + 100.0% [##########] 3.1 KiB (182.2 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? + 100.0% [##########] 7.1 KiB (285.4 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? + 100.0% [##########] 815 B (72.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 100.0% [##########] 2.8 KiB (148.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? + 100.0% [##########] 1.8 KiB (68.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 100.0% [##########] 1.7 KiB (153.4 KiB / s) +https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? + 100.0% [##########] 1.8 KiB (80.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? + 100.0% [##########] 4.0 KiB (269.9 KiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? + 100.0% [##########] 2.4 KiB (104.4 KiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? + 100.0% [##########] 2.2 KiB (145.9 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? + 100.0% [##########] 4.5 KiB (185.9 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/? + 100.0% [##########] 3.7 KiB (220.1 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? + 100.0% [##########] 3.5 KiB (140.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? + 100.0% [##########] 3.1 KiB (311.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/? + 100.0% [##########] 2.2 KiB (117.4 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 100.0% [##########] 9.0 KiB (643.3 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? + 100.0% [##########] 6.2 KiB (280.8 KiB / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 100.0% [##########] 4.3 KiB (157.7 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? + 100.0% [##########] 3.0 KiB (112.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-? + 100.0% [##########] 3.1 KiB (173.0 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? + 100.0% [##########] 1.7 KiB (168.7 KiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? + 100.0% [##########] 2.1 KiB (267.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? + 100.0% [##########] 2.1 KiB (76.3 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-netdb/1.1.6/jn? + 100.0% [##########] 1.8 KiB (90.1 KiB / s) +https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-? + 100.0% [##########] 1.4 KiB (73.7 KiB / s) +https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? + 100.0% [##########] 33.8 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? + 100.0% [##########] 1.7 KiB (56.2 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 2.6 KiB (284.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 2.6 KiB (88.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 100.0% [##########] 3.4 KiB (31.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 100.0% [##########] 2.1 KiB (14.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 7s +https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? + 100.0% [##########] 1.5 KiB (8.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 7s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 8s + + + + + + + + + + + + + | => firrtl-build / update 9s + + + + + + + + + + + + + | => firrtl-build / update 9s + + + + + + + + + + + + + | => firrtl-build / update 9s + + + + + + + + + + + + + | => firrtl-build / update 9s + + + + + + + + + + + + + | => firrtl-build / update 9s + + + + + + + + + + + + + | => firrtl-build / update 9s +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 100.0% [##########] 4.8 KiB (2.4 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/3.3.1/? + 80.1% [######## ] 16.0 KiB (2.2 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-inject/0.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/avalon/avalon-framewor? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr-master/3.5.2/antl? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/martiansoftware/nailgun-all/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-parent/1.? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 9s +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bas? + 100.0% [##########] 5.2 KiB (291.3 KiB / s) +https://repo1.maven.org/maven2/com/martiansoftware/nailgun-all/0? + 100.0% [##########] 4.9 KiB (180.6 KiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.14.? + 100.0% [##########] 21.0 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr-master/3.5.2/antl? + 100.0% [##########] 12.0 KiB (444.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/avalon-framewor? + 100.0% [##########] 1.8 KiB (68.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 75.7 KiB (4.1 MiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-contai? + 100.0% [##########] 4.1 KiB (207.0 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/3.3.1/? + 100.0% [##########] 20.0 KiB (739.5 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-inject/0.3.? + 100.0% [##########] 14.1 KiB (521.1 KiB / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-parent/1.? + 100.0% [##########] 2.3 KiB (82.1 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 9s +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? + 100.0% [##########] 7.8 KiB (80.2 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? + 100.0% [##########] 6.6 KiB (68.0 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 100.0% [##########] 12.0 KiB (123.8 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? + 95.1% [######### ] 16.1 KiB (165.6 KiB / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 100.0% [##########] 12.0 KiB (102.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom + 100.0% [##########] 15.1 KiB (129.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? + 100.0% [##########] 7.8 KiB (66.5 KiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? + 100.0% [##########] 16.9 KiB (144.4 KiB / s) +https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? + 100.0% [##########] 6.6 KiB (56.4 KiB / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? + 100.0% [##########] 7.8 KiB (783.5 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/3/apache-3.pom + 100.0% [##########] 3.3 KiB (335.0 KiB / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? + 100.0% [##########] 7.7 KiB (56.4 KiB / s) +https://repo1.maven.org/maven2/org/jboss/weld/weld-parent/6/weld? + 100.0% [##########] 20.2 KiB (2.0 MiB / s) +https://repo1.maven.org/maven2/org/sonatype/forge/forge-parent/1? + 100.0% [##########] 13.2 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/33/oss-p? + 100.0% [##########] 21.3 KiB (1.3 MiB / s) + + + + + + + + + + + + + | => firrtl-build / update 9s +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 100.0% [##########] 2.6 KiB (286.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? + 100.0% [##########] 3.5 KiB (441.9 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? + 100.0% [##########] 3.2 KiB (396.6 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? + 100.0% [##########] 4.0 KiB (500.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? + 100.0% [##########] 3.0 KiB (370.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? + 100.0% [##########] 3.2 KiB (113.3 KiB / s) +https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? + 100.0% [##########] 612 B (33.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? + 100.0% [##########] 3.5 KiB (126.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? + 100.0% [##########] 4.0 KiB (441.4 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? + 100.0% [##########] 3.6 KiB (324.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? + 100.0% [##########] 3.4 KiB (117.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgg? + 100.0% [##########] 3.4 KiB (170.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? + 100.0% [##########] 3.0 KiB (105.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? + 100.0% [##########] 3.1 KiB (148.3 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? + 100.0% [##########] 4.0 KiB (143.1 KiB / s) +https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? + 100.0% [##########] 1.1 KiB (56.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? + 100.0% [##########] 2.5 KiB (229.0 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? + 100.0% [##########] 3.7 KiB (249.7 KiB / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.pom + 100.0% [##########] 491 B (53.3 KiB / s) +https://repo1.maven.org/maven2/xml-apis/xml-apis-ext/1.3.04/xml-? + 100.0% [##########] 1.8 KiB (128.1 KiB / s) +https://repo1.maven.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis? + 100.0% [##########] 1.8 KiB (84.7 KiB / s) +https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? + 100.0% [##########] 1.9 KiB (88.0 KiB / s) +https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? + 100.0% [##########] 1023 B (37.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? + 100.0% [##########] 4.3 KiB (172.0 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.26/slf? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okio/okio-parent/1.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okio/okio-parent/1.1? + 100.0% [##########] 4.7 KiB (197.9 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.26/slf? + 100.0% [##########] 13.4 KiB (513.8 KiB / s) +https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? + 100.0% [##########] 1.8 KiB (102.3 KiB / s) +https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? + 100.0% [##########] 13.2 KiB (695.3 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? + 100.0% [##########] 2.5 KiB (129.7 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? + 100.0% [##########] 2.2 KiB (117.6 KiB / s) +https://repo1.maven.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-? + 100.0% [##########] 346 B (17.8 KiB / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? + 100.0% [##########] 2.5 KiB (65.9 KiB / s) +https://repo1.maven.org/maven2/net/java/jvnet-parent/3/jvnet-par? + 100.0% [##########] 4.7 KiB (467.7 KiB / s) + + + + + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? + 100.0% [##########] 2.3 KiB (335.1 KiB / s) +https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3? + 100.0% [##########] 1.8 KiB (219.6 KiB / s) +[info] Resolved dependencies + + + + + + + + + + + + | => firrtl-build / update 10s + + + + + + + + + + + + | => firrtl-build / update 10s + + + + + + + + + + + + | => firrtl-build / update 10s +[info] Updating  + + + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? + 100.0% [##########] 3.6 KiB (172.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 100.0% [##########] 2.5 KiB (136.6 KiB / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.1? + 100.0% [##########] 14.2 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? + 100.0% [##########] 11.5 KiB (523.1 KiB / s) +[info] Resolved dependencies + + + + + + + + + + | => firrtl-build / update 10s + + + + + + + + + + | => firrtl-build / update 10s + + + + + + + + + + | => firrtl-build / update 10s + + + + + + + + + + | => firrtl-build / update 10s +[info] Fetching artifacts of  + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? + 100.0% [##########] 112.9 KiB (5.5 MiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? + 100.0% [##########] 43.8 KiB (2.1 MiB / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? + 52.2% [##### ] 144.0 KiB (8.3 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 3.9% [ ] 62.9 KiB (3.4 MiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? + 100.0% [##########] 43.8 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? + 100.0% [##########] 276.0 KiB (7.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 100.0% [##########] 221.8 KiB (9.0 MiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? + 31.6% [### ] 213.6 KiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 26.5% [## ] 431.1 KiB (11.4 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 24.3% [## ] 125.9 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 2.2% [ ] 96.0 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? + 100.0% [##########] 677.0 KiB (11.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 90.9% [######### ] 469.9 KiB (8.2 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 62.3% [###### ] 1013.5 KiB (17.7 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 11.1% [# ] 491.7 KiB (12.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? + 100.0% [##########] 517.3 KiB (6.6 MiB / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? + 100.0% [##########] 148.2 KiB (8.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? + 100.0% [##########] 1.6 MiB (20.4 MiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? + 100.0% [##########] 677.0 KiB (8.5 MiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-filter_2? + 100.0% [##########] 22.4 KiB (974.9 KiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 24.0% [## ] 1.0 MiB (16.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 41.8% [#### ] 1.8 MiB (22.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 37.0% [### ] 655.4 KiB (20.6 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 16.5% [# ] 448.0 KiB (19.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 76.2% [####### ] 1.3 MiB (25.8 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 63.1% [###### ] 2.7 MiB (27.6 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 40.7% [#### ] 1.1 MiB (25.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 100.0% [##########] 1.7 MiB (24.3 MiB / s) +https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? + 100.0% [##########] 81.7 KiB (11.4 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 86.9% [######## ] 3.8 MiB (31.6 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 67.9% [###### ] 1.8 MiB (28.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? + 100.0% [##########] 81.7 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? + 100.0% [##########] 4.3 MiB (31.2 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 2.6 MiB (31.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? + 100.0% [##########] 208.0 KiB (10.2 MiB / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 100.0% [##########] 23.8 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 100.0% [##########] 149.7 KiB (6.6 MiB / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 100.0% [##########] 166.5 KiB (6.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 12.2% [# ] 163.3 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 8.3% [ ] 297.3 KiB (18.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 4.1% [ ] 408.7 KiB (28.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 78.4% [####### ] 1.0 MiB (6.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 24.7% [## ] 885.5 KiB (24.7 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 12.2% [# ] 1.2 MiB (35.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 10s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.3 MiB (7.1 MiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 72.1% [####### ] 523.7 KiB (8.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 38.2% [### ] 1.3 MiB (24.4 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 21.1% [## ] 2.0 MiB (38.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? + 100.0% [##########] 295.5 KiB (9.3 MiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? + 100.0% [##########] 726.2 KiB (8.6 MiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? + 68.0% [###### ] 160.0 KiB (12.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 58.8% [##### ] 2.1 MiB (27.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 31.4% [### ] 3.0 MiB (41.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? + 100.0% [##########] 235.4 KiB (7.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 80.8% [######## ] 2.8 MiB (29.8 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 43.7% [#### ] 4.2 MiB (45.5 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 11.8% [# ] 208.0 KiB (8.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 3.5 MiB (30.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 56.1% [##### ] 5.4 MiB (48.1 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 33.2% [### ] 587.7 KiB (12.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 100.0% [##########] 48.4 KiB (2.2 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 73.4% [####### ] 7.1 MiB (53.4 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 62.3% [###### ] 1.1 MiB (16.6 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 10s +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 100.0% [##########] 577.9 KiB (19.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 86.7% [######## ] 8.4 MiB (54.8 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 86.1% [######## ] 1.5 MiB (17.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? + 100.0% [##########] 9.7 MiB (55.9 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? + 100.0% [##########] 1.7 MiB (16.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? + 100.0% [##########] 200.6 KiB (8.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? + 100.0% [##########] 49.2 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 100.0% [##########] 89.7 KiB (4.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 100.0% [##########] 271.2 KiB (12.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? + 100.0% [##########] 10.4 KiB (359.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_? + 100.0% [##########] 76.6 KiB (3.9 MiB / s) +https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? + 100.0% [##########] 121.8 KiB (11.9 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 65.9% [###### ] 13.1 KiB (112.3 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 19.9 KiB (146.6 KiB / s) +https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? + 100.0% [##########] 121.8 KiB (4.1 MiB / s) +https://repo1.maven.org/maven2/com/headius/modulator/1.0/modulat? + 100.0% [##########] 4.5 KiB (225.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? + 100.0% [##########] 21.1 KiB (753.3 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 91.6% [######### ] 384.0 KiB (20.8 MiB / s) +https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? + 80.3% [######## ] 1.3 MiB (48.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? + 100.0% [##########] 1.7 MiB (34.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgg? + 100.0% [##########] 173.7 KiB (10.6 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? + 100.0% [##########] 93.7 KiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 100.0% [##########] 419.1 KiB (10.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? + 100.0% [##########] 48.7 KiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? + 100.0% [##########] 22.9 KiB (761.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? + 100.0% [##########] 33.5 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? + 11.5% [# ] 32.0 KiB (3.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? + 100.0% [##########] 5.2 KiB (191.7 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 100.0% [##########] 147.6 KiB (10.3 MiB / s) +https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? + 100.0% [##########] 277.5 KiB (9.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? + 100.0% [##########] 136.8 KiB (6.1 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? + 100.0% [##########] 367.9 KiB (18.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? + 100.0% [##########] 14.2 KiB (789.1 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? + 100.0% [##########] 32.2 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-? + 100.0% [##########] 294.0 KiB (19.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? + 83.6% [######## ] 1.6 MiB (54.4 MiB / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 32.8% [### ] 16.0 KiB (219.2 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? + 100.0% [##########] 59.1 KiB (4.4 MiB / s) +https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? + 100.0% [##########] 48.9 KiB (525.3 KiB / s) +https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? + 100.0% [##########] 2.0 MiB (39.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? + 100.0% [##########] 1.1 MiB (42.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? + 100.0% [##########] 29.1 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-exte? + 100.0% [##########] 53.5 KiB (2.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 20.7% [## ] 2.1 MiB (80.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 1.1 MiB (2.7 MiB / s) +https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? + 100.0% [##########] 93.6 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 31.6% [### ] 3.2 MiB (69.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? + 55.9% [##### ] 785.9 KiB (21.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 45.1% [#### ] 4.6 MiB (69.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 44.9% [#### ] 240.0 KiB (10.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? + 100.0% [##########] 1.4 MiB (24.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 100.0% [##########] 535.0 KiB (12.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 58.0% [##### ] 5.9 MiB (68.6 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 739.9 KiB (4.9 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 29.6 KiB (251.1 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? + 100.0% [##########] 78.0 KiB (2.9 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? + 100.0% [##########] 250.5 KiB (11.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 69.8% [###### ] 7.1 MiB (66.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? + 100.0% [##########] 285.9 KiB (10.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? + 100.0% [##########] 250.5 KiB (6.1 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? + 100.0% [##########] 124.0 KiB (5.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 86.2% [######## ] 8.8 MiB (69.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? + 14.4% [# ] 160.0 KiB (7.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 10.2 MiB (69.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? + 92.1% [######### ] 1.0 MiB (24.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/commons-logging/commons-logging/1? + 100.0% [##########] 37.1 KiB (4.5 MiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/? + 100.0% [##########] 239.2 KiB (13.0 MiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? + 100.0% [##########] 31.9 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? + 100.0% [##########] 1.1 MiB (17.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 21.2% [## ] 1.1 MiB (71.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 58.4% [##### ] 2.9 MiB (86.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 57.3% [##### ] 352.0 KiB (17.2 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 100.0% [##########] 614.1 KiB (15.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 98.5% [######### ] 5.0 MiB (91.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 13.3 KiB (120.7 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-constants/0.9.? + 100.0% [##########] 537.2 KiB (29.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? + 100.0% [##########] 105.2 KiB (3.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (67.1 MiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? + 65.7% [###### ] 512.7 KiB (38.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 33.6% [### ] 39.1 KiB (323.3 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 116.4 KiB (831.3 KiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? + 100.0% [##########] 780.1 KiB (23.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? + 100.0% [##########] 18.0 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? + 100.0% [##########] 217.8 KiB (21.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 100.0% [##########] 773.9 KiB (34.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 100.0% [##########] 1.3 KiB (69.7 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 34.0% [### ] 240.0 KiB (1.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? + 100.0% [##########] 705.7 KiB (4.9 MiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? + 100.0% [##########] 163.8 KiB (6.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-ap? + 100.0% [##########] 260.0 KiB (21.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? + 100.0% [##########] 22.7 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? + 100.0% [##########] 368.2 KiB (20.0 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 21.1% [## ] 336.0 KiB (11.3 MiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? + 19.7% [# ] 448.0 KiB (29.2 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? + 100.0% [##########] 222.6 KiB (9.9 MiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 100.0% [##########] 705.2 KiB (26.5 MiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? + 70.5% [####### ] 1.6 MiB (46.0 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 32.2% [### ] 512.0 KiB (10.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/headius/backport9/1.1/backpor? + 100.0% [##########] 11.7 KiB (1.0 MiB / s) +https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? + 100.0% [##########] 2.2 MiB (41.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? + 100.0% [##########] 140.8 KiB (5.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? + 100.0% [##########] 41.3 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? + 100.0% [##########] 60.7 KiB (5.9 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 52.9% [##### ] 841.2 KiB (11.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? + 41.1% [#### ] 1011.0 KiB (52.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? + 100.0% [##########] 204.4 KiB (9.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? + 100.0% [##########] 2.4 MiB (63.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? + 100.0% [##########] 64.9 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 70.3% [####### ] 1.1 MiB (12.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? + 100.0% [##########] 36.6 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3? + 100.0% [##########] 107.9 KiB (10.5 MiB / s) +https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? + 100.0% [##########] 1.6 MiB (14.3 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? + 100.0% [##########] 44.8 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? + 100.0% [##########] 410.8 KiB (26.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 100.0% [##########] 76.2 KiB (3.1 MiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? + 100.0% [##########] 33.2 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 100.0% [##########] 110.8 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? + 26.1% [## ] 1.0 MiB (51.4 MiB / s) +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 24.6% [## ] 427.7 KiB (17.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? + 72.4% [####### ] 2.9 MiB (71.3 MiB / s) +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 49.5% [#### ] 859.7 KiB (19.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? + 100.0% [##########] 3.9 MiB (65.6 MiB / s) +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 91.5% [######### ] 1.6 MiB (24.3 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? + 100.0% [##########] 1.7 MiB (20.4 MiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? + 100.0% [##########] 51.4 KiB (3.1 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? + 70.3% [####### ] 208.0 KiB (22.6 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 44.8 KiB (385.8 KiB / s) +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 100.0% [##########] 162.0 KiB (10.5 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? + 100.0% [##########] 295.9 KiB (10.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 100.0% [##########] 620.8 KiB (24.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 60.4% [###### ] 33.7 KiB (297.8 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 55.7 KiB (419.0 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 1.1 MiB (10.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? + 100.0% [##########] 216.7 KiB (9.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/? + 100.0% [##########] 357.2 KiB (26.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? + 100.0% [##########] 41.9 KiB (2.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 100.0% [##########] 32.4 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zin? + 100.0% [##########] 63.2 KiB (6.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 3.5 KiB (31.0 KiB / s) +https://repo1.maven.org/maven2/com/github/jnr/jnr-netdb/1.1.6/jn? + 100.0% [##########] 60.2 KiB (4.9 MiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? + 100.0% [##########] 415.8 KiB (20.3 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? + 100.0% [##########] 90.3 KiB (8.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 25.1 KiB (255.9 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.jar + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 25.1 KiB (214.3 KiB / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 100.0% [##########] 8.1 KiB (507.8 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? + 100.0% [##########] 70.3 KiB (5.7 MiB / s) +https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? + 100.0% [##########] 5.7 KiB (285.5 KiB / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.jar + 100.0% [##########] 247.1 KiB (10.5 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? + 100.0% [##########] 105.2 KiB (4.3 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 368.8 KiB (30.0 MiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 100.0% [##########] 59.6 KiB (6.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? + 100.0% [##########] 64.5 KiB (2.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? + 100.0% [##########] 59.6 KiB (2.1 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 368.8 KiB (11.3 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-? + 100.0% [##########] 32.5 KiB (1.6 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? + 100.0% [##########] 239.0 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? + 100.0% [##########] 78.9 KiB (6.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 6.0 KiB (54.4 KiB / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? + 100.0% [##########] 60.8 KiB (2.7 MiB / s) +https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? + 63.4% [###### ] 623.4 KiB (43.5 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 4.0% [ ] 298.4 KiB (19.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 1.1 MiB (8.2 MiB / s) +https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? + 100.0% [##########] 983.5 KiB (28.2 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 13.1% [# ] 986.4 KiB (27.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? + 100.0% [##########] 299.8 KiB (11.7 MiB / s) +https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? + 100.0% [##########] 145.1 KiB (5.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 100.0% [##########] 78.1 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 100.0% [##########] 12.3 KiB (723.3 KiB / s) +https://repo1.maven.org/maven2/xml-apis/xml-apis-ext/1.3.04/xml-? + 100.0% [##########] 83.7 KiB (9.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? + 100.0% [##########] 26.1 KiB (2.8 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 37.2% [### ] 2.7 MiB (48.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? + 100.0% [##########] 26.1 KiB (933.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? + 100.0% [##########] 177.5 KiB (7.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? + 100.0% [##########] 16.6 KiB (829.8 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 59.1% [##### ] 4.3 MiB (57.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 2.1% [ ] 208.0 KiB (174.3 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 1.2% [ ] 120.7 KiB (10.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? + 100.0% [##########] 846.0 KiB (25.8 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 66.1% [###### ] 4.9 MiB (51.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 9.3% [ ] 968.4 KiB (31.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 2.7% [ ] 272.0 KiB (224.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? + 100.0% [##########] 54.0 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 76.4% [####### ] 5.6 MiB (48.7 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 19.6% [# ] 2.0 MiB (39.9 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 14.4% [# ] 425.3 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 3.5% [ ] 352.2 KiB (285.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 85.3% [######## ] 6.3 MiB (46.4 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 29.7% [## ] 3.0 MiB (43.2 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 24.0% [## ] 709.5 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 4.5% [ ] 448.2 KiB (357.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 490.1 KiB (11.7 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 93.6% [######### ] 6.9 MiB (44.3 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 39.4% [### ] 4.0 MiB (44.6 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 33.4% [### ] 987.7 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 5.3% [ ] 528.2 KiB (414.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 100.0% [##########] 7.3 MiB (41.9 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? + 100.0% [##########] 105.7 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 52.0% [##### ] 5.3 MiB (48.1 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 43.9% [#### ] 1.3 MiB (2.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 6.4% [ ] 640.2 KiB (495.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 11s +https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? + 100.0% [##########] 33.1 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? + 100.0% [##########] 199.4 KiB (7.8 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 66.7% [###### ] 6.8 MiB (52.2 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 57.9% [##### ] 1.7 MiB (3.7 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 7.6% [ ] 752.2 KiB (572.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? + 100.0% [##########] 53.7 KiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? + 100.0% [##########] 10.1 KiB (421.0 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 82.5% [######## ] 8.4 MiB (56.0 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 73.3% [####### ] 2.1 MiB (4.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 8.8% [ ] 880.2 KiB (660.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? + 100.0% [##########] 46.4 KiB (1.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? + 100.0% [##########] 83.7 KiB (3.4 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 97.7% [######### ] 9.9 MiB (58.5 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 88.2% [######## ] 2.5 MiB (5.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 10.1% [# ] 1008.2 KiB (745.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/? + 100.0% [##########] 153.7 KiB (15.0 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 316.4 KiB (18.2 MiB / s) +https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? + 100.0% [##########] 81.1 KiB (3.4 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? + 100.0% [##########] 2.9 MiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? + 100.0% [##########] 10.2 MiB (53.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? + 100.0% [##########] 432.9 KiB (17.6 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? + 70.4% [####### ] 224.0 KiB (16.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 32.4% [### ] 176.0 KiB (21.5 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 13.4% [# ] 1.3 MiB (967.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? + 100.0% [##########] 89.8 KiB (7.3 MiB / s) +https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-? + 100.0% [##########] 43.9 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.j? + 100.0% [##########] 262.5 KiB (12.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? + 100.0% [##########] 212.1 KiB (15.9 MiB / s) +https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? + 100.0% [##########] 318.0 KiB (9.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? + 100.0% [##########] 543.5 KiB (19.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 100.0% [##########] 274.1 KiB (10.3 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 18.2% [# ] 1.8 MiB (1.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s +https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar + 100.0% [##########] 434.9 KiB (15.2 MiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? + 100.0% [##########] 33.1 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? + 100.0% [##########] 31.8 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 100.0% [##########] 629.9 KiB (38.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? + 83.2% [######## ] 506.5 KiB (30.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 24.3% [## ] 2.4 MiB (1.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? + 100.0% [##########] 629.9 KiB (11.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? + 100.0% [##########] 608.7 KiB (11.4 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 26.7% [## ] 2.6 MiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? + 100.0% [##########] 40.2 KiB (1004.4 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 29.1% [## ] 2.8 MiB (1.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? + 0.0% [ ] 0 B +https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? + 100.0% [##########] 78.1 KiB (2.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 100.0% [##########] 96.5 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 100.0% [##########] 26.8 KiB (924.2 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 35.2% [### ] 3.4 MiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.j? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 122.6 KiB (1.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 10.2 KiB (104.6 KiB / s) +https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.j? + 100.0% [##########] 16.0 KiB (516.6 KiB / s) +https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? + 68.6% [###### ] 837.5 KiB (24.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 40.2% [#### ] 3.9 MiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s +https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffe? + 100.0% [##########] 6.9 KiB (527.6 KiB / s) +https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? + 100.0% [##########] 208.0 KiB (8.1 MiB / s) +https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? + 100.0% [##########] 19.6 KiB (982.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? + 100.0% [##########] 160.1 KiB (6.0 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar + 100.0% [##########] 111.0 KiB (8.3 MiB / s) +https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? + 100.0% [##########] 1.2 MiB (22.1 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 48.9% [#### ] 4.8 MiB (3.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? + 100.0% [##########] 43.1 KiB (1.6 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? + 100.0% [##########] 200.6 KiB (7.3 MiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? + 100.0% [##########] 76.1 KiB (4.1 MiB / s) +https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? + 100.0% [##########] 2.0 KiB (78.8 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 67.9% [###### ] 6.6 MiB (4.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 33.9% [### ] 112.0 KiB (10.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? + 100.0% [##########] 55.4 KiB (1.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 100.0% [##########] 330.9 KiB (11.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? + 100.0% [##########] 73.3 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? + 100.0% [##########] 72.5 KiB (4.2 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 87.3% [######## ] 8.5 MiB (5.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 96.5% [######### ] 9.4 MiB (6.0 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 54.2% [##### ] 753.9 KiB (28.3 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 5.8% [ ] 636.1 KiB (22.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? + 100.0% [##########] 9.7 MiB (6.1 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 100.0% [##########] 1.4 MiB (29.5 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 17.9% [# ] 1.9 MiB (39.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 2.0 KiB (17.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 100.0% [##########] 64.2 KiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 38.3% [### ] 4.1 MiB (59.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 74.9% [####### ] 130.7 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 50.2% [##### ] 5.3 MiB (60.7 MiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 43.3% [#### ] 160.0 KiB (7.1 MiB / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar + 25.8% [## ] 688.0 KiB (19.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 100.0% [##########] 369.7 KiB (8.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 74.9% [####### ] 130.7 KiB (947.3 KiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 62.6% [###### ] 6.7 MiB (61.6 MiB / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar + 53.2% [##### ] 1.4 MiB (25.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 174.6 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? + 100.0% [##########] 16.8 KiB (478.7 KiB / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar + 84.9% [######## ] 2.2 MiB (29.5 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 75.5% [####### ] 8.0 MiB (62.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? + 100.0% [##########] 807 B (24.6 KiB / s) +https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? + 100.0% [##########] 34.9 KiB (968.8 KiB / s) +https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar + 100.0% [##########] 2.6 MiB (27.7 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 92.1% [######### ] 9.8 MiB (66.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s +https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? + 100.0% [##########] 13.9 KiB (769.7 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 100.0% [##########] 54.9 KiB (1.5 MiB / s) +https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? + 100.0% [##########] 2.4 KiB (84.1 KiB / s) +https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? + 100.0% [##########] 619.2 KiB (35.6 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? + 100.0% [##########] 10.6 MiB (63.3 MiB / s) +https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? + 100.0% [##########] 4.1 KiB (124.6 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? + 100.0% [##########] 189.3 KiB (12.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.3 MiB (8.5 MiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? + 100.0% [##########] 50.5 KiB (4.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? + 100.0% [##########] 2.5 KiB (109.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 100.0% [##########] 25.9 KiB (589.4 KiB / s) +https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-directiv? + 100.0% [##########] 127.6 KiB (7.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? + 100.0% [##########] 122.3 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 32.0% [### ] 1.0 MiB (37.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 100.0% [##########] 156.1 KiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 100.0% [##########] 542.7 KiB (16.1 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 82.5% [######## ] 2.7 MiB (56.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 126.6 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 100.0% [##########] 3.3 MiB (48.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 43.3% [#### ] 480.0 KiB (3.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? + 100.0% [##########] 1.1 MiB (7.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 12s + + + + + + + + + | => firrtl-build / update 12s + + + + + + + + + | => firrtl-build / update 12s + + + + + + + + + | => firrtl-build / update 12s + + + + + + + + + | => firrtl-build / update 12s + + + + + + + + + | => firrtl-build / update 13s +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + | => firrtl-build / update 13s +https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? + 100.0% [##########] 14.4 KiB (7.7 KiB / s) +[info] Fetched artifacts of  + + + + + + + + | => firrtl-build / update 13s + + + + + + + + | => firrtl-build / update 13s + + + + + + + + | => firrtl-build / update 13s + + + + + + + + | => firrtl-build / update 13s + + + + + + + + | => firrtl-build / update 13s +[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. + + + + + + + | => firrtl-build / update 13s + + + + + + + | => firrtl-build / update 13s + + + + + + + | => firrtl-build / update 13s + + + + + + + | => firrtl-build / Compile / previousCompile 0s + + + + + + + | => firrtl-build / Compile / compileIncremental 0s + + + + + + + | => firrtl-build / Compile / compileIncremental 0s + + + + + + + +[info] Loading settings for project firrtl from build.sbt ... +[info] Set current project to firrtl (in build file:/home/riscvuser/chipyard/tools/firrtl/) + + + + + + | => Global / fileTreeView 0s + + + + + + + + + + + + + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + | => Zero / checkBuildSources / dynamicInputs 0s + | => Global / fileTreeView 0s + + + + + + | => Zero / checkBuildSources / dynamicInputs 0s + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + | => Zero / checkBuildSources / dynamicInputs 0s + | => Global / fileTreeView 0s + + + + + + | => Global / checkBuildSources 0s + | => Zero / checkBuildSources / dynamicInputs 0s + | => Global / fileTreeView 0s + + + + + + + + + + + + + + + + + + + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + | => Global / fileTreeView 0s + + + + + + + + + + + + + + + + + + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + | => Global / fileTreeView 0s + + + + + + + + + + + + + + + + + + + + + + + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + | => Global / fileTreeView 0s + + + + + + | => Global / previousCache 0s + | => Global / fileTreeView 0s + + + + + + + + + + + + + | => firrtl / assembly / assemblyOutputPath 0s + + + + + + | => firrtl / assembly / assemblyOutputPath 0s + + + + + + + + + + + + | => firrtl / transitiveUpdate 0s + | => firrtl / transitiveUpdate 0s + + + + + + | => firrtl / transitiveUpdate 0s + | => firrtl / transitiveUpdate 0s + + + + + + + | => Global / previousCache 0s + + + + + + + | => Global / previousCache 0s + + + + + + + | => Global / previousCache 0s + + + + + + + | => Global / previousCache 0s + + + + + + + | => Global / previousCache 0s + + + + + + | => firrtl / Compile / externalHooks 0s + | => firrtl / Compile / externalHooks 0s + + + + + + | => firrtl / Compile / externalHooks 0s + | => firrtl / Compile / externalHooks 0s +[info] Updating  + + + + + + | => firrtl / Compile / externalHooks 0s + | => firrtl / Compile / externalHooks 0s +https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) + + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.1? + 100.0% [##########] 2.1 KiB (140.4 KiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 100.0% [##########] 5.2 KiB (345.6 KiB / s) +https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? + 100.0% [##########] 2.2 KiB (30.0 KiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? + 100.0% [##########] 3.5 KiB (46.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? + 100.0% [##########] 16.0 KiB (216.7 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 1.8 KiB (24.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 1.8 KiB (110.7 KiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 100.0% [##########] 3.7 KiB (50.6 KiB / s) +https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? + 100.0% [##########] 2.2 KiB (140.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? + 100.0% [##########] 7.3 KiB (807.8 KiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-master/4.7.1/ant? + 100.0% [##########] 4.3 KiB (474.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 1.6 KiB (16.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 57.1% [##### ] 40.2 KiB (3.9 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? + 100.0% [##########] 3.5 KiB (267.1 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 70.3 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 27.7 KiB (2.5 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 100.0% [##########] 1.6 KiB (141.2 KiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 100.0% [##########] 2.2 KiB (198.8 KiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? + 100.0% [##########] 1.6 KiB (146.8 KiB / s) +https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? + 100.0% [##########] 1.7 KiB (145.5 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? + 100.0% [##########] 1.7 KiB (56.3 KiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? + 100.0% [##########] 1.6 KiB (52.1 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? + 0.0% [ ] 0 B (0 B / s) + + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? + 100.0% [##########] 2.1 KiB (23.7 KiB / s) +https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? + 100.0% [##########] 5.2 KiB (396.2 KiB / s) +https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? + 100.0% [##########] 35.7 KiB (2.7 MiB / s) +https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? + 100.0% [##########] 8.3 KiB (636.8 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? + 100.0% [##########] 1.6 KiB (123.3 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 1.6 KiB (124.0 KiB / s) +https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? + 100.0% [##########] 11.3 KiB (662.9 KiB / s) +https://repo1.maven.org/maven2/org/joda/joda-parent/1.4.0/joda-p? + 100.0% [##########] 31.8 KiB (1.8 MiB / s) +[info] Resolved dependencies + + + + + + | => firrtl / update 0s + + + + + + | => firrtl / update 0s +[info] Updating  + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? + 100.0% [##########] 6.0 KiB (336.1 KiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 100.0% [##########] 4.8 KiB (440.9 KiB / s) +https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? + 100.0% [##########] 5.1 KiB (459.7 KiB / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.pom + 100.0% [##########] 13.4 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? + 100.0% [##########] 9.0 KiB (819.6 KiB / s) +[info] Resolved dependencies + + + + + + | => firrtl / update 0s +[info] Updating  + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 100.0% [##########] 2.7 KiB (161.2 KiB / s) +[info] Resolved dependencies + + + + + + | => firrtl / update 0s + + + + + + | => firrtl / update 0s +[info] Updating  + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 2.6 KiB (145.9 KiB / s) +[info] Resolved dependencies + + + + + + | => firrtl / update 0s +[info] Fetching artifacts of  + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? + 85.7% [######## ] 121.8 KiB (7.4 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 7.9% [ ] 125.9 KiB (7.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 1.2% [ ] 123.2 KiB (7.5 MiB / s) +https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? + 100.0% [##########] 197.1 KiB (10.7 MiB / s) +https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? + 100.0% [##########] 26.1 KiB (747.0 KiB / s) +https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? + 100.0% [##########] 142.2 KiB (4.0 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 47.2% [#### ] 753.9 KiB (21.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 8.6% [ ] 449.3 KiB (24.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 6.3% [ ] 660.3 KiB (18.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? + 100.0% [##########] 81.7 KiB (3.5 MiB / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 89.4% [######## ] 1.4 MiB (25.4 MiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? + 29.2% [## ] 96.0 KiB (7.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 25.7% [## ] 1.3 MiB (34.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 11.5% [# ] 1.2 MiB (21.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? + 100.0% [##########] 1.6 MiB (20.8 MiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? + 100.0% [##########] 328.9 KiB (10.0 MiB / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.jar + 61.6% [###### ] 144.0 KiB (11.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 46.4% [#### ] 2.4 MiB (41.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 17.8% [# ] 1.8 MiB (24.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.jar + 100.0% [##########] 233.9 KiB (7.1 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 91.1 KiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? + 100.0% [##########] 1.4 KiB (49.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 69.9% [###### ] 3.6 MiB (45.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 24.5% [## ] 2.5 MiB (26.4 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 1.7% [ ] 192.0 KiB (10.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? + 100.0% [##########] 83.2 KiB (3.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 92.2% [######### ] 4.7 MiB (48.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 30.8% [### ] 3.1 MiB (27.3 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 5.1% [ ] 576.0 KiB (15.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 96.1% [######### ] 4.9 MiB (36.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 32.3% [### ] 3.3 MiB (21.6 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 5.8% [ ] 656.0 KiB (8.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.1 MiB (37.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 34.6% [### ] 3.5 MiB (22.8 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 7.0% [ ] 800.0 KiB (10.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? + 0.0% [ ] 0 B +https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? + 100.0% [##########] 625.7 KiB (30.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 42.7% [#### ] 4.4 MiB (24.9 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 10.8% [# ] 1.2 MiB (12.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 5.4% [ ] 193.9 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? + 100.0% [##########] 33.8 KiB (1.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 53.2% [##### ] 5.4 MiB (27.9 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 27.7% [## ] 313.3 KiB (23.5 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 16.4% [# ] 1.8 MiB (15.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 10.9% [# ] 392.0 KiB (2.0 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 100.0% [##########] 1.1 MiB (33.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 61.5% [###### ] 6.3 MiB (29.2 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 20.6% [## ] 2.3 MiB (16.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 14.9% [# ] 536.0 KiB (2.5 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? + 100.0% [##########] 202.2 KiB (8.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 72.3% [####### ] 7.4 MiB (31.5 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 26.7% [## ] 3.0 MiB (18.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 20.0% [# ] 718.2 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? + 100.0% [##########] 308.6 KiB (10.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 82.6% [######## ] 8.4 MiB (33.1 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 37.6% [### ] 128.0 KiB (9.6 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 32.2% [### ] 3.6 MiB (20.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 25.3% [## ] 910.2 KiB (3.5 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 340.8 KiB (10.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 93.4% [######### ] 9.6 MiB (34.7 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 38.1% [### ] 4.2 MiB (21.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 31.1% [### ] 1.1 MiB (4.0 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? + 100.0% [##########] 478.1 KiB (13.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 10.2 MiB (34.7 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 44.9% [#### ] 5.0 MiB (23.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 37.9% [### ] 1.3 MiB (4.6 MiB / s) +https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? + 16.6% [# ] 224.0 KiB (18.2 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? + 94.7% [######### ] 1.3 MiB (39.1 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 53.2% [##### ] 5.9 MiB (25.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 45.2% [#### ] 1.6 MiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? + 100.0% [##########] 1.3 MiB (25.4 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 68.5% [###### ] 7.6 MiB (29.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 58.9% [##### ] 2.1 MiB (6.3 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 84.5% [######## ] 9.4 MiB (34.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 72.3% [####### ] 2.5 MiB (7.2 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 0s +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 100.0% [##########] 11.1 MiB (37.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 87.4% [######## ] 3.1 MiB (8.3 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.1? + 100.0% [##########] 77.0 KiB (4.0 MiB / s) +https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? + 100.0% [##########] 11.1 MiB (35.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 3.5 MiB (9.0 MiB / s) +https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? + 100.0% [##########] 97.9 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 68.3% [###### ] 336.0 KiB (27.3 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 492.1 KiB (15.5 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 14.9% [# ] 229.6 KiB (1.5 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 100.0% [##########] 1.5 MiB (9.1 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 0s + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 8.7% [ ] 578.8 KiB (748.7 KiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 32.2% [### ] 2.1 MiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 63.6% [###### ] 4.1 MiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 97.8% [######### ] 6.4 MiB (7.7 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 100.0% [##########] 6.5 MiB (7.6 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 1s +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 4.2% [ ] 528.2 KiB (391.0 KiB / s) + + + + + + | => firrtl / update 1s +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 13.3% [# ] 1.6 MiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 26.3% [## ] 3.2 MiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 44.0% [#### ] 5.4 MiB (3.8 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 62.3% [###### ] 7.6 MiB (5.3 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 80.8% [######## ] 9.8 MiB (6.8 MiB / s) + + + + + + | => firrtl / update 1s +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 99.2% [######### ] 12.1 MiB (8.2 MiB / s) +https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? + 100.0% [##########] 12.2 MiB (8.2 MiB / s) +[info] Fetched artifacts of  + + + + + + | => firrtl / update 1s + + + + + + | => firrtl / update 2s +[info] Compiling 1 protobuf files to /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main + + + + + + | => firrtl / update 2s +[info] Compiling schema /home/riscvuser/chipyard/tools/firrtl/src/main/proto/firrtl.proto + + + + + + | => firrtl / update 2s +protoc-jar: protoc version: 3.5.1, detected platform: linux-x86_64 (linux/amd64) +protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) +protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/maven-metadata.xml +protoc-jar: saved: /tmp/protocjar.webcache/com/google/protobuf/protoc/maven-metadata.xml +protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) +protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/github/os72/protoc/maven-metadata.xml +protoc-jar: saved: /tmp/protocjar.webcache/com/github/os72/protoc/maven-metadata.xml +protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) +protoc-jar: cached: /tmp/protocjar.webcache/com/google/protobuf/protoc/maven-metadata.xml + + + + + + | => firrtl / Protobuf / protobufGenerate 0s + | => firrtl / Antlr4 / antlr4Generate 0s +protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/3.5.1/protoc-3.5.1-linux-x86_64.exe + + + + + + | => firrtl / Protobuf / protobufGenerate 0s + | => firrtl / Antlr4 / antlr4Generate 0s +protoc-jar: saved: /tmp/protocjar.webcache/com/google/protobuf/protoc/3.5.1/protoc-3.5.1-linux-x86_64.exe +protoc-jar: executing: [/tmp/protocjar14928688499957470691/bin/protoc.exe, -I/home/riscvuser/chipyard/tools/firrtl/src/main/proto, -I/home/riscvuser/chipyard/tools/firrtl/target/protobuf_external, --java_out=/home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main, /home/riscvuser/chipyard/tools/firrtl/src/main/proto/firrtl.proto] + + + + + + | => firrtl / Protobuf / protobufGenerate 0s + | => firrtl / Antlr4 / antlr4Generate 0s +[info] Compiling protobuf + + + + + + | => firrtl / Protobuf / protobufGenerate 0s + | => firrtl / Antlr4 / antlr4Generate 0s +[info] Protoc target directory: /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main + + + + + + | => firrtl / Protobuf / protobufGenerate 0s + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + + | => firrtl / Antlr4 / antlr4Generate 0s + + + + + + | => firrtl / Compile / managedSourcePaths / outputFileStamps 0s +[info] Compiling 191 Scala sources and 5 Java sources to /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/classes ... + + + + + + | => firrtl / Compile / managedSourcePaths / outputFileStamps 0s + + + + + + + | => firrtl / Compile / compileIncremental 0s +https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? + 0.0% [ ] 0 B (0 B / s) +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.11. Compiling... + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 0s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 1s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 2s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 3s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 4s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 5s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 6s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 7s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 8s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s +[info]  Compilation completed in 9.291s. + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 9s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 10s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 11s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 12s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 13s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 14s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 15s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 16s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 17s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 18s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 19s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 20s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 21s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 22s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 23s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 24s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 25s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 26s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 27s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 28s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 29s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 30s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Visitor.scala:155:27: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following input: (_, _) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  val lower = (ctx.lowerBound.getText, ctx.boundValue(0).getText) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Visitor.scala:160:27: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following input: (_, _) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  val upper = (ctx.upperBound.getText, ctx.boundValue(1).getText) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Annotation.scala:64:57: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following inputs: CircuitName(_), CompleteTarget(), ComponentName(_, _), GenericTarget(_, _, _), ModuleName(_, _) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ret.map(_.map(newT => Target.convertTarget2Named(newT: @unchecked) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:231:11: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following input: (None, None) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  (getRef, getInstanceOf) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:457:41: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following inputs: ("", Clock), ("", Init), ("", Instance(_)), ("", OfModule(_)), ("", Reset), (_, Clock), (_, Init), (_, Instance(_)), (_, OfModule(_)), (_, Ref(_)), (_, Reset) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  val name = tokens.foldLeft(""){ + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:594:29: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following inputs: Clock, Init, Instance(_), OfModule(_), Reset + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  val headType = tokens.head match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/ir/IR.scala:724:33: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following inputs: (??, None), (Closed(_), None), (Open(_), None), (_, None), (_, Some(_)) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  def max: Option[BigDecimal] = (upper, precision) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/CInferMDir.scala:21:42: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn] It would fail on the following inputs: (MInfer, _), (MPortDir(), _), (MRead, _), (MReadWrite, _), (MWrite, _), (_, MInfer), (_, MPortDir()), (_, MRead), (_, MReadWrite), (_, MWrite), (_, _) + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  case Some(p) => mports(e.name) = (p, dir) match { + + + + + + | => firrtl / Compile / compileIncremental 31s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 31s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/InferWidths.scala:80:104: Exhaustivity analysis reached max recursion depth, not all missing cases are reported. + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] (Please try with scalac -Ypatmat-exhaust-depth 40 or -Ypatmat-exhaust-depth off.) + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  private def addTypeConstraints(r1: ReferenceTarget, r2: ReferenceTarget)(t1: Type, t2: Type): Unit = (t1,t2) match { + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:137:63: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] It would fail on the following input: UNRECOGNIZED + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  def convert(ruw: ReadUnderWrite): ir.ReadUnderWrite.Value = ruw match { + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:159:76: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn] It would fail on the following inputs: MEMORY_PORT_DIRECTION_UNKNOWN, UNRECOGNIZED + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  def convert(mportdir: Firrtl.Statement.MemoryPort.Direction): MPortDir = mportdir match { + + + + + + | => firrtl / Compile / compileIncremental 32s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 32s + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:275:5: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] It would fail on the following inputs: PORT_DIRECTION_UNKNOWN, UNRECOGNIZED + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  dir match { + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/transforms/RemoveKeywordCollisions.scala:47:59: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] It would fail on the following inputs: Some(CompleteTarget()), Some(GenericTarget(_, _, _)) + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  def wrap(name: String, scope: Option[Named]): Named = scope match { + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/transforms/SimplifyMems.scala:43:67: match may not be exhaustive. + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn] It would fail on the following inputs: Field(_, (x: firrtl.ir.Orientation forSome x not in Flip), (x: firrtl.ir.Type forSome x not in firrtl.ir.BundleType)), Field(_, (x: firrtl.ir.Orientation forSome x not in Flip), BundleType(_)), Field(_, Flip, (x: firrtl.ir.Type forSome x not in firrtl.ir.BundleType)) + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  val adapterConnects = memType(simpleMemDecl).fields.flatMap { + + + + + + | => firrtl / Compile / compileIncremental 33s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 33s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 34s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 35s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:37:11: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  form: CircuitForm, + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:89:37: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  def apply(circuit: Circuit, form: CircuitForm): CircuitState = apply(circuit, form, Seq()) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:90:37: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  def apply(circuit: Circuit, form: CircuitForm, annotations: AnnotationSeq): CircuitState = + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:93:31: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  new CircuitState(circuit, UnknownForm, annotations, None) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:226:60: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  override def prerequisites: Seq[Dependency[Transform]] = inputForm match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:227:10: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case C => Nil + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:228:10: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case H => Forms.Deduped + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:229:10: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case M => Forms.MidForm + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:230:10: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case L => Forms.LowForm + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:231:10: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case U => Nil + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:234:68: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  override def optionalPrerequisites: Seq[Dependency[Transform]] = inputForm match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:235:10: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case L => Forms.LowFormOptimized + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:245:20: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  val emitters = inputForm match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:246:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case C => Dependency[ChirrtlEmitter] :: Dependency[HighFirrtlEmitter] :: Dependency[MiddleFirrtlEmitter] :: lowEmitters + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:247:12: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case H => Dependency[HighFirrtlEmitter] :: Dependency[MiddleFirrtlEmitter] :: lowEmitters + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:248:12: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case M => Dependency[MiddleFirrtlEmitter] :: lowEmitters + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:249:12: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case L => lowEmitters + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:250:12: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case U => Nil + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:255:5: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  inputForm match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:256:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case C => (fullCompilerSet ++ emitters - selfDep).toSeq + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:257:12: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case H => (fullCompilerSet -- Forms.Deduped ++ emitters - selfDep).toSeq + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:258:12: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case M => (fullCompilerSet -- Forms.MidForm ++ emitters - selfDep).toSeq + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:259:12: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case L => (fullCompilerSet -- Forms.LowFormOptimized ++ emitters - selfDep).toSeq + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:260:12: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case U => Nil + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:268:6: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  (inputForm, outputForm) match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:268:17: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  (inputForm, outputForm) match { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:269:13: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (U, _) | (_, U) => true // invalidate everything + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:269:25: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (U, _) | (_, U) => true // invalidate everything + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:271:16: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (_, C) => true // invalidate everything + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:272:16: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (_, H) => highOutputInvalidates(Dependency.fromTransform(a)) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:273:16: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (_, M) => midOutputInvalidates(Dependency.fromTransform(a)) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:274:16: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  case (_, L) => false // invalidate nothing + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:378:31: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  CircuitState(ret.circuit, outputForm, ret.annotations, ret.renames) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:112:43: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] sealed abstract class FirrtlEmitter(form: CircuitForm) extends Transform with Emitter { + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:162:44: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] class ChirrtlEmitter extends FirrtlEmitter(ChirrtlForm) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:163:47: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] class HighFirrtlEmitter extends FirrtlEmitter(HighForm) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:164:49: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] class MiddleFirrtlEmitter extends FirrtlEmitter(MidForm) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:165:46: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] class LowFirrtlEmitter extends FirrtlEmitter(LowForm) + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:181:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  def inputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:182:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  def outputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 36s + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/JsonProtocol.scala:47:62: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  Class.forName(s).asInstanceOf[Class[_ <: Transform]].newInstance() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/graph/DiGraph.scala:223:29: class Stack in package mutable is deprecated (since 2.12.0): Stack is an inelegant and potentially poorly-performing wrapper around List. Use a List assigned to a var instead. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val stack = new mutable.Stack[T] + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/graph/DiGraph.scala:239:33: class Stack in package mutable is deprecated (since 2.12.0): Stack is an inelegant and potentially poorly-performing wrapper around List. Use a List assigned to a var instead. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val callStack = new mutable.Stack[StrongConnectFrame[T]] + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/options/Phase.scala:58:63: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  private def safeConstruct[A](a: Class[_ <: A]): A = try { a.newInstance } catch { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/options/Phase.scala:172:52: method dependents in trait DependencyAPI is deprecated (since FIRRTL 1.3): Due to confusion, 'dependents' is being renamed to 'optionalPrerequisiteOf'. Override the latter instead. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  def optionalPrerequisiteOf: Seq[Dependency[A]] = dependents + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/Inline.scala:310:31: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  CircuitState(flatCircuit, LowForm, annos, Some(renames)) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/LowerTypes.scala:292:26: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  CircuitState(result, outputForm, state.annotations, Some(renames)) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/ZeroWidth.scala:194:26: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  CircuitState(result, outputForm, state.annotations, Some(renames)) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockList.scala:21:23: method getChildrenMap in object WiringUtils is deprecated (since 1.1.1): Use DiGraph/InstanceGraph + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val childrenMap = getChildrenMap(c) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockList.scala:23:20: method getLineage in object WiringUtils is deprecated (since 1.1.1): Use DiGraph/InstanceGraph + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val lineages = getLineage(childrenMap, top) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockListUtils.scala:15:61: class Lineage in package wiring is deprecated (since 1.1.1): Use DiGraph/InstanceGraph + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  def getSourceList(moduleMap: Map[String, DefModule])(lin: Lineage): Seq[String] = { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockListUtils.scala:33:90: class Lineage in package wiring is deprecated (since 1.1.1): Use DiGraph/InstanceGraph + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  def getOrigins(connects: Connects, me: String, moduleMap: Map[String, DefModule])(lin: Lineage): Map[String, String] = { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemMacros.scala:263:68: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case _ => throwInternalError(s"execute: getMyAnnotations - ${getMyAnnotations(state)}") + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemTransform.scala:103:43: class SimpleTransform in package memlib is deprecated (since FIRRTL 1.3): Migrate to a transform that does not take arguments. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] class SimpleMidTransform(p: Pass) extends SimpleTransform(p, MidForm) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemTransform.scala:103:62: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] class SimpleMidTransform(p: Pass) extends SimpleTransform(p, MidForm) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:143:41: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] case class CompilerAnnotation(compiler: Compiler = new VerilogCompiler()) extends NoTargetAnnotation with FirrtlOption + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:143:56: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] case class CompilerAnnotation(compiler: Compiler = new VerilogCompiler()) extends NoTargetAnnotation with FirrtlOption + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:149:31: class NoneCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} or stage.transforms.Compiler(Seq(Dependency[ChirrtlEmitter])) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "none" => new NoneCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:150:31: class HighFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Seq(Dependency[HighFirrtlEmitter])) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "high" => new HighFirrtlCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:151:31: class LowFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[LowFirrtlEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "low" => new LowFirrtlCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:152:31: class MiddleFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[MiddleFirrtlEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "middle" => new MiddleFirrtlCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:153:31: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "verilog" => new VerilogCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:154:31: class MinimumVerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[MinimumVerilogEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "mverilog" => new MinimumVerilogCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:155:31: class SystemVerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[SystemVerilogEmitter]) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case "sverilog" => new SystemVerilogCompiler() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:185:78: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val tx = Class.forName(txName).asInstanceOf[Class[_ <: Transform]].newInstance() + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlOptions.scala:16:29: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val compiler: Compiler = CompilerAnnotation().compiler, + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlOptions.scala:22:27: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  compiler: Compiler = compiler, + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:39:70: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  private [firrtl] implicit object FirrtlExecutionResultView extends OptionsView[FirrtlExecutionResult] { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:43:39: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  def view(options: AnnotationSeq): FirrtlExecutionResult = { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:50:22: class FirrtlExecutionFailure in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case None => FirrtlExecutionFailure("No circuit found in AnnotationSeq!") + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:51:25: object FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  case Some(a) => FirrtlExecutionSuccess( + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:56:35: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  form = fopts.compiler.outputForm, + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/AddImplicitEmitter.scala:20:38: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  val compiler = annos.collectFirst{ case CompilerAnnotation(a) => a } + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:17:13: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  compiler: Option[FirrtlCompiler] ) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:13:28: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] private [stage] case class CompilerRun( + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:23:13: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  compiler: Option[FirrtlCompiler] = None) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:20:28: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] private [stage] case class Defaults( + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:63:43: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  CompilerRun(CircuitState(circuit, ChirrtlForm, d.annotations, None), None, d.transforms, d.compiler) +=: c + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:116:39: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  private def compilerToTransforms(a: FirrtlCompiler): Seq[TransformDependency] = a match { + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/CatchCustomTransformExceptions.scala:21:15: method getPackage in class Package is deprecated: see corresponding Javadoc for more information. + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  Package.getPackage(pack.getName.split('.').head) + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/CatchCustomTransformExceptions.scala:24:34: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  getTopPackage(p) != firrtl.Driver.getClass.getPackage + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/WrappedTransform.scala:26:39: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  override def inputForm = underlying.inputForm + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/WrappedTransform.scala:27:40: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  override def outputForm = underlying.outputForm + + + + + + | => firrtl / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 37s + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/logger/LoggerOptions.scala:33:47: method logToFile in class LoggerOptions is deprecated (since 1.2): logToFile was removed, use logFileName.nonEmpty + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  def getLogFileName(): Option[String] = if (!logToFile) None else logFileName.orElse(Some("a.log")) + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala:72:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  def inputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala:74:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  def outputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala:98:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  def inputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala:99:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  def outputForm = LowForm + + + + + + | => firrtl / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 38s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 39s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 40s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 41s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 42s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 43s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 44s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 45s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 46s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 47s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 48s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 49s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s +[warn] 102 warnings found + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s +[warn] bootstrap class path not set in conjunction with -source 8 + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 50s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 51s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 52s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 53s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 54s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 55s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 56s +[info] /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java: /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java uses or overrides a deprecated API. + + + + + + | => firrtl / Compile / compileIncremental 56s +[info] /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java: Recompile with -Xlint:deprecation for details. + + + + + + | => firrtl / Compile / compileIncremental 56s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 57s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compileIncremental 58s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / Compile / compile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => firrtl / Compile / compile 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 0s + + + + + + | => firrtl / assembly / assembledMappings 1s + + + + + + | => firrtl / assembly / assembledMappings 1s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 0s +[info] Strategy 'discard' was applied to 17 files (Run the task at debug level to see details) + + + + + + | => firrtl / assembly 0s +[info] Strategy 'rename' was applied to 4 files (Run the task at debug level to see details) + + + + + + | => firrtl / assembly 0s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 1s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 2s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + | => firrtl / assembly 3s + + + + + + +[success] Total time: 67 s (01:07), completed Dec 23, 2020, 3:40:35 AM +make[1]: Leaving directory '/home/riscvuser/chipyard/tools/firrtl' +mkdir -p /home/riscvuser/chipyard/lib +cp -p /home/riscvuser/chipyard/tools/firrtl/utils/bin/firrtl.jar /home/riscvuser/chipyard/lib/firrtl.jar +touch /home/riscvuser/chipyard/lib/firrtl.jar +cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project utilities" "runMain utilities.GenerateSimFiles -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -sim verilator" +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +Getting org.scala-sbt sbt 1.3.2 (this may take some time)... +downloading https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#sbt;1.3.2!sbt.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/main_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#main_2.12;1.3.2!main_2.12.jar (107ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.12-1.3.1.jar ... + [SUCCESSFUL ] org.scala-sbt#io_2.12;1.3.1!io_2.12.jar (118ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/logic_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#logic_2.12;1.3.2!logic_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/actions_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#actions_2.12;1.3.2!actions_2.12.jar (24ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.2/main-settings_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#main-settings_2.12;1.3.2!main-settings_2.12.jar (38ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#run_2.12;1.3.2!run_2.12.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/command_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#command_2.12;1.3.2!command_2.12.jar (29ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.2/collections_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#collections_2.12;1.3.2!collections_2.12.jar (29ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.2/scripted-sbt-redux_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#scripted-sbt-redux_2.12;1.3.2!scripted-sbt-redux_2.12.jar (20ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.2/scripted-plugin_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#scripted-plugin_2.12;1.3.2!scripted-plugin_2.12.jar (100ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.2/zinc-lm-integration_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-lm-integration_2.12;1.3.2!zinc-lm-integration_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC3-4/lm-coursier-shaded_2.12-2.0.0-RC3-4.jar ... + [SUCCESSFUL ] io.get-coursier#lm-coursier-shaded_2.12;2.0.0-RC3-4!lm-coursier-shaded_2.12.jar (141ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.0/util-logging_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-logging_2.12;1.3.0!util-logging_2.12.jar (22ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.0/librarymanagement-core_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#librarymanagement-core_2.12;1.3.0!librarymanagement-core_2.12.jar (29ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.0/librarymanagement-ivy_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#librarymanagement-ivy_2.12;1.3.0!librarymanagement-ivy_2.12.jar (28ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.0/compiler-interface-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#compiler-interface;1.3.0!compiler-interface.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.0/zinc-compile_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-compile_2.12;1.3.0!zinc-compile_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.0/util-relation_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-relation_2.12;1.3.0!util-relation_2.12.jar (15ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.0/util-position_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-position_2.12;1.3.0!util-position_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.2/completion_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#completion_2.12;1.3.2!completion_2.12.jar (36ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.2/task-system_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#task-system_2.12;1.3.2!task-system_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/tasks_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#tasks_2.12;1.3.2!tasks_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/testing_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#testing_2.12;1.3.2!testing_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.0/util-tracking_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-tracking_2.12;1.3.0!util-tracking_2.12.jar (70ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.0/zinc-classpath_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-classpath_2.12;1.3.0!zinc-classpath_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.0/zinc-apiinfo_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-apiinfo_2.12;1.3.0!zinc-apiinfo_2.12.jar (48ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zinc_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc_2.12;1.3.0!zinc_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.0/util-control_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-control_2.12;1.3.0!util-control_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-interface;1.3.0!util-interface.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.0/util-cache_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-cache_2.12;1.3.0!util-cache_2.12.jar (18ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/test-agent-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#test-agent;1.3.2!test-agent.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.0/compiler-bridge_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#compiler-bridge_2.12;1.3.0!compiler-bridge_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.0/zinc-classfile_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-classfile_2.12;1.3.0!zinc-classfile_2.12.jar (17ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.0/zinc-core_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-core_2.12;1.3.0!zinc-core_2.12.jar (23ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.0/zinc-persist_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-persist_2.12;1.3.0!zinc-persist_2.12.jar (39ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.0/zinc-compile-core_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#zinc-compile-core_2.12;1.3.0!zinc-compile-core_2.12.jar (16ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar ... + [SUCCESSFUL ] org.scala-sbt#sbinary_2.12;0.4.4!sbinary_2.12.jar (21ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.2/core-macros_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#core-macros_2.12;1.3.2!core-macros_2.12.jar (19ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2/protocol_2.12-1.3.2.jar ... + [SUCCESSFUL ] org.scala-sbt#protocol_2.12;1.3.2!protocol_2.12.jar (23ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.0/util-scripted_2.12-1.3.0.jar ... + [SUCCESSFUL ] org.scala-sbt#util-scripted_2.12;1.3.0!util-scripted_2.12.jar (65ms) +downloading https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832/ivy-2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832.jar ... + [SUCCESSFUL ] org.scala-sbt.ivy#ivy;2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832!ivy.jar (33ms) +:: retrieving :: org.scala-sbt#boot-app + confs: [default] + 81 artifacts copied, 0 already retrieved (37984kB/94ms) +[info] Loading settings for project chipyard-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/project + + + + + + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s +[info] Updating  + + + + + + | => chipyard-build / update 0s +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-site_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/gseitz/sbt-protobuf_2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 0s +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 100.0% [##########] 3.1 KiB (23.0 KiB / s) +https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? + 100.0% [##########] 2.6 KiB (45.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 100.0% [##########] 4.5 KiB (34.0 KiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 100.0% [##########] 2.9 KiB (21.9 KiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-ghpages_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 100.0% [##########] 2.9 KiB (100.3 KiB / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 100.0% [##########] 1.9 KiB (64.1 KiB / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 1s + + + + + + | => chipyard-build / update 1s + + + + + + | => chipyard-build / update 1s + + + + + + | => chipyard-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 1s + + + + + + | => chipyard-build / update 1s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 1s + + + + + + | => chipyard-build / update 2s + + + + + + | => chipyard-build / update 2s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s + + + + + + | => chipyard-build / update 2s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 2s + + + + + + | => chipyard-build / update 3s + + + + + + | => chipyard-build / update 3s + + + + + + | => chipyard-build / update 3s +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s + + + + + + | => chipyard-build / update 3s +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 2.6 KiB (5.8 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 2.8 KiB (6.9 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 2.8 KiB (6.6 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 1.5 KiB (6.1 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 1.5 KiB (14.1 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 1.7 KiB (5.3 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.7 KiB (13.9 KiB / s) +https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 3s +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 4s +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 1.4 KiB (11.7 KiB / s) +https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 4s + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 5s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 1.9 KiB (16.8 KiB / s) + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s +https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? + 100.0% [##########] 1.4 KiB (49.6 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-? + 100.0% [##########] 1.8 KiB (46.7 KiB / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? + 100.0% [##########] 2.1 KiB (96.5 KiB / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? + 100.0% [##########] 22.0 KiB (549.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? + 100.0% [##########] 3.8 KiB (291.2 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 100.0% [##########] 2.9 KiB (49.0 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? + 100.0% [##########] 2.1 KiB (36.1 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? + 100.0% [##########] 2.2 KiB (138.7 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? + 100.0% [##########] 1.9 KiB (64.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 100.0% [##########] 11.2 KiB (587.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? + 100.0% [##########] 3.8 KiB (111.3 KiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? + 100.0% [##########] 5.5 KiB (323.1 KiB / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 100.0% [##########] 2.7 KiB (99.9 KiB / s) +https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.pom + 100.0% [##########] 1.9 KiB (116.2 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? + 100.0% [##########] 2.1 KiB (84.5 KiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 9.3 KiB (356.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 100.0% [##########] 7.8 KiB (279.6 KiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 100.0% [##########] 2.2 KiB (78.0 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 100.0% [##########] 2.3 KiB (19.7 KiB / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 5s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-git? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 6s + + + + + + | => chipyard-build / update 7s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-git? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 7s + + + + + + | => chipyard-build / update 7s + + + + + + | => chipyard-build / update 7s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 7s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 100.0% [##########] 2.0 KiB (16.9 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 100.0% [##########] 1.8 KiB (15.5 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.7 KiB (14.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 54.6 KiB (4.9 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 5.0% [ ] 1.3 KiB (121.7 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 7s +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 54.6 KiB (1.8 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 26.8 KiB (892.3 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4? + 100.0% [##########] 11.5 KiB (384.2 KiB / s) +https://repo1.maven.org/maven2/org/apache/apache/13/apache-13.pom + 100.0% [##########] 13.6 KiB (852.9 KiB / s) + + + + + + | => chipyard-build / update 7s +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.53/jsch-0.1.5? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.53/jsch-0.1.5? + 100.0% [##########] 3.2 KiB (150.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 100.0% [##########] 4.7 KiB (222.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 100.0% [##########] 5.9 KiB (488.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 100.0% [##########] 3.1 KiB (142.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 100.0% [##########] 4.9 KiB (222.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 100.0% [##########] 3.0 KiB (250.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 20.9% [## ] 1.3 KiB (111.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? + 20.5% [## ] 1.3 KiB (121.7 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 100.0% [##########] 2.2 KiB (110.3 KiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? + 100.0% [##########] 1.8 KiB (90.8 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 100.0% [##########] 8.1 KiB (197.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? + 100.0% [##########] 6.5 KiB (217.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? + 100.0% [##########] 6.0 KiB (463.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 100.0% [##########] 3.0 KiB (93.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 100.0% [##########] 6.4 KiB (200.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? + 100.0% [##########] 4.8 KiB (239.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? + 100.0% [##########] 4.4 KiB (220.0 KiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? + 100.0% [##########] 4.1 KiB (345.4 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? + 100.0% [##########] 2.6 KiB (202.0 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 100.0% [##########] 2.4 KiB (219.8 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 100.0% [##########] 4.2 KiB (303.0 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 100.0% [##########] 2.4 KiB (83.4 KiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? + 100.0% [##########] 5.1 KiB (212.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 100.0% [##########] 4.3 KiB (305.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? + 100.0% [##########] 4.3 KiB (177.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? + 100.0% [##########] 3.8 KiB (250.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 100.0% [##########] 4.7 KiB (293.7 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? + 100.0% [##########] 2.0 KiB (75.7 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.pom + 100.0% [##########] 1.9 KiB (75.5 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 7s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 7s + + + + + + | => chipyard-build / update 7s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s +https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 8s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 8s + + + + + + | => chipyard-build / update 9s + + + + + + | => chipyard-build / update 9s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 9s + + + + + + | => chipyard-build / update 9s + + + + + + | => chipyard-build / update 9s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 9s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.9 KiB (16.8 KiB / s) + + + + + + | => chipyard-build / update 9s +https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/6.0/asm-pa? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/1.7.21/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? + 100.0% [##########] 15.6 KiB (648.8 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/1.7.21/? + 100.0% [##########] 3.4 KiB (143.3 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/6.0/asm-pa? + 100.0% [##########] 5.4 KiB (223.5 KiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/project? + 100.0% [##########] 26.6 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-parent/1.7.21/jru? + 100.0% [##########] 23.6 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom + 100.0% [##########] 9.3 KiB (464.3 KiB / s) + + + + + + | => chipyard-build / update 9s +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 100.0% [##########] 2.0 KiB (109.9 KiB / s) +https://repo1.maven.org/maven2/commons-logging/commons-logging/1? + 100.0% [##########] 17.9 KiB (995.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? + 100.0% [##########] 3.8 KiB (212.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 100.0% [##########] 3.3 KiB (367.0 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? + 100.0% [##########] 3.5 KiB (192.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 100.0% [##########] 2.9 KiB (162.4 KiB / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? + 100.0% [##########] 3.2 KiB (85.4 KiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? + 100.0% [##########] 4.5 KiB (224.5 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? + 100.0% [##########] 2.0 KiB (203.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 100.0% [##########] 4.8 KiB (227.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 100.0% [##########] 3.5 KiB (124.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? + 100.0% [##########] 3.2 KiB (323.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? + 100.0% [##########] 4.8 KiB (252.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 100.0% [##########] 4.8 KiB (251.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 100.0% [##########] 2.9 KiB (74.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 100.0% [##########] 3.9 KiB (261.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 100.0% [##########] 4.1 KiB (314.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? + 100.0% [##########] 5.4 KiB (300.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? + 100.0% [##########] 4.3 KiB (143.0 KiB / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 100.0% [##########] 7.7 KiB (264.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 36.8% [### ] 1.3 KiB (133.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 9s +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? + 100.0% [##########] 4.3 KiB (157.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/? + 100.0% [##########] 4.7 KiB (335.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? + 100.0% [##########] 3.1 KiB (208.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 100.0% [##########] 3.6 KiB (129.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? + 100.0% [##########] 12.9 KiB (990.7 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 49.0 KiB (2.7 MiB / s) + + + + + + | => chipyard-build / update 9s +https://repo1.maven.org/maven2/com/typesafe/config/1.3.1/config-? + 100.0% [##########] 1.8 KiB (101.1 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.1.? + 100.0% [##########] 2.5 KiB (279.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 100.0% [##########] 3.0 KiB (167.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 100.0% [##########] 5.0 KiB (265.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 100.0% [##########] 3.9 KiB (206.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? + 100.0% [##########] 3.1 KiB (389.0 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 4.9 KiB (197.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 21.7 KiB (555.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? + 100.0% [##########] 3.1 KiB (111.2 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 100.0% [##########] 3.9 KiB (100.4 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? + 100.0% [##########] 8.0 KiB (331.5 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-parent? + 100.0% [##########] 61.6 KiB (2.5 MiB / s) + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/org/apache/apache/16/apache-16.pom + 100.0% [##########] 15.0 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/25/oss-p? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/25/oss-p? + 100.0% [##########] 18.9 KiB (611.0 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? + 100.0% [##########] 2.0 KiB (93.0 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? + 100.0% [##########] 2.0 KiB (92.7 KiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? + 100.0% [##########] 1.7 KiB (76.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? + 100.0% [##########] 2.5 KiB (114.5 KiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/5.0.3/asm-? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/5.0.3/asm-? + 100.0% [##########] 5.4 KiB (206.4 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? + 100.0% [##########] 1.8 KiB (165.0 KiB / s) +[info] Resolved dependencies + + + + + + | => chipyard-build / update 10s + + + + + + | => chipyard-build / update 10s + + + + + + | => chipyard-build / update 10s +[info] Fetching artifacts of  + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? + 100.0% [##########] 48.7 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 76.5% [####### ] 129.9 KiB (9.8 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? + 100.0% [##########] 137.1 KiB (13.4 MiB / s) +https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? + 100.0% [##########] 169.7 KiB (5.3 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 7.4% [ ] 230.3 KiB (9.0 MiB / s) +https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? + 100.0% [##########] 1.1 MiB (52.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? + 100.0% [##########] 16.6 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar + 100.0% [##########] 97.2 KiB (3.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? + 72.9% [####### ] 421.6 KiB (16.5 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 17.8% [# ] 550.8 KiB (11.7 MiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? + 100.0% [##########] 309.7 KiB (15.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? + 100.0% [##########] 578.1 KiB (12.8 MiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? + 100.0% [##########] 184.0 KiB (18.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 49.0% [#### ] 304.0 KiB (12.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 37.4% [### ] 229.6 KiB (14.9 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 34.1% [### ] 1.0 MiB (15.7 MiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? + 100.0% [##########] 8.1 KiB (213.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? + 100.0% [##########] 614.1 KiB (17.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? + 100.0% [##########] 620.8 KiB (13.5 MiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? + 100.0% [##########] 184.0 KiB (5.8 MiB / s) +https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? + 100.0% [##########] 267.0 KiB (13.0 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 56.7% [##### ] 1.7 MiB (20.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? + 45.1% [#### ] 93.7 KiB (5.4 MiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? + 100.0% [##########] 92.1 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? + 100.0% [##########] 76.4 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? + 100.0% [##########] 208.0 KiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? + 100.0% [##########] 25.9 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 89.7% [######## ] 2.7 MiB (25.6 MiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 65.9% [###### ] 57.6 KiB (710.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 49.7% [#### ] 48.0 KiB (4.7 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? + 100.0% [##########] 3.0 MiB (24.2 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? + 100.0% [##########] 75.6 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? + 100.0% [##########] 78.1 KiB (5.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? + 100.0% [##########] 83.6 KiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? + 100.0% [##########] 22.9 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? + 100.0% [##########] 96.5 KiB (3.1 MiB / s) +https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? + 100.0% [##########] 87.3 KiB (864.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? + 100.0% [##########] 122.2 KiB (5.4 MiB / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? + 100.0% [##########] 50.3 KiB (4.1 MiB / s) +https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? + 100.0% [##########] 23.8 KiB (989.6 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 69.2% [###### ] 293.6 KiB (11.9 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 2.1% [ ] 198.7 KiB (12.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? + 100.0% [##########] 424.5 KiB (9.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? + 100.0% [##########] 1.3 KiB (89.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? + 100.0% [##########] 76.1 KiB (3.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 72.5% [####### ] 240.0 KiB (15.6 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 8.1% [ ] 758.7 KiB (20.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? + 100.0% [##########] 330.9 KiB (9.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 44.7% [#### ] 13.1 KiB (121.7 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 16.3% [# ] 1.5 MiB (26.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? + 100.0% [##########] 29.4 KiB (229.5 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 27.1% [## ] 2.5 MiB (33.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 15.4% [# ] 13.1 KiB (115.3 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 86.7% [######## ] 13.1 KiB (112.3 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 47.3% [#### ] 40.5 KiB (302.1 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 41.4% [#### ] 3.8 MiB (39.9 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 85.5 KiB (555.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 15.1 KiB (110.6 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 61.2% [###### ] 5.6 MiB (48.7 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 83.5% [######## ] 575.4 KiB (20.8 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 80.2% [######## ] 7.3 MiB (54.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 42.3% [#### ] 26.8 KiB (253.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 100.0% [##########] 3.6 KiB (30.9 KiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? + 100.0% [##########] 689.0 KiB (14.0 MiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 100.0% [##########] 9.1 MiB (58.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 63.5 KiB (499.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? + 31.3% [### ] 64.0 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? + 27.0% [## ] 186.5 KiB (11.4 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 63.5 KiB (434.6 KiB / s) +https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? + 100.0% [##########] 9.1 MiB (52.3 MiB / s) +https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? + 100.0% [##########] 273.9 KiB (14.1 MiB / s) +https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? + 100.0% [##########] 690.8 KiB (18.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? + 100.0% [##########] 204.4 KiB (6.0 MiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 30.4% [### ] 96.0 KiB (6.7 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 12.8% [# ] 962.9 KiB (47.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 100.0% [##########] 487 B (3.9 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? + 100.0% [##########] 316.3 KiB (9.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? + 100.0% [##########] 14.2 KiB (887.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? + 100.0% [##########] 63.2 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? + 100.0% [##########] 29.0 KiB (1.0 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 34.9% [### ] 2.6 MiB (64.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 0.8% [ ] 192.0 KiB (11.7 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? + 100.0% [##########] 203.0 KiB (6.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? + 100.0% [##########] 89.7 KiB (3.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? + 100.0% [##########] 608.6 KiB (23.8 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 49.6% [#### ] 3.6 MiB (60.7 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 2.6% [ ] 607.0 KiB (16.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? + 100.0% [##########] 150.2 KiB (7.0 MiB / s) +https://repo1.maven.org/maven2/commons-logging/commons-logging/1? + 100.0% [##########] 60.6 KiB (4.2 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? + 100.0% [##########] 20.0 KiB (739.4 KiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 70.0% [###### ] 5.1 MiB (65.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 5.0% [ ] 1.1 MiB (20.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? + 100.0% [##########] 182.2 KiB (7.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? + 100.0% [##########] 48.4 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 90.6% [######### ] 6.7 MiB (67.3 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 7.1% [ ] 1.6 MiB (21.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? + 100.0% [##########] 74.3 KiB (2.9 MiB / s) +https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? + 100.0% [##########] 7.4 MiB (61.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? + 100.0% [##########] 773.9 KiB (26.1 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 9.9% [ ] 2.2 MiB (23.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.jar + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.jar + 100.0% [##########] 93.0 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/? + 100.0% [##########] 200.4 KiB (13.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? + 100.0% [##########] 64.2 KiB (2.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? + 100.0% [##########] 33.5 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 69.3% [###### ] 256.0 KiB (13.2 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 15.6% [# ] 3.5 MiB (30.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-compre? + 100.0% [##########] 369.4 KiB (9.5 MiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? + 45.4% [#### ] 553.3 KiB (20.8 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 44.3% [#### ] 1.0 MiB (30.5 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 18.2% [# ] 4.1 MiB (30.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? + 100.0% [##########] 110.8 KiB (3.9 MiB / s) +https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? + 100.0% [##########] 1.2 MiB (25.9 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 89.6% [######## ] 2.0 MiB (38.4 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 41.3% [#### ] 67.8 KiB (510.0 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 20.3% [## ] 4.6 MiB (29.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 164.3 KiB (1.0 MiB / s) +https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? + 100.0% [##########] 2.3 MiB (31.1 MiB / s) +https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.1.? + 100.0% [##########] 71.6 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 100.0% [##########] 222.0 KiB (8.7 MiB / s) +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? + 86.9% [######## ] 240.0 KiB (18.0 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 26.0% [## ] 5.9 MiB (33.4 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 15.6% [# ] 101.0 KiB (390.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 10s +https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? + 100.0% [##########] 276.2 KiB (8.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? + 100.0% [##########] 73.3 KiB (4.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 100.0% [##########] 272.4 KiB (11.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 88.3% [######## ] 570.3 KiB (2.0 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 32.2% [### ] 7.3 MiB (37.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? + 100.0% [##########] 645.8 KiB (2.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? + 100.0% [##########] 144.6 KiB (7.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? + 100.0% [##########] 272.4 KiB (6.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? + 65.0% [###### ] 281.3 KiB (22.9 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 40.0% [#### ] 9.0 MiB (42.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? + 100.0% [##########] 42.3 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? + 100.0% [##########] 271.2 KiB (16.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? + 100.0% [##########] 432.9 KiB (13.2 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 47.7% [#### ] 10.8 MiB (45.8 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 246.6 KiB (7.8 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? + 100.0% [##########] 279.4 KiB (12.4 MiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 55.6% [##### ] 12.5 MiB (49.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 98.3% [######### ] 118.4 KiB (978.6 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 64.1% [###### ] 14.5 MiB (52.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 7.8% [ ] 192.0 KiB (7.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 11s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 120.4 KiB (854.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? + 100.0% [##########] 44.2 KiB (362.5 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 72.0% [####### ] 16.2 MiB (55.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 24.0% [## ] 591.4 KiB (12.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? + 100.0% [##########] 10.4 KiB (336.4 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 79.9% [####### ] 18.0 MiB (57.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 41.4% [#### ] 1019.7 KiB (15.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 31.1% [### ] 39.1 KiB (308.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 98.6% [######### ] 123.9 KiB (842.8 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 87.7% [######## ] 19.8 MiB (59.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 58.2% [##### ] 1.4 MiB (16.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 98.6% [######### ] 123.9 KiB (741.8 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 95.9% [######### ] 21.6 MiB (61.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 74.4% [####### ] 1.8 MiB (17.0 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 12.8 KiB (103.2 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 125.6 KiB (671.9 KiB / s) +https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? + 100.0% [##########] 22.6 MiB (60.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? + 100.0% [##########] 2.4 MiB (19.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 100.0% [##########] 149.7 KiB (16.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 11s +https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? + 100.0% [##########] 114.5 KiB (3.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? + 100.0% [##########] 12.3 KiB (472.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? + 100.0% [##########] 149.7 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? + 100.0% [##########] 222.3 KiB (9.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? + 100.0% [##########] 357.2 KiB (23.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 65.9% [###### ] 357.6 KiB (20.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 1.9 KiB (14.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? + 100.0% [##########] 357.2 KiB (10.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? + 100.0% [##########] 64.9 KiB (4.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? + 100.0% [##########] 542.7 KiB (15.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 76.5% [####### ] 499.4 KiB (4.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 72.6% [####### ] 1.3 MiB (50.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? + 100.0% [##########] 652.4 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? + 100.0% [##########] 47.0 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? + 100.0% [##########] 1.7 MiB (39.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 100.0% [##########] 30.0 KiB (272.7 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chipyard-build / update 11s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 60.0 KiB (618.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 60.0 KiB (512.7 KiB / s) +[info] Fetched artifacts of  + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s +[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / update 11s + + + + + + | => chipyard-build / Compile / compile / compileOptions 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project chipyardRoot from build.sbt ... +[info] Loading settings for project barstoolsMacros from build.sbt ... +[info] Loading settings for project mdf from build.sbt ... +[info] Loading settings for project gemmini from build.sbt ... +[info] Loading settings for project ariane from build.sbt ... +[info] Loading settings for project boom from build.sbt ... +[info] Loading settings for project hwacha from build.sbt ... +[info] Loading settings for project icenet from build.sbt ... +[info] Loading settings for project testchipip from build.sbt ... +[info] Loading settings for project rocketConfig from build.sbt ... +[info] Loading settings for project hardfloat from build.sbt ... +[info] Loading settings for project chisel_testers from build.sbt ... +[info] Loading settings for project treadle from build.sbt ... +[info] Loading settings for project firrtl_interpreter from build.sbt ... +[info] Loading settings for project chisel from build.sbt ... +[info] Loading settings for project sim-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project + + + + + +[info] Updating  +https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-ghpages_2.12? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 0s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s +https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 0s +https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.7 KiB (5.2 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 1.7 KiB (4.9 KiB / s) +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s +https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s + + + + + + | => sim-build / update 1s +https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 1s +https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 2s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 3.5 KiB (33.0 KiB / s) + + + + + + | => sim-build / update 2s +https://repo1.maven.org/maven2/io/github/jonas/paradox-material-? + 100.0% [##########] 3.1 KiB (172.1 KiB / s) +https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 2s + + + + + + | => sim-build / update 2s + + + + + + | => sim-build / update 2s + + + + + + | => sim-build / update 2s +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? + 0.0% [ ] 0 B (0 B / s) +https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 2s + + + + + + | => sim-build / update 2s + + + + + + | => sim-build / update 2s +https://simplytyped.github.io/repo/releases/com/lightbend/parado? + 0.0% [ ] 0 B (0 B / s) +https://simplytyped.github.io/repo/releases/org/planet42/laika-s? + 0.0% [ ] 0 B (0 B / s) +https://simplytyped.github.io/repo/releases/org/planet42/laika-s? + 0.0% [ ] 0 B (0 B / s) +https://simplytyped.github.io/repo/releases/com/lightbend/parado? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 2s +https://simplytyped.github.io/repo/releases/org/planet42/laika-s? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 100.0% [##########] 1.8 KiB (16.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 2.5 KiB (10.3 KiB / s) + + + + + + | => sim-build / update 3s +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 100.0% [##########] 2.3 KiB (141.0 KiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? + 100.0% [##########] 2.0 KiB (127.6 KiB / s) + + + + + + | => sim-build / update 3s + + + + + + | => sim-build / update 3s +[info] Resolved dependencies + + + + + + | => sim-build / update 3s + + + + + + | => sim-build / update 3s +[info] Fetching artifacts of  + + + + + + | => sim-build / update 3s +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? + 100.0% [##########] 31.8 KiB (1.4 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/github/jonas/paradox-material-? + 100.0% [##########] 123.9 KiB (8.6 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 19.3% [# ] 393.3 KiB (17.5 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 3s +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 54.1% [##### ] 1.1 MiB (25.7 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 100.0% [##########] 2.0 MiB (32.1 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 43.8% [#### ] 13.1 KiB (127.6 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? + 100.0% [##########] 30.0 KiB (243.9 KiB / s) +https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? + 100.0% [##########] 2.0 MiB (24.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 7.7% [ ] 13.1 KiB (66.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 55.9 KiB (465.7 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 23.6% [## ] 40.5 KiB (184.9 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 54.0% [##### ] 92.4 KiB (388.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 171.3 KiB (663.8 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => sim-build / update 3s +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 98.4% [######### ] 15.9 KiB (68.4 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 16.1 KiB (64.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 6.0 KiB (30.0 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 0.0% [ ] 0 B (0 B / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 97.3% [######### ] 24.1 KiB (71.2 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 22.8% [## ] 157.3 KiB (1.2 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 5.8% [ ] 49.1 KiB (146.9 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 846.3 KiB (2.3 MiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? + 100.0% [##########] 24.7 KiB (68.9 KiB / s) +https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? + 100.0% [##########] 690.0 KiB (4.6 MiB / s) +[info] Fetched artifacts of  + + + + + + | => sim-build / update 3s + + + + + + | => sim-build / update 3s + + + + + + | => sim-build / update 4s + + + + + + | => sim-build / update 4s +[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. + + + + + + | => sim-build / update 4s + + + + + + | => sim-build / update 4s + + + + + + | => sim-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project firesim from build.sbt ... +[info] Loading settings for project midas from build.sbt ... +[info] Loading settings for project targetutils from build.sbt ... +[info] Resolving key references (32007 settings) ... +[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[info] Set current project to utilities (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + + + + + + + + + + + | => macros / update 0s + | => core / projectDescriptors 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +[info] Updating  + + + + + + | => macros / update 0s + | => core / projectDescriptors 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.16.2/s? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? + 100.0% [##########] 1.6 KiB (126.2 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? + 100.0% [##########] 2.0 KiB (58.1 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? + 100.0% [##########] 2.0 KiB (59.8 KiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 100.0% [##########] 4.5 KiB (132.2 KiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 100.0% [##########] 5.0 KiB (147.0 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.16.2/s? + 100.0% [##########] 2.7 KiB (79.6 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 100.0% [##########] 4.4 KiB (81.1 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 100.0% [##########] 2.2 KiB (75.8 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 100.0% [##########] 4.4 KiB (152.7 KiB / s) +https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? + 100.0% [##########] 5.3 KiB (407.7 KiB / s) +https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? + 100.0% [##########] 6.4 KiB (221.1 KiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 100.0% [##########] 1.3 KiB (45.1 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 100.0% [##########] 17.0 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 100.0% [##########] 2.1 KiB (73.4 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? + 100.0% [##########] 2.4 KiB (143.8 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? + 100.0% [##########] 1.7 KiB (96.6 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? + 100.0% [##########] 2.5 KiB (195.8 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 100.0% [##########] 2.7 KiB (93.8 KiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => macros / update 0s + | => core / projectDescriptors 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 100.0% [##########] 2.2 KiB (82.9 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 1.8 KiB (180.7 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 5.3 KiB (440.8 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 6.2 KiB (410.6 KiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-functional? + 100.0% [##########] 1.5 KiB (88.5 KiB / s) +https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? + 100.0% [##########] 5.3 KiB (212.7 KiB / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.11/j? + 100.0% [##########] 3.5 KiB (195.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? + 100.0% [##########] 1.9 KiB (92.6 KiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? + 100.0% [##########] 2.1 KiB (74.2 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? + 100.0% [##########] 1.9 KiB (77.9 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? + 100.0% [##########] 3.0 KiB (159.8 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 100.0% [##########] 2.4 KiB (102.6 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bas? + 100.0% [##########] 5.2 KiB (327.7 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? + 100.0% [##########] 7.8 KiB (486.6 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jack? + 100.0% [##########] 2.5 KiB (154.5 KiB / s) +https://repo1.maven.org/maven2/com/github/fommil/netlib/parent/1? + 100.0% [##########] 9.3 KiB (582.4 KiB / s) +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? + 100.0% [##########] 11.2 KiB (657.6 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/27/oss-p? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 100.0% [##########] 10.2 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? + 100.0% [##########] 12.0 KiB (545.7 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/27/oss-p? + 100.0% [##########] 19.2 KiB (871.8 KiB / s) +https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.8? + 100.0% [##########] 14.3 KiB (650.5 KiB / s) + + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 1.9 KiB (99.8 KiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 100.0% [##########] 27.5 KiB (2.4 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? + 100.0% [##########] 2.4 KiB (122.0 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 100.0% [##########] 4.0 KiB (197.5 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? + 100.0% [##########] 1.7 KiB (86.9 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? + 100.0% [##########] 3.0 KiB (276.4 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? + 100.0% [##########] 2.6 KiB (255.5 KiB / s) +https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? + 100.0% [##########] 6.0 KiB (298.6 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? + 100.0% [##########] 1.6 KiB (178.2 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 4.0 KiB (99.1 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? + 100.0% [##########] 7.6 KiB (955.2 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? + 100.0% [##########] 1.6 KiB (55.3 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 1.6 KiB (59.7 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 100.0% [##########] 2.4 KiB (112.6 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/oss-parent/28/oss-p? + 100.0% [##########] 19.5 KiB (1.1 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 100.0% [##########] 4.0 KiB (329.2 KiB / s) +[info] Resolved dependencies + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +[info] Updating  + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? + 100.0% [##########] 2.0 KiB (116.0 KiB / s) +[info] Resolved dependencies + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +[info] Updating  + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? + 100.0% [##########] 2.0 KiB (109.6 KiB / s) +[info] Resolved dependencies + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +[info] Fetching artifacts of  + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? + 52.5% [##### ] 57.6 KiB (5.1 MiB / s) +https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? + 3.5% [ ] 40.2 KiB (3.3 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? + 100.0% [##########] 109.6 KiB (3.5 MiB / s) +https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? + 65.9% [###### ] 105.8 KiB (6.5 MiB / s) +https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? + 49.0% [#### ] 563.1 KiB (17.7 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 45.2% [#### ] 154.0 KiB (9.4 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 7.7% [ ] 101.8 KiB (5.0 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 3.7% [ ] 275.2 KiB (8.7 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 65.0 KiB (5.8 MiB / s) +https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? + 100.0% [##########] 160.6 KiB (4.4 MiB / s) +https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? + 100.0% [##########] 1.1 MiB (22.0 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 340.6 KiB (9.2 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? + 100.0% [##########] 8.1 KiB (537.8 KiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 33.3% [### ] 439.1 KiB (10.7 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 13.7% [# ] 1008.0 KiB (19.3 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 0.0% [ ] 0 B +https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.11/j? + 100.0% [##########] 111.7 KiB (5.7 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? + 100.0% [##########] 35.4 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 65.8% [###### ] 867.6 KiB (14.1 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 42.4% [#### ] 273.1 KiB (10.3 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 24.5% [## ] 1.8 MiB (24.9 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 18.5% [# ] 85.7 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 4.3% [ ] 304.0 KiB (14.8 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 1.0% [ ] 129.5 KiB (10.5 MiB / s) + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 91.7% [######### ] 1.2 MiB (14.8 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 85.0% [######## ] 547.6 KiB (11.6 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 53.7% [##### ] 249.3 KiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 32.1% [### ] 2.3 MiB (25.4 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 8.9% [ ] 624.0 KiB (15.2 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 5.1% [ ] 689.5 KiB (21.0 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 1.3 MiB (12.9 MiB / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? + 100.0% [##########] 644.0 KiB (9.5 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? + 100.0% [##########] 464.4 KiB (6.7 MiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? + 100.0% [##########] 25.5 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 42.8% [#### ] 3.1 MiB (27.7 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 14.6% [# ] 1.0 MiB (16.7 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 9.8% [ ] 1.3 MiB (25.0 MiB / s) +https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 100.0% [##########] 33.1 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? + 100.0% [##########] 19.4 KiB (922.0 KiB / s) +https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? + 100.0% [##########] 25.5 KiB (821.7 KiB / s) +https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? + 100.0% [##########] 227.0 KiB (7.2 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 54.5% [##### ] 3.9 MiB (29.9 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 20.7% [## ] 1.4 MiB (17.8 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 15.5% [# ] 2.0 MiB (28.4 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? + 100.0% [##########] 131.5 KiB (4.6 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? + 100.0% [##########] 33.0 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? + 100.0% [##########] 3.1 KiB (238.9 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? + 100.0% [##########] 33.8 KiB (1.2 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? + 82.3% [######## ] 64.0 KiB (4.5 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 65.8% [###### ] 4.7 MiB (31.4 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 26.9% [## ] 1.8 MiB (18.4 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 21.3% [## ] 2.8 MiB (30.6 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-functional? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/typesafe/play/play-functional? + 100.0% [##########] 173.8 KiB (7.7 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? + 100.0% [##########] 77.7 KiB (2.2 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 77.7% [####### ] 5.6 MiB (32.7 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 33.1% [### ] 2.3 MiB (18.9 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 26.6% [## ] 3.5 MiB (31.3 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 89.0% [######## ] 6.4 MiB (33.5 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 39.0% [### ] 2.7 MiB (19.1 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 32.4% [### ] 4.3 MiB (32.3 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 7.1% [ ] 224.0 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 4.8% [ ] 96.0 KiB (4.5 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 99.2% [######### ] 7.1 MiB (33.8 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 44.4% [#### ] 3.0 MiB (19.0 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 37.2% [### ] 4.9 MiB (32.3 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 15.6% [# ] 309.6 KiB (7.4 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 12.6% [# ] 400.0 KiB (5.9 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 8.2% [ ] 96.0 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? + 100.0% [##########] 7.2 MiB (31.2 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 51.5% [##### ] 3.5 MiB (19.6 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 43.4% [#### ] 5.7 MiB (33.3 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 31.1% [### ] 619.7 KiB (9.9 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 21.1% [## ] 245.6 KiB (3.2 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 20.7% [## ] 656.0 KiB (7.4 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 0.5% [ ] 16.0 KiB (888.9 KiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 57.0% [##### ] 3.9 MiB (19.5 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 48.4% [#### ] 6.4 MiB (33.2 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 43.0% [#### ] 856.0 KiB (10.3 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 32.0% [### ] 373.6 KiB (3.8 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 27.6% [## ] 869.5 KiB (22.3 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 26.6% [## ] 841.2 KiB (7.8 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 62.5% [###### ] 4.3 MiB (19.5 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 55.4% [##### ] 1.1 MiB (10.7 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 53.1% [##### ] 7.0 MiB (33.0 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 49.7% [#### ] 1.5 MiB (26.4 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 43.5% [#### ] 507.7 KiB (4.3 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 32.8% [### ] 1.0 MiB (8.1 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 71.8% [####### ] 2.2 MiB (28.3 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 68.2% [###### ] 4.7 MiB (19.5 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 67.7% [###### ] 1.3 MiB (10.9 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 58.2% [##### ] 7.7 MiB (33.1 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 54.5% [##### ] 635.7 KiB (4.6 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 37.9% [### ] 1.2 MiB (8.0 MiB / s) + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 92.0% [######### ] 2.8 MiB (28.9 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 80.1% [######## ] 1.6 MiB (11.0 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 73.6% [####### ] 5.0 MiB (19.4 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 64.7% [###### ] 753.9 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 63.3% [###### ] 8.3 MiB (33.1 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 43.9% [#### ] 1.4 MiB (8.2 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? + 100.0% [##########] 3.1 MiB (26.1 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 94.9% [######### ] 1.8 MiB (11.5 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 80.9% [######## ] 5.5 MiB (19.8 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 78.9% [####### ] 920.0 KiB (5.1 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 69.6% [###### ] 9.2 MiB (33.7 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 51.7% [##### ] 1.6 MiB (8.6 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? + 100.0% [##########] 87.9 KiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? + 100.0% [##########] 1.9 MiB (10.7 MiB / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 95.9% [######### ] 1.1 MiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 89.4% [######## ] 6.1 MiB (20.4 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 77.2% [####### ] 10.2 MiB (34.8 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 61.3% [###### ] 1.9 MiB (9.2 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? + 100.0% [##########] 1.1 MiB (5.3 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? + 100.0% [##########] 82.0 KiB (2.5 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 96.0% [######### ] 6.6 MiB (20.6 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 83.7% [######## ] 11.0 MiB (35.4 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 68.4% [###### ] 2.1 MiB (9.4 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? + 51.8% [##### ] 591.4 KiB (17.0 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? + 100.0% [##########] 76.8 KiB (2.3 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? + 100.0% [##########] 1.1 MiB (21.0 MiB / s) +https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? + 100.0% [##########] 6.9 MiB (20.2 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 90.8% [######### ] 12.0 MiB (36.1 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 76.4% [####### ] 2.4 MiB (9.6 MiB / s) +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 60.7% [###### ] 192.0 KiB (5.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s +https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? + 100.0% [##########] 316.3 KiB (5.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? + 100.0% [##########] 118.2 KiB (4.1 MiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? + 100.0% [##########] 144.8 KiB (5.2 MiB / s) +https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? + 100.0% [##########] 13.2 MiB (37.5 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 93.5% [######### ] 2.9 MiB (10.9 MiB / s) +https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? + 100.0% [##########] 3.1 MiB (10.8 MiB / s) +[info] Fetched artifacts of  + + + + + + | => macros / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s + + + + + + | => macros / update 1s + | => rocketMacros / update 1s + | => rocketConfig / update 1s + + + + + + | => macros / update 1s + | => rocketMacros / update 1s + | => rocketConfig / update 1s +[info] Fetching artifacts of  + + + + + + | => macros / update 1s + | => rocketMacros / update 1s + | => rocketConfig / update 1s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + | => macros / update 1s + | => rocketConfig / update 1s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? + 100.0% [##########] 144.8 KiB (916.3 KiB / s) +[info] Fetched artifacts of  + + + + + + | => macros / update 1s + | => rocketConfig / update 1s + + + + + + | => macros / update 1s + | => rocketConfig / update 1s + + + + + + + | => core / update 0s + + + + + + + | => chisel / update 0s +[info] Updating  + + + + + + | => chisel / update 0s +https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.pom + 100.0% [##########] 24.5 KiB (1.3 MiB / s) +https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/ha? + 0.0% [ ] 0 B (0 B / s) +[info] Resolved dependencies + + + + + + | => chisel / update 0s +[info] Fetching artifacts of  + + + + + + | => chisel / update 0s +https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/ha? + 100.0% [##########] 44.0 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.jar + 0.0% [ ] 0 B (0 B / s) + + + + + + | => chisel / update 0s +https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.jar + 100.0% [##########] 372.8 KiB (13.0 MiB / s) +[info] Fetched artifacts of  + + + + + + | => chisel / update 0s +[info] Updating  + + + + + + | => chisel / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 1.6 KiB (97.3 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 1.8 KiB (110.1 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => targetutils / update 0s + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 1.8 KiB (8.3 KiB / s) +[info] Resolved dependencies + + + + + + | => targetutils / update 0s + + + + + + | => targetutils / update 0s +[info] Updating  + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? + 100.0% [##########] 2.0 KiB (115.8 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 2.2 KiB (18.4 KiB / s) +[info] Resolved dependencies + + + + + + | => targetutils / update 0s +[info] Updating  + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.p? + 100.0% [##########] 19.4 KiB (1.3 MiB / s) +[info] Resolved dependencies + + + + + + | => targetutils / update 0s +[info] Fetching artifacts of  + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 91.2 KiB (7.4 MiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? + 100.0% [##########] 145.6 KiB (14.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 6.2% [ ] 319.0 KiB (18.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 3.0% [ ] 282.3 KiB (19.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.j? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.j? + 100.0% [##########] 262.3 KiB (11.1 MiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? + 100.0% [##########] 145.6 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 28.0% [## ] 980.3 KiB (25.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 16.5% [# ] 845.5 KiB (22.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 8.1% [ ] 774.4 KiB (22.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 71.7% [####### ] 2.5 MiB (43.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 25.0% [## ] 1.3 MiB (21.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 11.3% [# ] 1.1 MiB (19.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 3.4 MiB (45.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 39.4% [### ] 2.0 MiB (25.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 17.0% [# ] 1.6 MiB (21.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 65.6% [###### ] 3.3 MiB (34.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 26.8% [## ] 2.5 MiB (26.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 92.7% [######### ] 4.6 MiB (40.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 36.0% [### ] 3.4 MiB (29.5 MiB / s) + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (36.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 55.6% [##### ] 5.2 MiB (39.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 79.6% [####### ] 7.4 MiB (48.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 9.3 MiB (54.0 MiB / s) +[info] Fetched artifacts of  + + + + + + | => targetutils / update 0s + + + + + + | => targetutils / update 0s +[info] Updating  + + + + + + | => targetutils / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 1.6 KiB (111.4 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 1.8 KiB (126.0 KiB / s) + + + + + + | => hardfloat / update 0s +[info] Resolved dependencies + + + + + + | => hardfloat / update 0s +[info] Updating  + + + + + + | => hardfloat / update 0s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? + 100.0% [##########] 2.0 KiB (103.6 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +[info] Resolved dependencies + + + + + + | => hardfloat / update 0s + + + + + + | => hardfloat / update 0s +[info] Fetching artifacts of  + + + + + + | => hardfloat / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 7.9% [ ] 404.8 KiB (32.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? + 100.0% [##########] 144.8 KiB (5.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 20.9% [## ] 1.1 MiB (33.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 19.3% [# ] 688.0 KiB (22.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 8.3% [ ] 848.0 KiB (34.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 41.4% [#### ] 1.4 MiB (28.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 31.8% [### ] 1.6 MiB (31.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 17.3% [# ] 1.7 MiB (39.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 61.7% [###### ] 2.1 MiB (30.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 42.4% [#### ] 2.1 MiB (30.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 27.3% [## ] 2.7 MiB (42.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 83.5% [######## ] 2.9 MiB (32.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 52.6% [##### ] 2.6 MiB (29.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 37.1% [### ] 3.7 MiB (44.3 MiB / s) + + + + + + | => hardfloat / update 0s +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 3.5 MiB (31.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 62.9% [###### ] 3.2 MiB (28.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 48.8% [#### ] 4.9 MiB (47.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 75.9% [####### ] 3.8 MiB (29.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 64.5% [###### ] 6.5 MiB (52.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 88.7% [######## ] 4.5 MiB (29.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 80.5% [######## ] 8.1 MiB (56.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (29.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 97.1% [######### ] 9.7 MiB (59.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 10.0 MiB (54.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (26.3 MiB / s) + + + + + + | => hardfloat / update 0s +[info] Fetched artifacts of  + + + + + + | => hardfloat / update 0s + + + + + + | => rocketchip / update 0s + + + + + + | => rocketchip / update 0s + + + + + + | => rocketchip / update 0s + + + + + + | => sifive_blocks / update 0s + + + + + + | => sifive_blocks / update 0s + + + + + + | => sifive_blocks / update 0s + + + + + + | => testchipip / update 0s + + + + + + | => testchipip / update 0s + + + + + + | => utilities / update 0s + + + + + + | => utilities / update 0s + + + + + + + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s +[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/rocket-chip/api-config-chipsalliance/build-rules/sbt/target/scala-2.12/classes ... + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s +[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/rocket-chip/macros/target/scala-2.12/classes ... + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s +[info] Compiling 5 Scala sources to /home/riscvuser/chipyard/tools/chisel3/macros/target/scala-2.12/classes ... + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s +https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? + 0.0% [ ] 0 B (0 B / s) + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.10. Compiling... + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 1s + | => rocketConfig / Compile / compileIncremental 1s + | => macros / Compile / compileIncremental 1s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 2s + | => rocketConfig / Compile / compileIncremental 2s + | => macros / Compile / compileIncremental 2s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 3s + | => rocketConfig / Compile / compileIncremental 3s + | => macros / Compile / compileIncremental 3s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s +[info]  Compilation completed in 4.734s. + + + + + + | => rocketMacros / Compile / compileIncremental 4s + | => rocketConfig / Compile / compileIncremental 4s + | => macros / Compile / compileIncremental 4s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.11. Compiling... + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 5s + | => rocketConfig / Compile / compileIncremental 5s + | => macros / Compile / compileIncremental 5s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 6s + | => rocketConfig / Compile / compileIncremental 6s + | => macros / Compile / compileIncremental 6s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 7s + | => rocketConfig / Compile / compileIncremental 7s + | => macros / Compile / compileIncremental 7s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 8s + | => rocketConfig / Compile / compileIncremental 8s + | => macros / Compile / compileIncremental 8s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 9s + | => rocketConfig / Compile / compileIncremental 9s + | => macros / Compile / compileIncremental 9s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 10s + | => rocketConfig / Compile / compileIncremental 10s + | => macros / Compile / compileIncremental 10s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 11s + | => rocketConfig / Compile / compileIncremental 11s + | => macros / Compile / compileIncremental 11s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 12s + | => rocketConfig / Compile / compileIncremental 12s + | => macros / Compile / compileIncremental 12s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 13s + | => rocketConfig / Compile / compileIncremental 13s + | => macros / Compile / compileIncremental 13s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s +[info]  Compilation completed in 9.786s. + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 14s + | => rocketConfig / Compile / compileIncremental 14s + | => macros / Compile / compileIncremental 14s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compileIncremental 15s + | => rocketConfig / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketConfig / Compile / compile 0s + | => rocketMacros / Compile / compileIncremental 15s + | => macros / Compile / compileIncremental 15s + + + + + + | => rocketMacros / Compile / compile 0s + | => rocketConfig / Compile / compile 0s + | => macros / Compile / compileIncremental 16s + + + + + + | => rocketConfig / Compile / packageBin 0s + | => rocketMacros / Compile / packageBin 0s + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 16s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 17s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compileIncremental 18s + + + + + + + + | => macros / Compile / compile 0s +[info] Compiling 41 Scala sources to /home/riscvuser/chipyard/tools/chisel3/core/target/scala-2.12/classes ... + + + + + + + | => macros / Compile / compile 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 1s + + + + + + + | => core / Compile / compileIncremental 2s + + + + + + + | => core / Compile / compileIncremental 2s + + + + + + + | => core / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Num.scala:5:25: imported `ChiselException' is permanently hidden by definition of type ChiselException in package chisel3 + + + + + + | => core / Compile / compileIncremental 2s +[warn] import chisel3.internal.ChiselException + + + + + + | => core / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 2s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 3s + + + + + + | => core / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/StrongEnum.scala:185:27: inferred existential type Option[chisel3.Vec[_]]( forSome { type _ <: chisel3.Data }), which cannot be expressed by wildcards, should be enabled + + + + + + | => core / Compile / compileIncremental 4s +[warn] by making the implicit value scala.language.existentials visible. + + + + + + | => core / Compile / compileIncremental 4s +[warn] This can be achieved by adding the import clause 'import scala.language.existentials' + + + + + + | => core / Compile / compileIncremental 4s +[warn] or by setting the compiler option -language:existentials. + + + + + + | => core / Compile / compileIncremental 4s +[warn] See the Scaladoc for value scala.language.existentials for a discussion + + + + + + | => core / Compile / compileIncremental 4s +[warn] why the feature should be explicitly enabled. + + + + + + | => core / Compile / compileIncremental 4s +[warn]  val currentVecOpt = d match { + + + + + + | => core / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 4s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:231:42: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following input: Empty + + + + + + | => core / Compile / compileIncremental 5s +[warn]  val reconstructedResolvedDirection = direction match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:333:15: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following input: Empty + + + + + + | => core / Compile / compileIncremental 5s +[warn]  elts.head.direction match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:510:65: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following inputs: (Data(), _), (Element(), Record()), (Element(), _), (Record(), Element()), (Record(), _), (_, Data()), (_, Element()), (_, Record()), (_, _) + + + + + + | => core / Compile / compileIncremental 5s +[warn]  def getMatchedFields(x: Data, y: Data): Seq[(Data, Data)] = (x, y) match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:561:24: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following input: BundleLitBinding(_) + + + + + + | => core / Compile / compileIncremental 5s +[warn]  val litArg = valueBinding match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Bits.scala:2183:21: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following inputs: (??, _), (Closed(_), _), (Open(_), _), (_, ??), (_, Closed(_)), (_, Open(_)), (_, _) + + + + + + | => core / Compile / compileIncremental 5s +[warn]  val inRange = (range.lowerBound, range.upperBound) match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/StrongEnum.scala:171:60: match may not be exhaustive. + + + + + + | => core / Compile / compileIncremental 5s +[warn] It would fail on the following input: Record() + + + + + + | => core / Compile / compileIncremental 5s +[warn]  private def enumFields(d: Aggregate): Seq[Seq[String]] = d match { + + + + + + | => core / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 5s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 6s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:64:24: method flatten in class Data is deprecated (since chisel3): pending removal once all instances replaced + + + + + + | => core / Compile / compileIncremental 7s +[warn]  SeqUtils.do_asUInt(flatten.map(_.asUInt())) + + + + + + | => core / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:70:15: method flatten in class Data is deprecated (since chisel3): pending removal once all instances replaced + + + + + + | => core / Compile / compileIncremental 7s +[warn]  for (x <- flatten) { + + + + + + | => core / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Annotation.scala:38:30: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => core / Compile / compileIncremental 7s +[warn]  def toFirrtl: Annotation = Annotation(component.toNamed, transformClass, value) + + + + + + | => core / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Assert.scala:41:57: method lineContent in trait Position is deprecated (since 2.11.0): removed from the public API + + + + + + | => core / Compile / compileIncremental 7s +[warn]  val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}" + + + + + + | => core / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Assert.scala:49:57: method lineContent in trait Position is deprecated (since 2.11.0): removed from the public API + + + + + + | => core / Compile / compileIncremental 7s +[warn]  val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}" + + + + + + | => core / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 7s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/internal/Namer.scala:84:9: object JavaConversions in package collection is deprecated (since 2.12.0): use JavaConverters + + + + + + | => core / Compile / compileIncremental 8s +[warn]  descendants.getOrElseUpdate(ref, ListBuffer[NamingContext]()) += descendant + + + + + + | => core / Compile / compileIncremental 8s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 8s +[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/internal/Namer.scala:114:42: object JavaConversions in package collection is deprecated (since 2.12.0): use JavaConverters + + + + + + | => core / Compile / compileIncremental 8s +[warn]  for (descendant <- descendants.values().flatten) { + + + + + + | => core / Compile / compileIncremental 8s +[warn]  ^ + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 8s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 9s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 10s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 11s + + + + + + | => core / Compile / compileIncremental 12s + + + + + + | => core / Compile / compileIncremental 12s +[warn] 15 warnings found + + + + + + | => core / Compile / compileIncremental 12s + + + + + + | => core / Compile / compileIncremental 12s + + + + + + | => core / Compile / compile 0s + + + + + + | => core / Compile / compile 0s + + + + + + | => core / Compile / compile 0s +[info] Compiling 57 Scala sources to /home/riscvuser/chipyard/tools/chisel3/target/scala-2.12/classes ... + + + + + + | => core / Compile / compile 0s + + + + + + | => core / Compile / packageBin 0s + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:24:9: inferred existential type (chisel3.internal.firrtl.Circuit, chisel3.stage.DesignAnnotation[_]) forSome { type _ <: chisel3.RawModule }, which cannot be expressed by wildcards, should be enabled + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] by making the implicit value scala.language.existentials visible. + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] This can be achieved by adding the import clause 'import scala.language.existentials' + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] or by setting the compiler option -language:existentials. + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] See the Scaladoc for value scala.language.existentials for a discussion + + + + + + | => chisel / Compile / compileIncremental 1s +[warn] why the feature should be explicitly enabled. + + + + + + | => chisel / Compile / compileIncremental 1s +[warn]  val (circuit, dut) = new chisel3.stage.ChiselGeneratorAnnotation(finishWrapper(t)).elaborate.toSeq match { + + + + + + | => chisel / Compile / compileIncremental 1s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 1s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 2s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 3s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/ChiselExecutionOptions.scala:21:44: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ) extends ComposableOptions { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/ChiselExecutionOptions.scala:30:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  self: ExecutionOptionsManager => + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:49:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:49:101: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:50:23: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  commonOptions = CommonOptions(topName = prefix, targetDirName = dir.getAbsolutePath) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:51:23: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  firrtlOptions = FirrtlExecutionOptions(compilerName = "verilog") + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:54:12: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  firrtl.Driver.execute(optionsManager) match { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:75:55: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  firrtlResultOption: Option[FirrtlExecutionResult] + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:72:12: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] case class ChiselExecutionSuccess( + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/AspectLibrary.scala:21:11: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  x.newInstance() + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:14:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:14:41: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:15:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  override def outputForm: CircuitForm = ChirrtlForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:15:42: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  override def outputForm: CircuitForm = ChirrtlForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:396:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val Driver = chisel3.Driver + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:407:28: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val circuit = Driver.elaborate(gen) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:408:14: method parseArgs in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage with '--target-directory'. This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Driver.parseArgs(args) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:409:41: method targetDir in object Driver is deprecated (since 3.2.2): This has no effect on Chisel3 Driver! This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val output_file = new File(Driver.targetDir + "/" + circuit.name + ".fir") + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:410:14: method dumpFirrtl in object Driver is deprecated (since 3.2.4): Migrate to chisel3.stage.ChiselStage. This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Driver.dumpFirrtl(circuit, Option(output_file)) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:475:29: object unless in package util is deprecated (since 3.2): The unless conditional is deprecated, use when(!condition){...} instead + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val unless = chisel3.util.unless + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:564:29: object LFSR16 in package util is deprecated (since 3.2): LFSR16 is deprecated in favor of the parameterized chisel3.util.random.LFSR + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val LFSR16 = chisel3.util.LFSR16 + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/internal/firrtl/Emitter.scala:189:16: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  res ++= s";${Driver.chiselVersionString}\n" + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/ChiselAnnotations.scala:70:63: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Class.forName(name).asInstanceOf[Class[_ <: RawModule]].newInstance() + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/package.scala:45:61: method firrtlResultView in object DriverCompatibility is deprecated (since 1.2): FirrtlExecutionResult is deprecated as part of the Stage/Phase refactor. Migrate to FirrtlStage. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val fResult = firrtl.stage.phases.DriverCompatibility.firrtlResultView(options) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/Convert.scala:37:75: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  .map { c: Class[_ <: Transform] => RunFirrtlTransformAnnotation(c.newInstance()) } + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:102:14: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  manager: ExecutionOptionsManager with HasChiselExecutionOptions with HasFirrtlOptions) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:101:31: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  private[chisel3] case class OptionsManagerAnnotation( + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:118:22: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  .collectFirst{ case OptionsManagerAnnotation(a) => a } + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:145:56: class AddImplicitOutputFile in object DriverCompatibility is deprecated (since 1.2): AddImplicitOutputFile should only be used to build Driver compatibility wrappers. Switch to Stage. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Seq( new firrtl.stage.phases.DriverCompatibility.AddImplicitOutputFile, + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:146:56: class AddImplicitEmitter in object DriverCompatibility is deprecated (since 1.2): AddImplicitEmitter should only be used to build Driver compatibility wrappers. Switch to Stage. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  new firrtl.stage.phases.DriverCompatibility.AddImplicitEmitter ) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:36:12: method dumpFirrtl in object Driver is deprecated (since 3.2.4): Migrate to chisel3.stage.ChiselStage. This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Driver.dumpFirrtl(circuit, Some(new File(fname.toString + ".fir"))) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:36:5: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  Driver.dumpFirrtl(circuit, Some(new File(fname.toString + ".fir"))) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:37:32: method toFirrtl in object Driver is deprecated (since 3.2.4): Use ChiselStage.convert or use a ChiselStage class. This will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val firrtlCircuit = Driver.toFirrtl(circuit) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:37:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val firrtlCircuit = Driver.toFirrtl(circuit) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:55:69: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  .map { transformClass: Class[_ <: Transform] => transformClass.newInstance() } + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:58:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:58:101: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:59:23: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  commonOptions = CommonOptions(topName = target, targetDirName = path.getAbsolutePath) + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:60:23: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  firrtlOptions = FirrtlExecutionOptions(compilerName = "verilog", annotations = resolvedAnnotations, + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:64:12: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  firrtl.Driver.execute(optionsManager) match { + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:128:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:128:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:129:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:129:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => chisel / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 4s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 5s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 6s + + + + + + | => chisel / Compile / compileIncremental 7s + + + + + + | => chisel / Compile / compileIncremental 7s +[warn] 45 warnings found + + + + + + | => chisel / Compile / compileIncremental 7s + + + + + + | => chisel / Compile / compile 0s + + + + + + | => chisel / Compile / compile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => chisel / Compile / compile 0s +[info] Compiling 1 Scala source to /home/riscvuser/chipyard/sims/firesim/sim/midas/targetutils/target/scala-2.12/classes ... + + + + + + | => chisel / Compile / compile 0s + + + + + + | => chisel / Compile / packageBin 0s + | => targetutils / Compile / compileIncremental 0s +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.4. Compiling... + + + + + + | => chisel / Compile / packageBin 0s + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 0s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 1s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 2s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 3s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 4s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 5s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 6s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 7s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 8s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 9s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 10s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 11s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 12s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + + | => targetutils / Compile / compileIncremental 13s +[info]  Compilation completed in 13.551s. + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + | => targetutils / Compile / compileIncremental 13s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 14s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 15s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / compileIncremental 16s + + + + + + | => targetutils / Compile / packageBin 0s +[info] Compiling 27 Scala sources to /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/target/scala-2.12/classes ... + + + + + + | => targetutils / Compile / packageBin 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.8. Compiling... + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 0s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 1s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 2s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 3s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 4s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 5s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 6s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 7s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 8s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 9s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 10s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 11s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 12s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 13s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s +[info]  Compilation completed in 14.398s. + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 14s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 15s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 16s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 17s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 18s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 19s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 20s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 21s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 22s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 23s + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:62:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f16FromRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:62:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f16FromRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:64:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f32FromRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:64:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f32FromRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:66:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f64FromRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:66:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f64FromRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:68:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:68:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:70:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:70:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:72:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:72:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:74:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:74:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:76:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:76:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:78:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:78:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:80:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:80:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:82:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:82:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:84:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:84:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:86:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:86:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:88:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:88:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:90:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:90:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:92:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:92:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:94:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:94:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:96:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:96:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:98:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:98:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:100:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:100:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:102:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:102:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:104:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:104:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:106:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:106:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:108:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:108:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:110:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:110:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:112:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:112:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:114:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:114:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:116:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:116:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:118:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:118:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:120:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:120:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:122:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:122:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:124:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:124:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:126:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:126:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:128:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:128:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:131:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:131:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:134:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:134:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF16) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:136:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:136:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:139:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:139:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:142:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:142:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF32) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:144:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:144:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:147:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:147:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:150:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:150:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF64) + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:152:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:152:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:156:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:156:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:161:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:161:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:165:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:165:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:170:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:170:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:174:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:174:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:179:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:179:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:182:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:182:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:185:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:185:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:188:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:188:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:191:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:191:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:194:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:194:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:197:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:197:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:200:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:200:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:203:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:203:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:206:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:206:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:209:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:209:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  chisel3.Driver.execute( + + + + + + | => hardfloat / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 24s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 25s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 26s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 27s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compileIncremental 28s +[warn] there were 890 feature warnings; re-run with -feature for details + + + + + + | => hardfloat / Compile / compileIncremental 28s +[warn] 119 warnings found + + + + + + | => hardfloat / Compile / compileIncremental 28s + + + + + + | => hardfloat / Compile / compile 0s + + + + + + | => hardfloat / Compile / packageBin 0s +[info] Compiling 345 Scala sources to /home/riscvuser/chipyard/generators/rocket-chip/src/target/scala-2.12/classes ... + + + + + + | => hardfloat / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 0s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 1s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 2s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 3s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 4s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 5s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 6s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 7s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 8s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 9s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 10s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 11s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 12s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 13s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 14s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 15s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 16s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 17s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 18s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 19s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 20s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 21s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 22s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 23s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 24s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 25s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 26s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 27s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 28s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 29s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 30s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 31s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 32s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 33s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 34s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 35s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 36s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 37s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 38s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 39s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 40s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 41s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 42s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 43s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/subsystem/InterruptBus.scala:16:36: class IntXing in package interrupts is deprecated (since rocket-chip 1.2): IntXing does not ensure interrupt source is glitch free. Use IntSyncSource and IntSyncSink + + + + + + | => rocketchip / Compile / compileIncremental 44s +[warn]  val asyncXing = LazyModule(new IntXing(sync)) + + + + + + | => rocketchip / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 44s + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/tilelink/Monitor.scala:726:11: method legalizeADSourceOld in class TLMonitor is deprecated: Use legalizeADSource instead if possible + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn]  legalizeADSourceOld(bundle, edge) + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn]  ^ + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/util/GeneratorUtils.scala:16:36: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn]  Class.forName(currentName).newInstance.asInstanceOf[Config] + + + + + + | => rocketchip / Compile / compileIncremental 45s +[warn]  ^ + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 45s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 46s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 47s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 48s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 49s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 50s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 51s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 52s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 53s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 54s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 55s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 56s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 57s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 58s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 59s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 60s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 61s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 62s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 63s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 64s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 65s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 66s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 67s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 68s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s +[warn] there were 2471 feature warnings; re-run with -feature for details + + + + + + | => rocketchip / Compile / compileIncremental 69s +[warn] four warnings found + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compileIncremental 69s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / compile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => rocketchip / Compile / compile 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => rocketchip / Compile / packageBin 0s +[info] Compiling 78 Scala sources to /home/riscvuser/chipyard/generators/sifive-blocks/target/scala-2.12/classes ... + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 1s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 2s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 3s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 4s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 5s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 6s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 7s + + + + + + | => sifive_blocks / Compile / compileIncremental 8s + + + + + + | => sifive_blocks / Compile / compileIncremental 8s + + + + + + | => sifive_blocks / Compile / compileIncremental 8s + + + + + + | => sifive_blocks / Compile / compileIncremental 8s +[warn] there were 758 feature warnings; re-run with -feature for details + + + + + + | => sifive_blocks / Compile / compileIncremental 8s +[warn] one warning found + + + + + + | => sifive_blocks / Compile / compileIncremental 8s + + + + + + | => sifive_blocks / Compile / compileIncremental 8s + + + + + + | => sifive_blocks / Compile / compile 0s + + + + + + | => sifive_blocks / Compile / compile 0s + + + + + + | => sifive_blocks / Compile / packageBin 0s +[info] Compiling 19 Scala sources to /home/riscvuser/chipyard/generators/testchipip/target/scala-2.12/classes ... + + + + + + | => sifive_blocks / Compile / packageBin 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 0s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 1s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 2s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 3s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 4s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 5s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:420:23: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  Map("TAG_BITS" -> IntParam(log2Up(config.get.nTrackers))) + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:432:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  setResource("/testchipip/vsrc/SimBlockDevice.v") + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:433:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  setResource("/testchipip/csrc/SimBlockDevice.cc") + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:434:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  setResource("/testchipip/csrc/blkdev.cc") + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:435:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  setResource("/testchipip/csrc/blkdev.h") + + + + + + | => testchipip / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 6s + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtil.scala:103:132: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  syncs.zipWithIndex.foreach { case (s, i) => s.io.d := (io.sel === i.U) && !(syncs.zipWithIndex.filter(_._2 != i).map(_._1.io.q.toBool).reduce(_||_)) } + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:28:17: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  val state = withClockAndReset(clocks(0), syncReset) { RegInit(sReset) } + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:30:5: value withClock in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  withClock(mux.io.clockOut) { + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:34:5: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  withClockAndReset(clocks(0), syncReset) { + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:73:19: value withClock in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  val divider = withClock(myClock) { Module(new ClockDivider(log2Ceil(divs.max))) } + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:77:17: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  val state = withClockAndReset(myClock, syncReset) { RegInit(sReset) } + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:79:5: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  withClockAndReset(myClock, syncReset) { + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:107:22: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  "minperiodps" -> IntParam(minperiodps), + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:108:22: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  "maxperiodps" -> IntParam(maxperiodps.getOrElse(BigInt(0))) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:118:72: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] class ClockGenerator(periodps: Int) extends BlackBox(Map("periodps" -> IntParam(periodps))) { + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/NoDebug.scala:17:14: type Reset in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  val reset: Reset + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:126:47: method copy in class TLMasterParameters is deprecated: Use v1copy instead of copy + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  port.clients map { client => client.copy( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:123:14: method copy in class TLMasterPortParameters is deprecated: Use v1copy instead of copy + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  seq(0).copy( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:140:50: method copy in class TLSlaveParameters is deprecated: Use v1copy instead of copy + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  port.managers map { manager => manager.copy( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:133:14: method copy in class TLSlavePortParameters is deprecated: Use v1copy instead of copy + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  seq(0).copy( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:490:7: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLManagerPortParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:532:7: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLClientPortParameters(Seq(client)))) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:580:9: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  Seq(TLClientPortParameters(Seq(clientParams)))) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:583:9: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  Seq(TLManagerPortParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:107:5: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLManagerPortParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:108:11: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  Seq(TLManagerParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:122:7: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:122:34: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:138:18: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  params = Seq(TLManagerParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:147:18: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  params = Seq(TLClientParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:194:20: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  clientParams = TLClientParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:197:21: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  managerParams = TLManagerParameters( + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:132:20: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  makeClientNode(TLClientParameters(name, sourceId)) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:136:22: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLClientNode(Seq(TLClientPortParameters(Seq(params)))) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:140:23: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  TLManagerNode(Seq(TLManagerPortParameters(Seq(params), beatBytes))) + + + + + + | => testchipip / Compile / compileIncremental 7s +[warn]  ^ + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 7s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 8s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 9s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 10s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compileIncremental 11s +[warn] there were 403 feature warnings; re-run with -feature for details + + + + + + | => testchipip / Compile / compileIncremental 11s +[warn] 36 warnings found + + + + + + | => testchipip / Compile / compileIncremental 11s + + + + + + | => testchipip / Compile / compile 0s + + + + + + | => testchipip / Compile / packageBin 0s +[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/utilities/target/scala-2.12/classes ... + + + + + + | => testchipip / Compile / packageBin 0s + + + + + + | => utilities / Compile / compileIncremental 0s + + + + + + | => utilities / Compile / compileIncremental 0s + + + + + + | => utilities / Compile / compileIncremental 0s + + + + + + | => utilities / Compile / compileIncremental 0s + + + + + + | => utilities / Compile / bgRunMain 0s + + + + + + | => utilities / Compile / bgRunMain 0s + + + + + + | => utilities / Compile / bgRunMain 0s + + + + + + | => utilities / Compile / bgRunMain 0s + + + + + + | => utilities / Compile / bgRunMain 0s +[info] running utilities.GenerateSimFiles -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -sim verilator + + + + + + | => utilities / Compile / runMain 0s + + + + + + | => utilities / Compile / runMain 0s + + + + + + +[success] Total time: 182 s (03:02), completed Dec 23, 2020, 3:44:40 AM +mkdir -p /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig +cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project chipyard" "runMain chipyard.Generator \ + --target-dir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig \ + --name chipyard.TestHarness.RocketConfig \ + --top-module chipyard.TestHarness \ + --legacy-configs chipyard.RocketConfig" +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +[info] Loading settings for project chipyard-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/project + + + + + + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project chipyardRoot from build.sbt ... +[info] Loading settings for project barstoolsMacros from build.sbt ... +[info] Loading settings for project mdf from build.sbt ... +[info] Loading settings for project gemmini from build.sbt ... +[info] Loading settings for project ariane from build.sbt ... +[info] Loading settings for project boom from build.sbt ... +[info] Loading settings for project hwacha from build.sbt ... +[info] Loading settings for project icenet from build.sbt ... +[info] Loading settings for project testchipip from build.sbt ... +[info] Loading settings for project rocketConfig from build.sbt ... +[info] Loading settings for project hardfloat from build.sbt ... +[info] Loading settings for project chisel_testers from build.sbt ... +[info] Loading settings for project treadle from build.sbt ... +[info] Loading settings for project firrtl_interpreter from build.sbt ... +[info] Loading settings for project chisel from build.sbt ... +[info] Loading settings for project sim-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project + + + + + + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project firesim from build.sbt ... +[info] Loading settings for project midas from build.sbt ... +[info] Loading settings for project targetutils from build.sbt ... +[info] Resolving key references (32007 settings) ... +[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + | => Global / checkBuildSources 0s + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[info] Set current project to chipyard (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + + + + + + + + + + + | => gemmini / dependencyPositions 0s + | => sifive_cache / dependencyPositions 0s + | => tracegen / dependencyPositions 0s + | => nvdla / dependencyPositions 0s + | => icenet / dependencyPositions 0s + | => boom / dependencyPositions 0s + | => utilities / dependencyPositions 0s + | => testchipip / dependencyPositions 0s + | => sha3 / dependencyPositions 0s + | => hwacha / dependencyPositions 0s + | => dsptools / dependencyPositions 0s + | => sifive_blocks / dependencyPositions 0s + | => rocketConfig / dependencyPositions 0s + | => rocketchip / dependencyPositions 0s + | => rocketMacros / dependencyPositions 0s + | => chisel_testers / dependencyPositions 0s + | => firrtl_interpreter / dependencyPositions 0s + | => rocket-dsptools / dependencyPositions 0s + | => targetutils / dependencyPositions 0s + | => treadle / dependencyPositions 0s + | => macros / dependencyPositions 0s + | => chisel / dependencyPositions 0s + | => core / dependencyPositions 0s + | => hardfloat / dependencyPositions 0s + + + + + + + + + + + + + + + + + + + + + + + + + | => sha3 / csrConfiguration 0s + | => utilities / csrConfiguration 0s + | => sifive_blocks / csrConfiguration 0s + | => dsptools / csrConfiguration 0s + | => chipyard / Compile / unmanagedSources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + | => core / projectDescriptors 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + | => core / projectDescriptors 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + + + + + | => dsptools / projectDescriptors 0s + | => hardfloat / update 0s + | => rocketchip / projectDescriptors 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + + | => ariane / update 0s + | => hwacha / update 0s + | => sifive_cache / update 0s + | => nvdla / update 0s + | => sifive_blocks / update 0s + | => chipyard / projectDescriptors 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + + + | => testchipip / update 0s + | => ariane / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => sifive_cache / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s +[info] Updating  + + + + + + + + + + + + + + + + + + + + + | => testchipip / update 0s + | => ariane / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => sifive_cache / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 86.1% [######## ] 1.3 KiB (4.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 86.0% [######## ] 1.3 KiB (4.5 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 76.0% [####### ] 1.3 KiB (4.5 KiB / s) +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom + 5.8% [ ] 1.3 KiB (4.5 KiB / s) +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom + 100.0% [##########] 23.1 KiB (72.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 1.6 KiB (4.9 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 1.8 KiB (5.5 KiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 100.0% [##########] 1.6 KiB (4.9 KiB / s) + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 0s + | => treadle / update 0s + + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 1s + | => treadle / update 1s +[info] Resolved dependencies + + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 1s + | => treadle / update 1s +[info] Updating  + + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 1s + | => treadle / update 1s +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? + 100.0% [##########] 2.0 KiB (59.7 KiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +[info] Resolved dependencies + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 0s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 0s + | => boom / update 0s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 1s + | => treadle / update 1s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 2s + | => treadle / update 2s +[info] Updating  + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 1s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 1s + | => sifive_cache / update 1s +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 1.8 KiB (127.4 KiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) + | => hwacha / update 1s + | => nvdla / update 1s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 100.0% [##########] 3.6 KiB (108.1 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? + 100.0% [##########] 2.1 KiB (101.4 KiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 100.0% [##########] 2.2 KiB (104.1 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? + 100.0% [##########] 1.6 KiB (61.7 KiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 1.6 KiB (62.0 KiB / s) +[info] Resolved dependencies + + + + + + + + + + + + + + + | => icenet / update 1s + | => boom / update 1s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => hwacha / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 2s + | => treadle / update 2s + + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => ariane / update 2s + | => sifive_cache / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => sifive_cache / update 2s + | => nvdla / update 2s + | => iocell / update 2s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => sifive_cache / update 2s + | => nvdla / update 2s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + + + | => icenet / update 2s + | => boom / update 2s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + + + | => icenet / update 3s + | => boom / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s +[info] Fetching artifacts of  + + + + + + + + + + + + + + + + + | => icenet / update 3s + | => boom / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar + 39.5% [### ] 121.4 KiB (4.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 4.2% [ ] 148.5 KiB (5.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 0.1% [ ] 2.7 KiB (111.6 KiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar + 75.6% [####### ] 232.5 KiB (4.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 8.7% [ ] 305.3 KiB (6.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 2.3% [ ] 116.6 KiB (2.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 1.5% [ ] 151.3 KiB (3.5 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 0.8% [ ] 9.4 KiB (208.3 KiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar + 100.0% [##########] 307.6 KiB (4.5 MiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? + 25.9% [## ] 37.5 KiB (1.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 18.7% [# ] 657.3 KiB (9.6 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 17.1% [# ] 196.8 KiB (3.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 6.1% [ ] 312.0 KiB (4.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 4.2% [ ] 432.0 KiB (6.8 MiB / s) +https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? + 100.0% [##########] 144.9 KiB (3.1 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 56.1% [##### ] 645.6 KiB (7.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 44.5% [#### ] 1.5 MiB (17.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 16.5% [# ] 851.0 KiB (9.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 11.8% [# ] 1.2 MiB (14.5 MiB / s) +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 92.2% [######### ] 1.0 MiB (10.0 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 67.7% [###### ] 2.3 MiB (21.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 24.6% [## ] 1.2 MiB (11.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 18.1% [# ] 1.8 MiB (17.8 MiB / s) + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s +https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? + 100.0% [##########] 1.1 MiB (9.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 93.1% [######### ] 3.2 MiB (25.2 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 34.0% [### ] 1.7 MiB (13.8 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 26.1% [## ] 2.6 MiB (21.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? + 100.0% [##########] 3.4 MiB (23.6 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 48.9% [#### ] 2.5 MiB (17.1 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 37.9% [### ] 3.8 MiB (26.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 66.3% [###### ] 3.3 MiB (20.4 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 51.8% [##### ] 5.1 MiB (31.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 82.5% [######## ] 4.1 MiB (22.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 66.1% [###### ] 6.6 MiB (36.3 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (24.7 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 79.8% [####### ] 7.9 MiB (39.4 MiB / s) + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s +https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? + 100.0% [##########] 5.0 MiB (22.5 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 9.9 MiB (44.9 MiB / s) +https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? + 100.0% [##########] 9.9 MiB (41.4 MiB / s) +[info] Fetched artifacts of  + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => firrtl_interpreter / update 3s + | => treadle / update 3s + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => treadle / update 4s + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => icenet / update 3s + | => nvdla / update 3s + | => iocell / update 3s + | => treadle / update 4s + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => nvdla / update 3s + | => iocell / update 4s + | => treadle / update 4s + + + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => treadle / update 4s +[info] Fetching artifacts of  + + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => treadle / update 4s +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? + 100.0% [##########] 81.6 KiB (5.0 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? + 100.0% [##########] 91.1 KiB (3.2 MiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 69.4% [###### ] 1.0 MiB (37.3 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? + 41.0% [#### ] 196.8 KiB (10.1 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 6.7% [ ] 447.9 KiB (18.2 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? + 100.0% [##########] 479.5 KiB (12.3 MiB / s) +https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? + 100.0% [##########] 340.8 KiB (12.8 MiB / s) +https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? + 100.0% [##########] 1.5 MiB (31.4 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 16.9% [# ] 1.1 MiB (25.1 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 35.1% [### ] 2.3 MiB (36.4 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 59.8% [##### ] 3.9 MiB (47.0 MiB / s) + + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => treadle / update 4s +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 87.1% [######## ] 5.7 MiB (55.2 MiB / s) +https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? + 100.0% [##########] 6.5 MiB (53.0 MiB / s) +[info] Fetched artifacts of  + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => treadle / update 4s + + + + + + + + + + + + + + + + + + | => tracegen / update 0s + | => treadle / update 4s + + + + + + + + + + + + + + + + + + | => chisel_testers / update 0s + | => tracegen / update 1s + + + + + + + + + + + + + + + + + + | => chisel_testers / update 0s + | => tracegen / update 1s + + + + + + + + + + + + + + + + + + + | => chisel_testers / update 0s + + + + + + + + + + + + + + + + + + + | => chisel_testers / update 0s + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + | => sha3 / update 0s + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + | => sha3 / update 0s + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + | => sha3 / update 0s + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + | => sha3 / update 0s + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + | => sha3 / update 0s + + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + + + + + + + + + + + + + + + + + + | => gemmini / update 0s + | => dsptools / update 0s + + + + + + + + + + + + + + + + + + + | => rocket-dsptools / update 0s + + + + + + + + + + + + + + + + + + + | => rocket-dsptools / update 0s + + + + + + + + + + + + + + + + + + + | => rocket-dsptools / update 0s + + + + + + + + + + + + + + + + + + + | => chipyard / update 0s + + + + + + + + + + + + + + + + + + + | => chipyard / update 0s + + + + + + + + + + + + + + + + + + + | => chipyard / update 0s + + + + + + + + + + + + + + + + + + | => core / Compile / unmanagedSources / allInputPathsAndAttributes 0s + | => rocketchip / Compile / unmanagedSources / allInputPathsAndAttributes 0s + + + + + + | => icenet / scalaCompilerBridgeScope / csrConfiguration 0s + | => icenet / scalaCompilerBridgeScope / csrConfiguration 0s + | => iocell / Compile / unmanagedClasspath 0s + | => testchipip / Compile / unmanagedClasspath 0s + | => iocell / scalaCompilerBridgeScope / csrConfiguration 0s + | => iocell / scalaCompilerBridgeScope / csrConfiguration 0s + | => testchipip / scalaCompilerBridgeScope / csrConfiguration 0s + | => testchipip / scalaCompilerBridgeScope / csrConfiguration 0s + | => gemmini / Compile / unmanagedClasspath 0s + | => treadle / scalaCompilerBridgeScope / csrConfiguration 0s + | => treadle / scalaCompilerBridgeScope / csrConfiguration 0s + | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s + | => dsptools / Compile / scalacOptions 0s + | => rocket-dsptools / Compile / scalacOptions 0s + | => ariane / Compile / scalacOptions 0s + | => hwacha / Compile / scalacOptions 0s + | => hardfloat / Compile / scalacOptions 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + | => ariane / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + | => macros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => rocketMacros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + | => ariane / Compile / unmanagedResources / inputFileStamps 0s +[info] Compiling 59 Scala sources to /home/riscvuser/chipyard/tools/treadle/target/scala-2.12/classes ... + + + + + + + + + + + + + + + + + | => macros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => rocketMacros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + | => ariane / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + | => ariane / Compile / copyResources 0s + | => macros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => rocketMacros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[info] Compiling 23 Scala sources to /home/riscvuser/chipyard/tools/firrtl-interpreter/target/scala-2.12/classes ... + + + + + + + + + + + + + + + + | => ariane / Compile / copyResources 0s + | => macros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => rocketMacros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.6. Compiling... + + + + + + + + + + + + + + + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + | => core / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + | => core / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + | => chisel / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + | => chisel / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + | => chisel / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 0s + | => targetutils / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[info] Compiling 2 Scala sources to /home/riscvuser/chipyard/tools/barstools/iocell/target/scala-2.12/classes ... + + + + + + + + + + + + + | => chisel / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 0s + | => targetutils / Compile / previousCompile 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + | => hardfloat / Compile / compileIncremental 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => ariane / Compile / copyResources 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => treadle / Compile / compileIncremental 0s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + | => rocketchip / Compile / mainClass 0s + | => rocketchip / Compile / packageBin / mappings 0s + | => nvdla / Compile / copyResources 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s +[info] Compiling 53 Scala sources to /home/riscvuser/chipyard/generators/hwacha/target/scala-2.12/classes ... + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s +[info] Compiling 3 Scala sources to /home/riscvuser/chipyard/generators/ariane/target/scala-2.12/classes ... + + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s +[info] Compiling 23 Scala sources to /home/riscvuser/chipyard/generators/sifive-cache/target/scala-2.12/classes ... + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => sifive_blocks / Compile / previousCompile 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s +[info] Compiling 4 Scala sources to /home/riscvuser/chipyard/generators/nvdla/target/scala-2.12/classes ... + + + + + + + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => sifive_blocks / Compile / previousCompile 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 1s + | => treadle / Compile / compileIncremental 1s + + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + + | => testchipip / Compile / previousCompile 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + + | => testchipip / Compile / packageBin 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s +[info] Compiling 55 Scala sources to /home/riscvuser/chipyard/generators/boom/target/scala-2.12/classes ... + + + + + + | => testchipip / Compile / packageBin 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s +[info] Compiling 15 Scala sources to /home/riscvuser/chipyard/generators/icenet/target/scala-2.12/classes ... + + + + + + | => testchipip / Compile / packageBin 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 1s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / compileIncremental 0s + | => sifive_cache / Compile / compileIncremental 0s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 2s + | => treadle / Compile / compileIncremental 2s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 2s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 1s + | => ariane / Compile / compileIncremental 1s + | => hwacha / Compile / compileIncremental 1s + | => sifive_cache / Compile / compileIncremental 1s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 3s + | => treadle / Compile / compileIncremental 3s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 1s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 3s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 2s + | => ariane / Compile / compileIncremental 2s + | => hwacha / Compile / compileIncremental 2s + | => sifive_cache / Compile / compileIncremental 2s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 4s + | => treadle / Compile / compileIncremental 4s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 2s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 4s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 3s + | => sifive_cache / Compile / compileIncremental 3s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 3s + | => ariane / Compile / compileIncremental 3s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 5s + | => treadle / Compile / compileIncremental 5s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 3s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 5s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 4s + | => hwacha / Compile / compileIncremental 4s + | => sifive_cache / Compile / compileIncremental 4s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 4s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 6s + | => treadle / Compile / compileIncremental 6s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 4s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 6s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 5s + | => ariane / Compile / compileIncremental 5s + | => hwacha / Compile / compileIncremental 5s + | => sifive_cache / Compile / compileIncremental 5s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 7s + | => treadle / Compile / compileIncremental 7s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 5s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 7s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 6s + | => ariane / Compile / compileIncremental 6s + | => hwacha / Compile / compileIncremental 6s + | => sifive_cache / Compile / compileIncremental 6s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 8s + | => treadle / Compile / compileIncremental 8s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 6s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 8s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 7s + | => ariane / Compile / compileIncremental 7s + | => hwacha / Compile / compileIncremental 7s + | => sifive_cache / Compile / compileIncremental 7s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 9s + | => treadle / Compile / compileIncremental 9s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 7s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 9s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s +[info]  Compilation completed in 10.612s. + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 8s + | => ariane / Compile / compileIncremental 8s + | => hwacha / Compile / compileIncremental 8s + | => sifive_cache / Compile / compileIncremental 8s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 10s + | => treadle / Compile / compileIncremental 10s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 8s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 10s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 9s + | => ariane / Compile / compileIncremental 9s + | => hwacha / Compile / compileIncremental 9s + | => sifive_cache / Compile / compileIncremental 9s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 11s + | => treadle / Compile / compileIncremental 11s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 9s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 11s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 10s + | => ariane / Compile / compileIncremental 10s + | => hwacha / Compile / compileIncremental 10s + | => sifive_cache / Compile / compileIncremental 10s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 12s + | => treadle / Compile / compileIncremental 12s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:270:4: @deprecated now takes two arguments; see the scaladoc. + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn]  @deprecated(s"Use toBinaryString instead") + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 10s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 12s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ExternalModule.scala:41:4: @deprecated now takes two arguments; see the scaladoc. + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn]  @deprecated("Do not use. This was formerly used to add BlackBox name to io, just use un-prefixed input names") + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 11s + | => ariane / Compile / compileIncremental 11s + | => hwacha / Compile / compileIncremental 11s + | => sifive_cache / Compile / compileIncremental 11s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 13s + | => treadle / Compile / compileIncremental 13s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 11s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 12s + | => ariane / Compile / compileIncremental 12s + | => hwacha / Compile / compileIncremental 12s + | => sifive_cache / Compile / compileIncremental 12s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 14s + | => treadle / Compile / compileIncremental 14s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s +[warn] there was one feature warning; re-run with -feature for details + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s +[warn] one warning found + + + + + + | => icenet / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 12s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => iocell / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + | => iocell / Compile / compile 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + | => iocell / Compile / compile 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s +[warn] there were 62 feature warnings; re-run with -feature for details + + + + + + | => iocell / Compile / compile 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s +[warn] one warning found + + + + + + | => iocell / Compile / compile 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => nvdla / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => nvdla / Compile / compile 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 13s + | => hwacha / Compile / compileIncremental 13s + | => sifive_cache / Compile / compileIncremental 13s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 15s + | => treadle / Compile / compileIncremental 15s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 13s + | => boom / Compile / compileIncremental 13s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 14s + | => sifive_cache / Compile / compileIncremental 14s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 14s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 16s + | => treadle / Compile / compileIncremental 16s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 14s + | => boom / Compile / compileIncremental 14s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:17:5: match may not be exhaustive. + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  (this, that) match { + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  ^ + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:29:5: match may not be exhaustive. + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  (this, that) match { + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  ^ + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:43:5: match may not be exhaustive. + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  (this, that) match { + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  ^ + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:51:5: match may not be exhaustive. + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  (this, that) match { + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  ^ + + + + + + | => nvdla / Compile / packageBin 1s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 15s + | => hwacha / Compile / compileIncremental 15s + | => sifive_cache / Compile / compileIncremental 15s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:67:5: match may not be exhaustive. + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  (this, that) match { + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s +[warn]  ^ + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 17s + | => treadle / Compile / compileIncremental 17s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 15s + | => boom / Compile / compileIncremental 15s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 2s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 16s + | => hwacha / Compile / compileIncremental 16s + | => sifive_cache / Compile / compileIncremental 16s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 18s + | => treadle / Compile / compileIncremental 18s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 16s + | => boom / Compile / compileIncremental 16s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + | => nvdla / Compile / packageBin 3s + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 17s + | => hwacha / Compile / compileIncremental 17s + | => sifive_cache / Compile / compileIncremental 17s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 19s + | => treadle / Compile / compileIncremental 19s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + + | => icenet / Compile / compileIncremental 17s + | => boom / Compile / compileIncremental 17s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/Directory.scala:113:20: method apply in object LFSR16 is deprecated (since 3.2): Use chisel3.util.random.LFSR(16) for a 16-bit LFSR + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  val victimLFSR = LFSR16(params.dirReg(ren))(InclusiveCacheParameters.lfsrBits-1, 0) + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:77:24: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  clientFn = { _ => TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:77:51: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  clientFn = { _ => TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:82:24: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  managerFn = { m => TLManagerPortParameters( + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:83:42: method copy in class TLSlaveParameters is deprecated: Use v1copy instead of copy + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  managers = m.managers.map { m => m.copy( + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:18:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  extends firrtl.ComposableOptions { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:20:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  def vcdOutputFileName(optionsManager: ExecutionOptionsManager): String = { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:31:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:121:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] class InterpreterOptionsManager extends ExecutionOptionsManager("interpreter") with HasInterpreterSuite + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:123:35: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] trait HasInterpreterSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:123:64: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] trait HasInterpreterSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:124:10: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  self : ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/InterpretiveTester.scala:24:29: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  val commonOptions: firrtl.CommonOptions = optionsManager.commonOptions + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ReplConfig.scala:14:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  extends firrtl.ComposableOptions + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ReplConfig.scala:17:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:10:29: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  optionsManager: ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions): Circuit = { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:11:24: class LowFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[LowFirrtlEmitter]) + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  val compiler = new LowFirrtlCompiler + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:14:72: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  val compileResult = compiler.compileAndEmit(firrtl.CircuitState(c, ChirrtlForm, annotations)) + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/VcdReplayTester.scala:215:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  extends firrtl.ComposableOptions + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/VcdReplayTester.scala:218:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 18s + | => hwacha / Compile / compileIncremental 18s + | => sifive_cache / Compile / compileIncremental 18s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:14:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  extends firrtl.ComposableOptions { + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:18:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:55:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn] class VCDOptionsManager extends ExecutionOptionsManager("vcd") with HasVCDConfig + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 20s + | => treadle / Compile / compileIncremental 20s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => icenet / Compile / compileIncremental 18s + | => boom / Compile / compileIncremental 18s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s +[warn] there were 61 feature warnings; re-run with -feature for details + + + + + + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s +[warn] one warning found + + + + + + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => ariane / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / compile 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 19s + | => sifive_cache / Compile / compileIncremental 19s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 21s + | => treadle / Compile / compileIncremental 21s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 19s + | => boom / Compile / compileIncremental 19s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + | => ariane / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 20s + | => sifive_cache / Compile / compileIncremental 20s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 22s + | => treadle / Compile / compileIncremental 22s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 20s + | => boom / Compile / compileIncremental 20s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 21s + | => sifive_cache / Compile / compileIncremental 21s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 23s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 21s + | => boom / Compile / compileIncremental 21s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:43:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] ) extends firrtl.ComposableOptions { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:45:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  def vcdOutputFileName(optionsManager: ExecutionOptionsManager): String = { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:79:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:219:18: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  val tester = TreadleTester(firrtlInput, optionsManager) + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:234:37: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] class TreadleOptionsManager extends ExecutionOptionsManager("engine") with HasTreadleSuite + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:236:31: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] trait HasTreadleSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:236:60: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] trait HasTreadleSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:237:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Regression.scala:85:18: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  val tester = TreadleTester(gcdFirrtl, manager) + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Regression.scala:180:43: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  val tester = timer("tester assembly")(TreadleTester(input, optionsManager)) + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:267:40: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] case class TreadleFirrtlFormHint(form: CircuitForm) extends NoTargetAnnotation + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:275:29: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  case "low" => LowForm + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:276:29: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  case "high" => HighForm + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:277:29: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  case "chirrtl" => ChirrtlForm + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:278:29: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  case "unknown" => UnknownForm + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 22s + | => sifive_cache / Compile / compileIncremental 22s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleTester.scala:48:73: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  def this(input: String, optionsManager: HasTreadleSuite, circuitForm: CircuitForm = ChirrtlForm) = { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleTester.scala:48:87: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  def this(input: String, optionsManager: HasTreadleSuite, circuitForm: CircuitForm = ChirrtlForm) = { + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 24s + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 22s + | => boom / Compile / compileIncremental 22s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 25s +[warn] 25 warnings found + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => firrtl_interpreter / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 25s + + + + + + | => firrtl_interpreter / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => firrtl_interpreter / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/repl/ReplConfig.scala:74:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => firrtl_interpreter / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  self: ExecutionOptionsManager => + + + + + + | => firrtl_interpreter / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/TreadleStage.scala:42:39: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def checkFormTransform(circuitForm: CircuitForm, annotations: AnnotationSeq): AnnotationSeq = { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/TreadleStage.scala:44:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  case ChirrtlForm => chirrtlPhases + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:45:43: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  val form = annotationSeq.collectFirst { case TreadleFirrtlFormHint(form) => form }.getOrElse(UnknownForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:45:98: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  val form = annotationSeq.collectFirst { case TreadleFirrtlFormHint(form) => form }.getOrElse(UnknownForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:65:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:65:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:66:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:66:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:81:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:81:41: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:83:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:83:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:86:23: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  if (state.form == ChirrtlForm || state.form == UnknownForm) { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:86:52: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  if (state.form == ChirrtlForm || state.form == UnknownForm) { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:88:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:88:48: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = ChirrtlForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:89:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:89:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:51: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:73: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:86: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:101:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:101:41: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:103:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:103:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:106:23: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  if (state.form == HighForm) { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:108:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:108:48: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:109:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:109:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:49: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:71: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:81: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:136:11: class LowFirrtlOptimization in package firrtl is deprecated (since FIRRTL 1.3): Use 'new TransformManager(Forms.LowFormOptimized, Forms.LowForm)'. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  new LowFirrtlOptimization, + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:67:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:67:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:69:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:69:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:27:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:27:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:28:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:28:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:30:27: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] object ToLoFirrtl extends Compiler { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:5: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:27: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:40: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:34:15: class LowFirrtlOptimization in package firrtl is deprecated (since FIRRTL 1.3): Use 'new TransformManager(Forms.LowFormOptimized, Forms.LowForm)'. This will be removed in 1.4. + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  Seq(new LowFirrtlOptimization, new BlackBoxSourceHelper, new FixupOps) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:38:29: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  optionsManager: ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions): Circuit = { + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:41:63: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  val compileResult = compileAndEmit(firrtl.CircuitState(c, ChirrtlForm, annotations)) + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:51:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:51:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:52:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def outputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:52:33: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  def outputForm: CircuitForm = HighForm + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => firrtl_interpreter / Compile / packageBin 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s + + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/generators/icenet/src/main/scala/TCAM.scala:27:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:28:20: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  extends firrtl.ComposableOptions {} + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:31:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  self: ExecutionOptionsManager => + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:95:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn] class VCDOptionsManager extends ExecutionOptionsManager("vcd") with HasVCDConfig + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s +[warn]  ^ + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 23s + | => sifive_cache / Compile / compileIncremental 23s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => sifive_cache / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 25s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => sifive_cache / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => sifive_cache / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s +[warn] there were 650 feature warnings; re-run with -feature for details + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => sifive_cache / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s +[warn] 6 warnings found + + + + + + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => sifive_cache / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + | => sifive_cache / Compile / compile 0s + | => icenet / Compile / compileIncremental 23s + | => boom / Compile / compileIncremental 23s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + | => sifive_cache / Compile / compile 0s + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 24s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 26s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 24s + | => boom / Compile / compileIncremental 24s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 25s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 27s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 25s + | => boom / Compile / compileIncremental 25s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 26s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 28s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 26s + | => boom / Compile / compileIncremental 26s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 27s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 29s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 27s + | => boom / Compile / compileIncremental 27s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 28s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 30s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 28s + | => boom / Compile / compileIncremental 28s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s +[warn] there were 642 feature warnings; re-run with -feature for details + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s +[warn] two warnings found + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 29s + | => treadle / Compile / compileIncremental 31s + + + + + + | => icenet / Compile / compileIncremental 29s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 31s + + + + + + | => icenet / Compile / compile 0s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + | => icenet / Compile / compile 0s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + | => icenet / Compile / packageBin 0s + | => boom / Compile / compileIncremental 29s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 30s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 31s + | => treadle / Compile / compileIncremental 32s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 31s + | => treadle / Compile / compileIncremental 33s + + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 31s + | => treadle / Compile / compileIncremental 33s +[warn] 74 warnings found + + + + + + | => boom / Compile / compileIncremental 30s + | => hwacha / Compile / compileIncremental 31s + | => treadle / Compile / compileIncremental 33s + + + + + + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + | => treadle / Compile / compileIncremental 33s + + + + + + | => treadle / Compile / compile 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + + + + + + | => treadle / Compile / compile 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => treadle / Compile / compile 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + + + + + + | => treadle / Compile / packageBin 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s +[info] Compiling 24 Scala sources to /home/riscvuser/chipyard/tools/chisel-testers/target/scala-2.12/classes ... + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 31s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 31s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 32s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 32s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 33s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 33s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 34s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 34s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 35s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:59:87: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  harness.write(VerilatorCppHarnessGenerator.codeGen(dut, CircuitState(chirrtl, ChirrtlForm), waveform)) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:81:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  assert(chisel3.Driver.verilogToCpp( + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:87:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  assert(chisel3.Driver.cppToExe(dutName, dir).! == 0) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:106:34: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val circuit = chisel3.Driver.elaborate(dutGen) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:106:27: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val circuit = chisel3.Driver.elaborate(dutGen) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:112:54: method emit in object Driver is deprecated (since 3.2.2): Use (new chisel3.stage.ChiselStage).emitChirrtl + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val chirrtl = firrtl.Parser.parse(chisel3.Driver.emit(circuit)) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:112:47: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val chirrtl = firrtl.Parser.parse(chisel3.Driver.emit(circuit)) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:118:80: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  (new firrtl.LowFirrtlEmitter).emit(firrtl.CircuitState(chirrtl, firrtl.ChirrtlForm), writer) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:123:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:124:47: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  firrtl.CircuitState(chirrtl, firrtl.ChirrtlForm, annotations), + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:22:54: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def elaborate(t: => Module): Unit = chisel3.Driver.elaborate(() => t) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:22:47: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def elaborate(t: => Module): Unit = chisel3.Driver.elaborate(() => t) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:29:63: trait PropertyChecks in package prop is deprecated: PropertyChecks has been moved from org.scalatest.prop to org.scalatestplus.scalacheck and renamed as ScalaCheckPropertyChecks. Please update your imports, as this deprecated type alias will be removed in a future version of ScalaTest. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] class ChiselPropSpec extends PropSpec with ChiselRunners with PropertyChecks { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:38:14: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  Logger.makeScope(optionsManager) { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:140:12: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  Logger.makeScope(optionsManager) { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:141:64: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:141:57: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:243:34: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val circuit = chisel3.Driver.elaborate(dutGen) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:243:27: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val circuit = chisel3.Driver.elaborate(dutGen) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:133:49: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val annos = Driver.filterAnnotations(firrtl.Driver.getAnnotations(optionsManager)) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:135:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:135:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:139:16: object FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case FirrtlExecutionSuccess(_, compiledFirrtl) => + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:43:18: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case ActualDirection.Input => dut_inputs += port + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:44:18: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case ActualDirection.Output => dut_outputs += port + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:108:23: type ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def show_dir(dir: ActualDirection) = dir match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:109:12: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case ActualDirection.Input => "I" + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:110:12: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case ActualDirection.Output => "O" + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:130:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:130:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:149:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:150:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/PeekPokeTesterUtils.scala:37:90: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  getDataNames(dut, separator) partition { case (e, _) => DataMirror.directionOf(e) == ActualDirection.Input } + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/PeekPokeTesterUtils.scala:101:74: method fileListName in object BlackBoxSourceHelper is deprecated (since 1.2): Renamed to defaultFileListName, as the file list name may now be changed with an annotation + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val list_file = new File(dir, firrtl.transforms.BlackBoxSourceHelper.fileListName) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:13:40: type EnumType in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  implicit object EnumPokeable extends Pokeable[EnumType] + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:18:21: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def unapply(elem: Element): Option[Element with IsRuntimePokeable] = elem match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:18:31: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def unapply(elem: Element): Option[Element with IsRuntimePokeable] = elem match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:19:58: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case _: Bits | _: EnumType => Some(elem.asInstanceOf[Element with IsRuntimePokeable]) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:51:26: type ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  def dir(target: Data): ActualDirection = { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:53:26: value DataMirror in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case e: Element => DataMirror.directionOf(e) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:54:17: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  case _ => ActualDirection.Unspecified + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:59:29: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  require(dir(io_port) == ActualDirection.Input, s"poke error: $io_port not an input") + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:68:29: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  require(dir(io_port) == ActualDirection.Output, s"expect error: $io_port not an output") + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:33:11: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] ) extends ComposableOptions + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:41:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  self: ExecutionOptionsManager => + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:147:11: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  extends ExecutionOptionsManager("chisel-testers") + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:151:10: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  with HasFirrtlOptions + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:17:67: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val treadleTester = new TreadleTester(firrtlIR, optionsManager, LowForm) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:130:49: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val annos = Driver.filterAnnotations(firrtl.Driver.getAnnotations(optionsManager)) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:138:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:138:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:136:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:136:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:155:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:156:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:220:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:220:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:229:42: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val externalAnnotations = firrtl.Driver.getAnnotations(optionsManager) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:245:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:246:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:259:38: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  dut, CircuitState(chirrtl, ChirrtlForm, annotations), vcdFile.toString + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:275:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  assert(chisel3.Driver.cppToExe(circuit.name, dir).! == 0) + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 35s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:75:83: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s +[warn]  pred_rf.write(waddr, Vec(((wdata & wmask) | (pred_rf(waddr).asUInt & ~wmask)).toBools)) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 36s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:122:44: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  val wmask = sram_warb.io.out.bits.mask.toBools + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:171:32: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ff_warb.io.out.bits.mask.toBools) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:189:62: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  (io.op.opl.global(i).bits.pred & s1_gpred.pred)(1,0).toBools) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:199:61: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  (io.op.opl.local(i).bits.pred & s1_gpred.pred)(1,0).toBools) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:303:72: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  val deq_idivs_resp = (0 until nSlices).map { tagq.io.deq.bits.fusel.toBool && tagq.io.deq.bits.pred(_) } + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:304:72: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  val deq_fdivs_resp = (0 until nSlices).map { !tagq.io.deq.bits.fusel.toBool && tagq.io.deq.bits.pred(_) } + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:328:43: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  wraw.data := Mux(tagq.io.deq.bits.fusel.toBool, + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:340:62: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  io.idiv.ack.valid := fire_bwq(null, tagq.io.deq.bits.fusel.toBool) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:342:63: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  io.fdiv.ack.valid := fire_bwq(null, !tagq.io.deq.bits.fusel.toBool) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:350:64: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  icntr.io.inc.update := fire_bwq(null, tagq.io.deq.bits.fusel.toBool) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:356:65: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  fcntr.io.inc.update := fire_bwq(null, !tagq.io.deq.bits.fusel.toBool) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-mem.scala:256:29: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  val brqs_pred = pred.bits.toBools.grouped(nSlices).map( + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-mem.scala:588:39: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  val mask = rotate(Bool(), mask_base.toBools) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 36s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/rocc-unit.scala:373:50: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val vru_switch_on = io.rocc.cmd.bits.rs1(63).toBool + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/smu.scala:58:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaSMU", sourceId = IdRange(0, p(HwachaNSMUEntries))))))) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/smu.scala:58:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaSMU", sourceId = IdRange(0, p(HwachaNSMUEntries))))))) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vector-unit.scala:11:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vector-unit.scala:12:9: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  Seq(TLClientParameters(name = "HwachaVMU", sourceId = IdRange(0, p(HwachaNVMTEntries))))))) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vfu-rfirst.scala:38:72: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val pred = PriorityEncoderOH((io.req.bits.active & io.req.bits.pred).toBools) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vfu-rfirst.scala:115:11: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  (m._1.toBools zip io.lane.map(_.bits.first)) map { case (v, f) => dgate(v, f) } reduce(_ | _) + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:513:12: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val f3 = withReset(reset.toBool || f3_clear) { + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:518:21: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val f3_bpd_resp = withReset(reset.toBool || f3_clear) { + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:854:12: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val f4 = withReset(reset.toBool || f4_clear) { + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:47:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:47:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:177:37: method apply in object LFSR16 is deprecated (since 3.2): Use chisel3.util.random.LFSR(16) for a 16-bit LFSR + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val repl_way = if (isDM) 0.U else LFSR16(refill_fire)(log2Ceil(nWays)-1,0) + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:379:83: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  protected def cacheClientParameters = cfg.scratch.map(x => Seq()).getOrElse(Seq(TLClientParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:384:44: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  protected def mmioClientParameters = Seq(TLClientParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:389:31: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val node = TLClientNode(Seq(TLClientPortParameters( + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vru.scala:402:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaVRU", sourceId = IdRange(0,5)))))) + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vru.scala:402:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaVRU", sourceId = IdRange(0,5)))))) + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 37s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/util/util.scala:393:31: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn]  def apply[T <: chisel3.core.Data](in: Vec[Vec[T]]) = { + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/util/util.scala:420:35: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn] class Compactor[T <: chisel3.core.Data](n: Int, k: Int, gen: T) extends Module + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s +[warn]  ^ + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 37s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s +[warn] there were 11 feature warnings; re-run with -feature for details + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s +[warn] 63 warnings found + + + + + + | => chisel_testers / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / compile 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => chisel_testers / Compile / packageBin 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s +[info] Compiling 34 Scala sources to /home/riscvuser/chipyard/generators/gemmini/target/scala-2.12/classes ... + + + + + + | => chisel_testers / Compile / packageBin 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s +[info] Compiling 43 Scala sources to /home/riscvuser/chipyard/tools/dsptools/src/target/scala-2.12/classes ... + + + + + + | => chisel_testers / Compile / packageBin 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s +[info] Compiling 10 Scala sources to /home/riscvuser/chipyard/generators/sha3/target/scala-2.12/classes ... + + + + + + | => chisel_testers / Compile / packageBin 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 38s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 38s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 0s + | => sha3 / Compile / compileIncremental 0s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 39s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 39s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 1s + | => sha3 / Compile / compileIncremental 1s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 40s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 40s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:95:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(buffer_wen) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:97:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(buffer_waddr) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:99:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(buffer_wdata) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:101:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(buffer_rdata) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:161:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(words_filled) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:164:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(byte_offset) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/dmem.scala:17:31: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  val node = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters("SHA3"))))) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/dmem.scala:17:58: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  val node = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters("SHA3"))))) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/iota.scala:27:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  debug(const) + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 2s + | => sha3 / Compile / compileIncremental 2s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 41s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 41s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 3s + | => sha3 / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 42s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 42s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s +[warn] there were 217 feature warnings; re-run with -feature for details + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s +[warn] 10 warnings found + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => sha3 / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + | => sha3 / Compile / packageBin 0s + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + + | => dsptools / Compile / compileIncremental 4s + | => gemmini / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 43s + + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 44s + + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 44s + + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 43s + | => hwacha / Compile / compileIncremental 44s + + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:70:19: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  logger.Logger.makeScope(optionsManager) { + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:71:64: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:71:57: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:90:10: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  with HasFirrtlOptions + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/algebra_types/helpers/Sign.scala:51:24: method litArg in class Data is deprecated (since 3.2): litArg is deprecated, use litOption or litTo*Option + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val zeroLit = zero.litArg.map{_.num != BigInt(0)} + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/algebra_types/helpers/Sign.scala:52:23: method litArg in class Data is deprecated (since 3.2): litArg is deprecated, use litOption or litTo*Option + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val negLit = neg.litArg.map{_.num != BigInt(0)} + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/blackbox_compatibility/DspRealVerilatorBB.scala:12:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  setResource("/" + this.getClass.getSimpleName + ".v") + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/DspTesterOptions.scala:24:38: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  initClkPeriods: Int = 5) extends ComposableOptions { + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/DspTesterOptions.scala:38:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  self: ExecutionOptionsManager => + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/VerilogTbDump.scala:33:38: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  DataMirror.directionOf(dat) == ActualDirection.Input + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:18:22: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] class gainOffCorr[T<:Data:Ring](genIn: => T,genGain: => T,genOff: => T,genOut: => T, numLanes: Int) extends Module { + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:20:24: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val inputVal = Input(Vec(numLanes, genIn)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:20:30: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val inputVal = Input(Vec(numLanes, genIn)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:21:24: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val gainCorr = Input(Vec(numLanes, genGain)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:21:30: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val gainCorr = Input(Vec(numLanes, genGain)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:22:25: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val offsetCorr = Input(Vec(numLanes, genOff)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:22:31: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val offsetCorr = Input(Vec(numLanes, genOff)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:23:24: value Output in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val outputVal = Output(Vec(numLanes, genOut)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:23:31: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  val outputVal = Output(Vec(numLanes, genOut)) + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + | => dsptools / Compile / compileIncremental 5s + | => gemmini / Compile / compileIncremental 5s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 44s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 44s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 6s + | => gemmini / Compile / compileIncremental 6s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 45s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 45s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Controller.scala:50:54: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  (if (garbage_bit.getWidth > 0) garbage_bit.toBool() else true.B) + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/ROB.scala:164:107: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  Cat(is_st_and_must_wait_for_prior_ex_config) | Cat(is_ex_config_and_must_wait_for_prior_st)).toBools().reverse + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Util.scala:51:24: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  val exp = u.toBools().zipWithIndex.map { case (b, i) => + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Util.scala:62:24: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  val exp = u.toBools().zipWithIndex.map { case (b, i) => + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s +[warn]  ^ + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 7s + | => gemmini / Compile / compileIncremental 7s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 46s + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 46s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s +[warn] there were 31 feature warnings; re-run with -feature for details + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s +[warn] 20 warnings found + + + + + + | => dsptools / Compile / compileIncremental 8s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compile 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / compile 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => dsptools / Compile / packageBin 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s +[info] Compiling 33 Scala sources to /home/riscvuser/chipyard/tools/dsptools/rocket/src/target/scala-2.12/classes ... + + + + + + | => dsptools / Compile / packageBin 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 8s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 47s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 47s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 0s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 9s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 48s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 48s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 1s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:46: imported `AXI4StreamMasterPortParameters' is permanently hidden by definition of object AXI4StreamMasterPortParameters in package axi4stream + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:78: imported `AXI4StreamNexusNode' is permanently hidden by definition of object AXI4StreamNexusNode in package axi4stream + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:99: imported `AXI4StreamSlavePortParameters' is permanently hidden by definition of object AXI4StreamSlavePortParameters in package axi4stream + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 10s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 49s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 49s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 2s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 11s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 50s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 50s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/MMAPFIFO.scala:1:1:  + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] Found names but no class, trait or object is defined in the compilation unit. + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] The incremental compiler cannot record the dependency information in such case. + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] Some errors like unused import referring to a non-existent class might not be reported. + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn]   + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] package freechips.rocketchip.amba.axi4stream + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] there were 1208 feature warnings; re-run with -feature for details + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s +[warn] 5 warnings found + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => rocket-dsptools / Compile / compileIncremental 3s + | => gemmini / Compile / compileIncremental 12s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => gemmini / Compile / compile 0s + | => rocket-dsptools / Compile / compileIncremental 3s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + | => gemmini / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 51s + + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/dspblocks/DspBlock.scala:117:24: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  BundleBridgeToTL(TLClientPortParameters(Seq(TLClientParameters("bundleBridgeToTL")))) := + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/dspblocks/DspBlock.scala:117:51: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  BundleBridgeToTL(TLClientPortParameters(Seq(TLClientParameters("bundleBridgeToTL")))) := + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:20:30: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  new TLToBundleBridgeNode(TLManagerPortParameters(Seq(managerParams), beatBytes)) + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:38:11: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  apply(TLManagerPortParameters(Seq(managerParams), beatBytes)) + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:52:26: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  BundleBridgeToTLNode(TLClientPortParameters(Seq(clientParams), beatBytes)) + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:71:11: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  apply(TLClientPortParameters(Seq(clientParams), beatBytes)) + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s +[warn]  ^ + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 51s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s +[warn] there were 2643 feature warnings; re-run with -feature for details + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s +[warn] 12 warnings found + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s +[warn] there were 3031 feature warnings; re-run with -feature for details + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s +[warn] 24 warnings found + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => rocket-dsptools / Compile / compileIncremental 4s + | => boom / Compile / compileIncremental 52s + | => hwacha / Compile / compileIncremental 52s + + + + + + | => hwacha / Compile / compile 0s + | => boom / Compile / compile 0s + | => rocket-dsptools / Compile / compileIncremental 4s + + + + + + | => hwacha / Compile / compile 0s + | => boom / Compile / compile 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + | => boom / Compile / packageBin / mappings 0s + | => hwacha / Compile / compile 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + | => boom / Compile / packageBin 0s + | => hwacha / Compile / compile 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + | => hwacha / Compile / packageBin 0s + | => boom / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 5s +[info] Compiling 3 Scala sources to /home/riscvuser/chipyard/generators/tracegen/target/scala-2.12/classes ... + + + + + + | => hwacha / Compile / packageBin 0s + | => boom / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + | => tracegen / Compile / compileIncremental 0s + | => hwacha / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + | => tracegen / Compile / compileIncremental 0s + | => hwacha / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 5s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s +[warn] there were 50 feature warnings; re-run with -feature for details + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s +[warn] 11 warnings found + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s +[warn] there were 101 feature warnings; re-run with -feature for details + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s +[warn] one warning found + + + + + + | => tracegen / Compile / compileIncremental 1s + | => rocket-dsptools / Compile / compileIncremental 6s + + + + + + + | => rocket-dsptools / Compile / compile 0s + + + + + + + | => rocket-dsptools / Compile / compile 0s + + + + + + + | => chipyard / Compile / compileIncremental 0s +[info] Compiling 29 Scala sources to /home/riscvuser/chipyard/generators/chipyard/target/scala-2.12/classes ... + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 1s + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/IOBinders.scala:402:13: match may not be exhaustive. + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] It would fail on the following input: None + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  system.traceIO match { case Some(t) => t.traces.map(tileTrace => SimDromajoBridge(tileTrace)(system.p)) } + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:14:38: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  val node = TLHelper.makeClientNode(TLClientParameters( + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:32:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:86:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:95:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( + + + + + + | => chipyard / Compile / compileIncremental 2s +[warn]  ^ + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 2s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 3s + + + + + + | => chipyard / Compile / compileIncremental 4s + + + + + + | => chipyard / Compile / compileIncremental 4s +[warn] there were 8 feature warnings; re-run with -feature for details + + + + + + | => chipyard / Compile / compileIncremental 4s +[warn] 6 warnings found + + + + + + | => chipyard / Compile / compileIncremental 4s + + + + + + | => chipyard / Compile / compileIncremental 4s + + + + + + | => chipyard / Compile / compile 0s + + + + + + | => chipyard / Compile / packageBin 0s + + + + + + | => chipyard / Compile / bgRunMain 0s + + + + + + | => chipyard / Compile / bgRunMain 0s + + + + + + | => chipyard / Compile / bgRunMain 0s + + + + + + | => chipyard / Compile / bgRunMain 0s + + + + + + | => chipyard / Compile / bgRunMain 0s + + + + + + | => chipyard / Compile / bgRunMain 0s +[info] running chipyard.Generator --target-dir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig --name chipyard.TestHarness.RocketConfig --top-module chipyard.TestHarness --legacy-configs chipyard.RocketConfig + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 0s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s +[info] [0.001] Elaborating design... + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 1s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 2s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 3s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 4s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 5s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 6s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 7s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s +L2 InclusiveCache Client Map: + 0 <= serial + 1 <= Core 0 DCache + 2 <= Core 0 ICache + + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 8s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 9s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s +Interrupt map (2 harts 1 interrupts): + [1, 1] => uart_0 + + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 10s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 11s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 12s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 13s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 14s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 15s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 16s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s + + + + + + | => chipyard / Compile / runMain 17s +: Warning (simple_bus_reg): Node /soc/subsystem_pbus_clock missing or empty reg/ranges property + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + compatible = "freechips,rocketchip-unknown-dev"; + model = "freechips,rocketchip-unknown"; + L18: aliases { + serial0 = &L14; + }; + L17: cpus { + #address-cells = <1>; + #size-cells = <0>; + L9: cpu@0 { + clock-frequency = <0>; + compatible = "sifive,rocket0", "riscv"; + d-cache-block-size = <64>; + d-cache-sets = <64>; + d-cache-size = <16384>; + d-tlb-sets = <1>; + d-tlb-size = <32>; + device_type = "cpu"; + hardware-exec-breakpoint-count = <1>; + i-cache-block-size = <64>; + i-cache-sets = <64>; + i-cache-size = <16384>; + i-tlb-sets = <1>; + i-tlb-size = <32>; + mmu-type = "riscv,sv39"; + next-level-cache = <&L2>; + reg = <0x0>; + riscv,isa = "rv64imafdc"; + riscv,pmpregions = <8>; + status = "okay"; + timebase-frequency = <1000000>; + tlb-split; + L7: interrupt-controller { + #interrupt-cells = <1>; + compatible = "riscv,cpu-intc"; + interrupt-controller; + }; + }; + }; + L11: memory@80000000 { + device_type = "memory"; + reg = <0x80000000 0x10000000>; + }; + L16: soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "freechips,rocketchip-unknown-soc", "simple-bus"; + ranges; + L2: cache-controller@2010000 { + cache-block-size = <64>; + cache-level = <2>; + cache-sets = <1024>; + cache-size = <524288>; + cache-unified; + compatible = "sifive,inclusivecache0", "cache"; + next-level-cache = <&L11>; + reg = <0x2010000 0x1000>; + reg-names = "control"; + sifive,mshr-count = <7>; + }; + L4: clint@2000000 { + compatible = "riscv,clint0"; + interrupts-extended = <&L7 3 &L7 7>; + reg = <0x2000000 0x10000>; + reg-names = "control"; + }; + L5: debug-controller@0 { + compatible = "sifive,debug-013", "riscv,debug-013"; + debug-attach = "dmi"; + interrupts-extended = <&L7 65535>; + reg = <0x0 0x1000>; + reg-names = "control"; + }; + L1: error-device@3000 { + compatible = "sifive,error0"; + reg = <0x3000 0x1000>; + }; + L3: interrupt-controller@c000000 { + #interrupt-cells = <1>; + compatible = "riscv,plic0"; + interrupt-controller; + interrupts-extended = <&L7 11 &L7 9>; + reg = <0xc000000 0x4000000>; + reg-names = "control"; + riscv,max-priority = <1>; + riscv,ndev = <1>; + }; + L13: rom@10000 { + compatible = "sifive,rom0"; + reg = <0x10000 0x10000>; + reg-names = "mem"; + }; + L14: serial@54000000 { + clocks = <&L0>; + compatible = "sifive,uart0"; + interrupt-parent = <&L3>; + interrupts = <1>; + reg = <0x54000000 0x1000>; + reg-names = "control"; + }; + L0: subsystem_pbus_clock { + #clock-cells = <0>; + clock-frequency = <100000000>; + clock-output-names = "subsystem_pbus_clock"; + compatible = "fixed-clock"; + }; + }; +}; + +Generated Address Map + 0 - 1000 ARWX debug-controller@0 + 3000 - 4000 ARWX error-device@3000 + 10000 - 20000 R X rom@10000 + 2000000 - 2010000 ARW clint@2000000 + 2010000 - 2011000 ARW cache-controller@2010000 + c000000 - 10000000 ARW interrupt-controller@c000000 + 54000000 - 54001000 ARW serial@54000000 + 80000000 - 90000000 ARWXC memory@80000000 + + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s +[deprecated] Bits.scala:373 (29 calls): do_toBool is deprecated: "Use asBool instead" +[warn] There were 1 deprecated function(s) used. These may stop compiling in a future release - you are encouraged to fix these issues. +[warn] Line numbers for deprecations reported by Chisel may be inaccurate; enable scalac compiler deprecation warnings via either of the following methods: +[warn] In the sbt interactive console, enter: +[warn] set scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation") +[warn] or, in your build.sbt, add the line: +[warn] scalacOptions := Seq("-unchecked", "-deprecation") +[info] [17.408] Done elaborating. + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 18s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 19s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 20s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 21s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 22s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 23s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 24s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 25s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 26s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 27s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 28s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 29s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 30s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 31s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 32s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 33s + + + + + + | => chipyard / Compile / runMain 34s + + + + + + | => chipyard / Compile / runMain 34s + + + + + + | => chipyard / Compile / runMain 34s + + + + + + +[success] Total time: 103 s (01:43), completed Dec 23, 2020, 3:46:47 AM +cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project tapeout" "runMain barstools.tapeout.transforms.GenerateTopAndHarness -o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v -tho /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v -i /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.fir --syn-top ChipTop --harness-top TestHarness -faf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.anno.json -tsaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.anno.json -tdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f -tsf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.fir -thaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.anno.json -hdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f -thf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.fir --infer-rw --repl-seq-mem -c:TestHarness:-o:/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -thconf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig" && touch /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +[info] Loading settings for project chipyard-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/project + + + + + + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / Compile / previousCompile 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project chipyardRoot from build.sbt ... +[info] Loading settings for project barstoolsMacros from build.sbt ... +[info] Loading settings for project mdf from build.sbt ... +[info] Loading settings for project gemmini from build.sbt ... +[info] Loading settings for project ariane from build.sbt ... +[info] Loading settings for project boom from build.sbt ... +[info] Loading settings for project hwacha from build.sbt ... +[info] Loading settings for project icenet from build.sbt ... +[info] Loading settings for project testchipip from build.sbt ... +[info] Loading settings for project rocketConfig from build.sbt ... +[info] Loading settings for project hardfloat from build.sbt ... +[info] Loading settings for project chisel_testers from build.sbt ... +[info] Loading settings for project treadle from build.sbt ... +[info] Loading settings for project firrtl_interpreter from build.sbt ... +[info] Loading settings for project chisel from build.sbt ... +[info] Loading settings for project sim-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project + + + + + + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / Compile / compileIncSetup 0s + + + + + + +[info] Loading settings for project firesim from build.sbt ... +[info] Loading settings for project midas from build.sbt ... +[info] Loading settings for project targetutils from build.sbt ... +[info] Resolving key references (32007 settings) ... +[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[info] Set current project to tapeout (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + + + + + + + + + + + | => chisel / Compile / unmanagedClasspath 0s + | => sha3 / dependencyPositions 0s + | => tracegen / dependencyPositions 0s + | => sifive_cache / dependencyPositions 0s + | => boom / dependencyPositions 0s + | => utilities / dependencyPositions 0s + | => rocket-dsptools / dependencyPositions 0s + | => chipyard / dependencyPositions 0s + | => hwacha / dependencyPositions 0s + | => gemmini / dependencyPositions 0s + | => treadle / dependencyPositions 0s + | => firrtl_interpreter / dependencyPositions 0s + | => chisel_testers / dependencyPositions 0s + | => iocell / dependencyPositions 0s + + + + + + + | => icenet / csrFallbackDependencies 0s + | => sha3 / csrFallbackDependencies 0s + | => tracegen / csrFallbackDependencies 0s + | => rocket-dsptools / csrFallbackDependencies 0s + | => sifive_cache / csrFallbackDependencies 0s + | => core / csrProject 0s + | => gemmini / csrFallbackDependencies 0s + | => tapeout / csrFallbackDependencies 0s + | => core / moduleSettings 0s + | => chisel / csrProject 0s + | => treadle / update 0s + | => rocketConfig / update 0s + | => tapeout / Compile / copyResources 0s + + + + + + + + + + + + + + + + + + + | => core / projectDescriptors 0s + + + + + + + + + + + + + + + + | => rocketchip / projectDescriptors 0s + | => hardfloat / update 0s + | => chisel_testers / update 0s + | => iocell / update 0s + + + + + + + + + + + + | => rocket-dsptools / update 0s + | => ariane / update 0s + | => sha3 / update 0s + | => sifive_cache / update 0s + | => hwacha / update 0s + | => nvdla / update 0s + | => sifive_blocks / update 0s + | => chipyard / projectDescriptors 0s + + + + + + + + + + + + + + + + | => utilities / update 0s + | => boom / update 0s + | => icenet / update 0s + | => gemmini / update 0s + + + + + + + + + + + + + + + + + + + | => chipyard / update 0s + + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + + | => tapeout / update 0s +[info] Updating  + + + + + + + + + + + + + + + + + + | => tapeout / update 0s +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 0.0% [ ] 0 B (0 B / s) + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + | => tapeout / update 0s +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 100.0% [##########] 3.8 KiB (14.5 KiB / s) + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + + | => tapeout / update 0s +[info] Resolved dependencies + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + | => tapeout / update 0s + + + + + + + + + + + + + + + + + | => tapeout / update 1s +[info] Fetching artifacts of  + + + + + + + + + + + + + + + + | => tapeout / update 1s +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 0.0% [ ] 0 B (0 B / s) +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 28.2% [## ] 53.6 KiB (1.7 MiB / s) +https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? + 100.0% [##########] 189.7 KiB (3.6 MiB / s) +[info] Fetched artifacts of  + + + + + + + + + + + + + + + | => tapeout / update 1s + + + + + + + + + + + + + + + | => tapeout / update 1s + + + + + + + + + + + + + + + | => tapeout / update 1s + + + + + + + + + + + + + + + | => tapeout / update 1s + + + + + + + + + + + + + + + + + + + + + | => utilities / Compile / managedResources 0s + | => utilities / Compile / scalacOptions 0s + | => targetutils / Compile / scalacOptions 0s + | => treadle / Compile / scalacOptions 0s + | => hwacha / Compile / scalacOptions 0s + | => ariane / Compile / scalacOptions 0s + | => boom / Compile / scalacOptions 0s + | => testchipip / Compile / scalacOptions 0s + | => dsptools / Compile / scalacOptions 0s + | => rocketMacros / Compile / scalacOptions 0s + | => sifive_blocks / Compile / scalacOptions 0s + | => rocket-dsptools / Compile / scalacOptions 0s + | => core / Compile / scalacOptions 0s + | => hardfloat / Compile / scalacOptions 0s + | => sha3 / Compile / scalacOptions 0s + | => firrtl_interpreter / Compile / scalacOptions 0s + | => tracegen / Compile / scalacOptions 0s + | => macros / Compile / scalacOptions 0s + | => icenet / Compile / scalacOptions 0s + | => chisel / Compile / buildInfo 0s + | => ariane / Compile / unmanagedResources / inputFileStamps 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + | => treadle / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => ariane / Compile / unmanagedResources / inputFileStamps 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / copyResources 0s + | => treadle / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / copyResources 0s + | => treadle / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + | => firrtl_interpreter / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => ariane / Compile / copyResources 0s + | => treadle / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + | => macros / Compile / packageBin / packageOptions 0s + | => core / Compile / externalHooks 0s + | => treadle / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + + + + + | => macros / Compile / packageBin / packageOptions 0s + | => core / Compile / externalHooks 0s + | => treadle / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + + + + | => macros / Compile / packageBin / packageOptions 0s + | => core / Compile / externalHooks 0s + | => treadle / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + + + + | => core / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + + + + + | => chisel / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + + + + + + + + | => chisel / Compile / previousCompile 0s + | => nvdla / Compile / unmanagedResources / inputFileStamps 0s + + + + + + + + + + + + + + + + + + + + | => iocell / Compile / compileIncremental 0s + | => targetutils / Compile / compileIncremental 0s + | => chisel / Compile / packageBin 0s + | => chisel_testers / Compile / previousCompile 0s + | => nvdla / Compile / copyResources 0s + + + + + + + + + + + + + + + + + + + + + + | => dsptools / Compile / previousCompile 0s + | => hardfloat / Compile / compileIncremental 0s + | => nvdla / Compile / copyResources 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + + + + + + + + + + + + + + + + + | => sha3 / Compile / compileIncremental 0s + | => nvdla / Compile / compileIncremental 0s + | => ariane / Compile / previousCompile 0s + | => hwacha / Compile / previousCompile 0s + | => sifive_blocks / Compile / previousCompile 0s + | => rocket-dsptools / Compile / previousCompile 0s + | => sifive_cache / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + | => sifive_blocks / Compile / compileIncremental 0s + | => nvdla / Compile / packageBin 0s + | => rocket-dsptools / Compile / compileIncremental 0s + | => ariane / Compile / compileIncremental 0s + | => hwacha / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + | => hwacha / Compile / packageBin 0s + | => testchipip / Compile / previousCompile 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + | => testchipip / Compile / mainClass 0s + | => testchipip / Compile / packageBin / mappings 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + | => boom / Compile / previousCompile 0s + | => gemmini / Compile / previousCompile 0s + | => icenet / Compile / previousCompile 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + | => boom / Compile / previousCompile 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + | => boom / Compile / compileIncremental 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + | => tracegen / Compile / compileIncremental 0s + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / packageBin 0s + + + + + + + + + + + + + + + + + + + + + + + | => ariane / Compile / packageBin 1s + + + + + + + + + + + + + + + + + + + + + + + | => chipyard / Compile / previousCompile 0s + + + + + + + + + + + + + + + + + + + + + + + | => chipyard / Compile / compileIncremental 0s +[info] Compiling 27 Scala sources to /home/riscvuser/chipyard/tools/barstools/tapeout/target/scala-2.12/classes ... + + + + + + + + + + + + + + + + + + + + + + | => chipyard / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:97:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  def getAnno = Annotation(target, classOf[ClkSrcTransform], anno.serialize) + + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:113:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  def getAnno = Annotation(target, classOf[ClkSrcTransform], anno.serialize) + + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:136:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  case Annotation(f, t, s) if t == classOf[ClkSrcTransform] => f match { + + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:232:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  case chisel3.core.ActualDirection.Input => + + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:236:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  case chisel3.core.ActualDirection.Output => + + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:12:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:12:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:13:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:13:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:19:43: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  val collectedAnnos = HasClkAnnotation(getMyAnnotations(state)) + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:22:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  case None => CircuitState(state.circuit, LowForm) + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:16:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:16:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:17:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:17:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:23:43: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  val collectedAnnos = HasPadAnnotation(getMyAnnotations(state)) + + + + + + | => tapeout / Compile / compileIncremental 5s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 5s + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/ChiselTopModule.scala:30:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case chisel3.core.ActualDirection.Input => + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:39:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def getAnno = Annotation(target, classOf[AddIOPadsTransform], anno.serialize) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:69:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def getAnno = Annotation(target, classOf[AddIOPadsTransform], anno.serialize) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:99:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case Annotation(f, t, s) if t == classOf[AddIOPadsTransform] => f match { + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AddSuffixToModuleNames.scala:26:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AddSuffixToModuleNames.scala:27:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AvoidExtModuleCollisions.scala:12:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AvoidExtModuleCollisions.scala:13:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ConvertToExtModPass.scala:19:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ConvertToExtModPass.scala:20:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/EnumerateModules.scala:24:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/EnumerateModules.scala:25:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:16:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] trait HasTapeoutOptions { self: ExecutionOptionsManager with HasFirrtlOptions => + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:150:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  val optionsManager = new ExecutionOptionsManager("tapeout") with HasFirrtlOptions with HasTapeoutOptions + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:150:70: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  val optionsManager = new ExecutionOptionsManager("tapeout") with HasFirrtlOptions with HasTapeoutOptions + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:187:27: class FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  protected def dump(res: FirrtlExecutionSuccess, firFile: Option[String], annoFile: Option[String]): Unit = { + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:209:25: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  val result = firrtl.Driver.execute(optionsManager) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:245:32: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  val harnessResult = firrtl.Driver.execute(optionsManager) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ReParentCircuit.scala:16:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ReParentCircuit.scala:17:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/RemoveUnusedModules.scala:14:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/RemoveUnusedModules.scala:15:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm = HighForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:13:47: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def apply(target: ModuleName): Annotation = Annotation(target, classOf[ResetInverterTransform], "invert") + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:15:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case Annotation(m, t, "invert") if t == classOf[ResetInverterTransform] => Some(m) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:46:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:46:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:47:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:47:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:50:5: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  getMyAnnotations(state) match { + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:13:47: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def apply(target: ModuleName): Annotation = Annotation(target, classOf[RetimeTransform], "retime") + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:15:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case Annotation(m, t, "retime") if t == classOf[RetimeTransform] => Some(m) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:21:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:21:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:22:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:22:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  override def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:25:5: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  getMyAnnotations(state) match { + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:20:12: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case Annotation(f, t, s) if t == classOf[firrtl.transforms.BlackBoxTargetDirAnno] => + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:37:5: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  Annotation(CircuitName("All"), classOf[TechnologyLocation], dir) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:41:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:41:32: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:42:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:42:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:47:12: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  case Annotation(f, t, s) if t == classOf[TechnologyLocation] => Some(s) + + + + + + | => tapeout / Compile / compileIncremental 6s +[warn]  ^ + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 6s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 7s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 8s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 9s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s +[warn] there were 8 feature warnings; re-run with -feature for details + + + + + + | => tapeout / Compile / compileIncremental 10s +[warn] 60 warnings found + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compileIncremental 10s + + + + + + | => tapeout / Compile / compile 0s + + + + + + | => tapeout / Compile / compile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => tapeout / Compile / compile 0s + + + + + + | => tapeout / Compile / packageBin 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s + + + + + + | => tapeout / Compile / bgRunMain 0s +[info] running barstools.tapeout.transforms.GenerateTopAndHarness -o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v -tho /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v -i /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.fir --syn-top ChipTop --harness-top TestHarness -faf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.anno.json -tsaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.anno.json -tdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f -tsf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.fir -thaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.anno.json -hdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f -thf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.fir --infer-rw --repl-seq-mem -c:TestHarness:-o:/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -thconf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig + + + + + + | => tapeout / Compile / runMain 0s +------------------------------------------------------------------------------ +Warning: firrtl.Driver is deprecated since 1.2! +Please switch to firrtl.stage.FirrtlMain +------------------------------------------------------------------------------ + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 0s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 1s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 2s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 3s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 4s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 5s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 6s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 7s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 8s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 9s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 10s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 11s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 12s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 13s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s +Computed transform order in: 491.4 ms + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 14s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 15s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 16s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 17s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 18s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 19s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 20s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 21s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 22s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 23s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 24s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 25s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 26s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 27s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 28s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 29s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 30s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 31s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 32s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 33s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 34s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 35s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 36s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 37s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 38s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 39s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 40s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 41s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 42s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 43s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 44s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 45s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 46s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 47s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 48s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 49s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 50s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 51s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 52s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 53s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 54s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 55s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 56s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 57s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 58s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 59s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 60s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 61s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 62s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 63s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 64s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 65s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 66s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 67s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 68s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 69s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 70s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 71s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 72s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 73s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 74s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 75s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 76s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 77s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 78s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 79s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 80s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 81s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 82s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 83s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 84s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 85s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 86s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 87s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 88s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 89s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 90s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 91s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 92s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 93s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 94s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s +Total FIRRTL Compile Time: 81583.1 ms + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 95s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 96s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s +------------------------------------------------------------------------------ +Warning: firrtl.Driver is deprecated since 1.2! +Please switch to firrtl.stage.FirrtlMain +------------------------------------------------------------------------------ + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 97s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 98s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 99s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 100s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 101s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 102s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 103s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 104s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 105s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 106s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s +Computed transform order in: 233.4 ms + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 107s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 108s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 109s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 110s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 111s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 112s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 113s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 114s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 115s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 116s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 117s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 118s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 119s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 120s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 121s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 122s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 123s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 124s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 125s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 126s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 127s + + + + + + | => tapeout / Compile / runMain 128s +Total FIRRTL Compile Time: 20561.7 ms + + + + + + +[success] Total time: 146 s (02:26), completed Dec 23, 2020, 3:49:36 AM +cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project barstoolsMacros" "runMain barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.fir --mode synflops" +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +[info] Loading settings for project chipyard-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/project + + + + + + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / Compile / externalHooks 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project chipyardRoot from build.sbt ... +[info] Loading settings for project barstoolsMacros from build.sbt ... +[info] Loading settings for project mdf from build.sbt ... +[info] Loading settings for project gemmini from build.sbt ... +[info] Loading settings for project ariane from build.sbt ... +[info] Loading settings for project boom from build.sbt ... +[info] Loading settings for project hwacha from build.sbt ... +[info] Loading settings for project icenet from build.sbt ... +[info] Loading settings for project testchipip from build.sbt ... +[info] Loading settings for project rocketConfig from build.sbt ... +[info] Loading settings for project hardfloat from build.sbt ... +[info] Loading settings for project chisel_testers from build.sbt ... +[info] Loading settings for project treadle from build.sbt ... +[info] Loading settings for project firrtl_interpreter from build.sbt ... +[info] Loading settings for project chisel from build.sbt ... +[info] Loading settings for project sim-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project + + + + + + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project firesim from build.sbt ... +[info] Loading settings for project midas from build.sbt ... +[info] Loading settings for project targetutils from build.sbt ... +[info] Resolving key references (32007 settings) ... +[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[info] Set current project to barstoolsMacros (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + + + + + + + + + + + | => core / projectDescriptors 0s + | => mdf / update 0s + | => rocketMacros / update 0s + | => firrtl_interpreter / update 0s + | => rocketConfig / update 0s + + + + + + + + + | => core / projectDescriptors 0s + | => mdf / update 0s + + + + + + + + | => hardfloat / projectDescriptors 0s + | => targetutils / update 0s + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => mdf / update 0s + + + + + + + + + + | => barstoolsMacros / update 0s + + + + + + + + + + | => barstoolsMacros / update 0s + + + + + + + + + + | => barstoolsMacros / update 0s + + + + + + + + + + | => barstoolsMacros / update 0s + + + + + + + + + + | => barstoolsMacros / update 0s + + + + + + | => mdf / scalaCompilerBridgeScope / csrConfiguration 0s + | => mdf / Compile / unmanagedClasspath 0s + | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s + | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s + | => core / Compile / scalacOptions 0s + | => macros / Compile / scalacOptions 0s + | => rocketMacros / Compile / scalacOptions 0s + | => targetutils / Compile / scalacOptions 0s + | => hardfloat / Compile / scalacOptions 0s + | => rocketConfig / Compile / scalacOptions 0s + | => chisel / Compile / scalacOptions 0s + | => mdf / Compile / scalacOptions 0s + | => rocketchip / Compile / scalacOptions 0s + | => firrtl_interpreter / Compile / scalacOptions 0s + | => chisel / Compile / buildInfo 0s + | => rocketchip / Compile / unmanagedSources / inputFileStamps 0s + + + + + + + + + + + + + + + + + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s +[info] Compiling 7 Scala sources to /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/target/scala-2.12/classes ... + + + + + + + + + + + + + + + + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + + + + + + + + + + + + + + + + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + | => rocketConfig / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + + + + + + + + + + + + + + + + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + | => rocketConfig / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + | => core / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + | => core / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + + | => chisel / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + + | => chisel / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + | => targetutils / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + | => hardfloat / Compile / packageBin / mappings 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin / mappings 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin / mappings 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + | => rocketchip / Compile / packageBin 0s + | => mdf / Compile / compileIncremental 1s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 2s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 3s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/src/main/scala/SRAM.scala:55:75: This catches all Throwables. If this is really intended, use `case _ : Throwable` to clear this warning. + + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s +[warn]  case Some(x: JsString) => try { BigInt(x.as[String]) } catch { case _ => return None } + + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s +[warn]  ^ + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 4s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 5s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s +[warn] /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/src/main/scala/SRAM.scala:45:66: catch block may intercept non-local return from method parseJSON + + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s +[warn]  def parseJSON(json: Map[String, JsValue]): Option[SRAMMacro] = { + + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s +[warn]  ^ + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + | => mdf / Compile / compileIncremental 6s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 7s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + + | => mdf / Compile / compileIncremental 8s +[warn] two warnings found + + + + + + + + + + | => mdf / Compile / compileIncremental 8s + + + + + + + + + + | => mdf / Compile / compile 0s + + + + + + + + + + | => mdf / Compile / compile 0s +[info] Compiling 4 Scala sources to /home/riscvuser/chipyard/tools/barstools/macros/target/scala-2.12/classes ... + + + + + + + + + | => mdf / Compile / compile 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 0s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 1s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 2s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 3s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:96:5: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type + + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  Annotation(CircuitName(c), classOf[MacroCompilerTransform], MacroCompilerUtil.objToString(p)) + + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:99:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  case Annotation(CircuitName(c), t, serialized) if t == classOf[MacroCompilerTransform] => { + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:656:19: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def inputForm = MidForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:657:20: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def outputForm = MidForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:659:38: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def execute(state: CircuitState) = getMyAnnotations(state) match { + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:722:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:722:32: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def inputForm: CircuitForm = LowForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:724:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:724:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  def outputForm: CircuitForm = LowForm + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:736:29: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] class MacroCompiler extends Compiler { + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:7: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:36: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:56: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:839:56: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  val macroCompilerInput = CircuitState(circuit, MidForm, annotations) + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:844:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  val firOptions = new ExecutionOptionsManager("macrocompiler") with HasFirrtlOptions { + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:844:76: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  val firOptions = new ExecutionOptionsManager("macrocompiler") with HasFirrtlOptions { + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:845:27: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  firrtlOptions = FirrtlExecutionOptions( + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:853:9: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  Driver.execute(firOptions) + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s +[warn]  ^ + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 4s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 5s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 6s + + + + + + | => barstoolsMacros / Compile / compileIncremental 7s + + + + + + | => barstoolsMacros / Compile / compileIncremental 7s + + + + + + | => barstoolsMacros / Compile / compileIncremental 7s +[warn] 18 warnings found + + + + + + | => barstoolsMacros / Compile / compileIncremental 7s + + + + + + | => barstoolsMacros / Compile / compileIncremental 7s + + + + + + | => barstoolsMacros / Runtime / dependencyClasspathAsJars 0s + | => barstoolsMacros / Compile / run / runner 0s + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s +[info] running barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.fir --mode synflops + + + + + + + | => barstoolsMacros / Compile / runMain 0s +------------------------------------------------------------------------------ +Warning: getMyAnnotations is deprecated, use collect and match on concrete types +------------------------------------------------------------------------------ + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s +------------------------------------------------------------------------------ +Warning: firrtl.Driver is deprecated since 1.2! +Please switch to firrtl.stage.FirrtlMain +------------------------------------------------------------------------------ + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 0s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 1s +Computed transform order in: 317.7 ms + + + + + + + | => barstoolsMacros / Compile / runMain 1s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 2s + + + + + + + | => barstoolsMacros / Compile / runMain 3s + + + + + + + | => barstoolsMacros / Compile / runMain 3s +Total FIRRTL Compile Time: 1246.4 ms + + + + + + + +[success] Total time: 22 s, completed Dec 23, 2020, 3:50:22 AM +cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project barstoolsMacros" "runMain barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.fir --mode synflops" +OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 +[info] Loading settings for project chipyard-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/project + + + + + + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / update 0s + + + + + + | => chipyard-build / Compile / previousCompile 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + | => chipyard-build / Compile / compileIncremental 0s + + + + + + +[info] Loading settings for project chipyardRoot from build.sbt ... +[info] Loading settings for project barstoolsMacros from build.sbt ... +[info] Loading settings for project mdf from build.sbt ... +[info] Loading settings for project gemmini from build.sbt ... +[info] Loading settings for project ariane from build.sbt ... +[info] Loading settings for project boom from build.sbt ... +[info] Loading settings for project hwacha from build.sbt ... +[info] Loading settings for project icenet from build.sbt ... +[info] Loading settings for project testchipip from build.sbt ... +[info] Loading settings for project rocketConfig from build.sbt ... +[info] Loading settings for project hardfloat from build.sbt ... +[info] Loading settings for project chisel_testers from build.sbt ... +[info] Loading settings for project treadle from build.sbt ... +[info] Loading settings for project firrtl_interpreter from build.sbt ... +[info] Loading settings for project chisel from build.sbt ... +[info] Loading settings for project sim-build from plugins.sbt ... +[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project + + + + + + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / update 0s + + + + + + | => sim-build / Compile / compileIncSetup 0s + + + + + + +[info] Loading settings for project firesim from build.sbt ... +[info] Loading settings for project midas from build.sbt ... +[info] Loading settings for project targetutils from build.sbt ... +[info] Resolving key references (32007 settings) ... +[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + | => Global / checkBuildSources 0s + + + + + + | => Global / checkBuildSources 0s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[info] Set current project to barstoolsMacros (in build file:/home/riscvuser/chipyard/) + + + + + + + + + + + + + + + + + + + + + | => core / projectDescriptors 0s + | => mdf / update 0s + | => firrtl_interpreter / update 0s + | => rocketMacros / update 0s + | => rocketConfig / update 0s + + + + + + + + + + | => core / projectDescriptors 0s + + + + + + + + + + | => hardfloat / update 0s + + + + + + + + + + + + + + + + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => mdf / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + + + + + + | => firrtl_interpreter / Compile / previousCompile 0s + | => macros / Compile / previousCompile 0s + | => mdf / Compile / previousCompile 0s + | => rocketMacros / Compile / previousCompile 0s + | => rocketConfig / Compile / previousCompile 0s + + + + + + | => mdf / Compile / compileIncremental 0s + | => rocketConfig / Compile / compileIncremental 0s + | => rocketMacros / Compile / compileIncremental 0s + | => macros / Compile / compileIncremental 0s + | => firrtl_interpreter / Compile / previousCompile 0s + + + + + + | => rocketMacros / Compile / packageBin 0s + | => rocketConfig / Compile / packageBin 0s + | => macros / Compile / packageBin 0s + | => core / Compile / externalHooks 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + | => rocketMacros / Compile / packageBin 0s + | => rocketConfig / Compile / packageBin 0s + | => macros / Compile / packageBin 0s + | => core / Compile / externalHooks 0s + | => firrtl_interpreter / Compile / compileIncremental 0s + | => mdf / Compile / compileIncremental 0s + + + + + + + + + + + | => core / Compile / compileIncremental 0s + + + + + + + + + + + | => chisel / Compile / compileIncremental 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + + | => chisel / Compile / compileIncremental 0s + + + + + + + + + + | => hardfloat / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + + | => rocketchip / Compile / previousCompile 0s +[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list + + + + + + + + + | => rocketchip / Compile / previousCompile 0s + + + + + + + + + | => rocketchip / Compile / packageBin / mappings 0s + + + + + + + + + | => barstoolsMacros / Compile / previousCompile 0s + + + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s + + + + + + + + + | => barstoolsMacros / Compile / bgRunMain 0s +[info] running barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.fir --mode synflops +WARNING: Empty *.mems.conf file. No memories generated. + + + + + + + + + +[success] Total time: 3 s, completed Dec 23, 2020, 3:50:47 AM +awk '{print ;}' /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f | sort -u | grep -v '.*\.\(svh\|h\)$' > /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.common.f +rm -rf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig +mkdir -p /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig +verilator --cc --exe -O3 -CFLAGS " -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR" -CFLAGS "-I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h" -LDFLAGS " -L/home/riscvuser/chipyard/sims/verilator -lpthread" /home/riscvuser/chipyard/riscv-tools-install/lib/libfesvr.a /home/riscvuser/chipyard/tools/DRAMSim2/libdramsim.a --timescale 1ns/1ps --top-module TestHarness -Wno-fatal --assert --output-split 10000 --output-split-cfuncs 100 --max-num-width 1048576 -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.common.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v +define+PRINTF_COND=\$c\(\"verbose\",\"\&\&\"\,\"done_reset\"\) +define+STOP_COND=\$c\(\"done_reset\"\) -o /home/riscvuser/chipyard/sims/verilator/simulator-chipyard-RocketConfig -Mdir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -CFLAGS "-include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h" +touch /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.mk +make -C /home/riscvuser/chipyard/tools/DRAMSim2 libdramsim.a +make[1]: Entering directory '/home/riscvuser/chipyard/tools/DRAMSim2' +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o PrintMacros.o -c PrintMacros.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Transaction.o -c Transaction.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o BusPacket.o -c BusPacket.cpp +BusPacket.cpp: In member function 'void DRAMSim::BusPacket::print(uint64_t, bool)': +BusPacket.cpp:63:2: warning: nonnull argument 'this' compared to NULL [-Wnonnull-compare] + if (this == NULL) + ^~ +BusPacket.cpp: In member function 'void DRAMSim::BusPacket::print()': +BusPacket.cpp:104:2: warning: nonnull argument 'this' compared to NULL [-Wnonnull-compare] + if (this == NULL) //pointer use makes this a necessary precaution + ^~ +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o BankState.o -c BankState.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o CommandQueue.o -c CommandQueue.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MemorySystem.o -c MemorySystem.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o SimulatorObject.o -c SimulatorObject.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o IniReader.o -c IniReader.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o AddressMapping.o -c AddressMapping.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o ClockDomain.o -c ClockDomain.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MultiChannelMemorySystem.o -c MultiChannelMemorySystem.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Rank.o -c Rank.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MemoryController.o -c MemoryController.cpp +g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Bank.o -c Bank.cpp +ar crs libdramsim.a PrintMacros.o Transaction.o BusPacket.o BankState.o CommandQueue.o MemorySystem.o SimulatorObject.o IniReader.o AddressMapping.o ClockDomain.o MultiChannelMemorySystem.o Rank.o MemoryController.o Bank.o +make[1]: Leaving directory '/home/riscvuser/chipyard/tools/DRAMSim2' +make VM_PARALLEL_BUILDS=1 -C /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -f VTestHarness.mk +make[1]: Entering directory '/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig' +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimDRAM.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimDRAM.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimDTM.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimDTM.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimJTAG.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimJTAG.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimSerial.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimSerial.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimUART.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimUART.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o emulator.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/emulator.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o mm.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/mm.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o mm_dramsim2.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/mm_dramsim2.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o remote_bitbang.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/remote_bitbang.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o uart.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/uart.cc +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/uart.cc:7:0: warning: "_XOPEN_SOURCE" redefined + #define _XOPEN_SOURCE + +In file included from /usr/include/inttypes.h:25:0, + from /usr/local/share/verilator/include/verilatedos.h:305, + from /usr/local/share/verilator/include/verilated.h:27, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/include/features.h:202:0: note: this is the location of the previous definition + # define _XOPEN_SOURCE 700 + +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o verilated.o /usr/local/share/verilator/include/verilated.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o verilated_dpi.o /usr/local/share/verilator/include/verilated_dpi.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness.o VTestHarness.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__1.o VTestHarness__1.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__2.o VTestHarness__2.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__3.o VTestHarness__3.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__4.o VTestHarness__4.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__5.o VTestHarness__5.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__6.o VTestHarness__6.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__7.o VTestHarness__7.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__8.o VTestHarness__8.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__9.o VTestHarness__9.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__10.o VTestHarness__10.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__11.o VTestHarness__11.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__12.o VTestHarness__12.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__13.o VTestHarness__13.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__14.o VTestHarness__14.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__15.o VTestHarness__15.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__16.o VTestHarness__16.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__17.o VTestHarness__17.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__18.o VTestHarness__18.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__19.o VTestHarness__19.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__20.o VTestHarness__20.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__21.o VTestHarness__21.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__22.o VTestHarness__22.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__23.o VTestHarness__23.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__24.o VTestHarness__24.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__25.o VTestHarness__25.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__26.o VTestHarness__26.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__27.o VTestHarness__27.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__28.o VTestHarness__28.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__29.o VTestHarness__29.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__30.o VTestHarness__30.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__31.o VTestHarness__31.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__32.o VTestHarness__32.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__33.o VTestHarness__33.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__34.o VTestHarness__34.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__35.o VTestHarness__35.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__36.o VTestHarness__36.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__37.o VTestHarness__37.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__38.o VTestHarness__38.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__39.o VTestHarness__39.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__40.o VTestHarness__40.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__41.o VTestHarness__41.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__42.o VTestHarness__42.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__43.o VTestHarness__43.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__44.o VTestHarness__44.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__45.o VTestHarness__45.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__46.o VTestHarness__46.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__47.o VTestHarness__47.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__48.o VTestHarness__48.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__49.o VTestHarness__49.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__50.o VTestHarness__50.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__51.o VTestHarness__51.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__52.o VTestHarness__52.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__53.o VTestHarness__53.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__54.o VTestHarness__54.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__55.o VTestHarness__55.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__56.o VTestHarness__56.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__57.o VTestHarness__57.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__58.o VTestHarness__58.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__59.o VTestHarness__59.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__60.o VTestHarness__60.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__61.o VTestHarness__61.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__62.o VTestHarness__62.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness___024unit.o VTestHarness___024unit.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Slow.o VTestHarness__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__1__Slow.o VTestHarness__1__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__2__Slow.o VTestHarness__2__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__3__Slow.o VTestHarness__3__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__4__Slow.o VTestHarness__4__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__5__Slow.o VTestHarness__5__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__6__Slow.o VTestHarness__6__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__7__Slow.o VTestHarness__7__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__8__Slow.o VTestHarness__8__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__9__Slow.o VTestHarness__9__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__10__Slow.o VTestHarness__10__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__11__Slow.o VTestHarness__11__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__12__Slow.o VTestHarness__12__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__13__Slow.o VTestHarness__13__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__14__Slow.o VTestHarness__14__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__15__Slow.o VTestHarness__15__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__16__Slow.o VTestHarness__16__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__17__Slow.o VTestHarness__17__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__18__Slow.o VTestHarness__18__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__19__Slow.o VTestHarness__19__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__20__Slow.o VTestHarness__20__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__21__Slow.o VTestHarness__21__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__22__Slow.o VTestHarness__22__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__23__Slow.o VTestHarness__23__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__24__Slow.o VTestHarness__24__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__25__Slow.o VTestHarness__25__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness___024unit__Slow.o VTestHarness___024unit__Slow.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Dpi.o VTestHarness__Dpi.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Syms.o VTestHarness__Syms.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Syms__1.o VTestHarness__Syms__1.cpp +In file included from /usr/local/share/verilator/include/verilated.h:27:0, + from /usr/local/share/verilator/include/verilated_vcd_c.h:23, + from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, + from :0: +/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined + #define __STDC_FORMAT_MACROS + +:0:0: note: this is the location of the previous definition +ar -cr VTestHarness__ALL.a VTestHarness.o VTestHarness__1.o VTestHarness__2.o VTestHarness__3.o VTestHarness__4.o VTestHarness__5.o VTestHarness__6.o VTestHarness__7.o VTestHarness__8.o VTestHarness__9.o VTestHarness__10.o VTestHarness__11.o VTestHarness__12.o VTestHarness__13.o VTestHarness__14.o VTestHarness__15.o VTestHarness__16.o VTestHarness__17.o VTestHarness__18.o VTestHarness__19.o VTestHarness__20.o VTestHarness__21.o VTestHarness__22.o VTestHarness__23.o VTestHarness__24.o VTestHarness__25.o VTestHarness__26.o VTestHarness__27.o VTestHarness__28.o VTestHarness__29.o VTestHarness__30.o VTestHarness__31.o VTestHarness__32.o VTestHarness__33.o VTestHarness__34.o VTestHarness__35.o VTestHarness__36.o VTestHarness__37.o VTestHarness__38.o VTestHarness__39.o VTestHarness__40.o VTestHarness__41.o VTestHarness__42.o VTestHarness__43.o VTestHarness__44.o VTestHarness__45.o VTestHarness__46.o VTestHarness__47.o VTestHarness__48.o VTestHarness__49.o VTestHarness__50.o VTestHarness__51.o VTestHarness__52.o VTestHarness__53.o VTestHarness__54.o VTestHarness__55.o VTestHarness__56.o VTestHarness__57.o VTestHarness__58.o VTestHarness__59.o VTestHarness__60.o VTestHarness__61.o VTestHarness__62.o VTestHarness___024unit.o VTestHarness__Slow.o VTestHarness__1__Slow.o VTestHarness__2__Slow.o VTestHarness__3__Slow.o VTestHarness__4__Slow.o VTestHarness__5__Slow.o VTestHarness__6__Slow.o VTestHarness__7__Slow.o VTestHarness__8__Slow.o VTestHarness__9__Slow.o VTestHarness__10__Slow.o VTestHarness__11__Slow.o VTestHarness__12__Slow.o VTestHarness__13__Slow.o VTestHarness__14__Slow.o VTestHarness__15__Slow.o VTestHarness__16__Slow.o VTestHarness__17__Slow.o VTestHarness__18__Slow.o VTestHarness__19__Slow.o VTestHarness__20__Slow.o VTestHarness__21__Slow.o VTestHarness__22__Slow.o VTestHarness__23__Slow.o VTestHarness__24__Slow.o VTestHarness__25__Slow.o VTestHarness___024unit__Slow.o VTestHarness__Dpi.o VTestHarness__Syms.o VTestHarness__Syms__1.o +ranlib VTestHarness__ALL.a +g++ SimDRAM.o SimDTM.o SimJTAG.o SimSerial.o SimUART.o emulator.o mm.o mm_dramsim2.o remote_bitbang.o uart.o verilated.o verilated_dpi.o VTestHarness__ALL.a -L/home/riscvuser/chipyard/sims/verilator -lpthread /home/riscvuser/chipyard/riscv-tools-install/lib/libfesvr.a /home/riscvuser/chipyard/tools/DRAMSim2/libdramsim.a -o /home/riscvuser/chipyard/sims/verilator/simulator-chipyard-RocketConfig +make[1]: Leaving directory '/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig' +]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ ls +Makefile generated-src +dramsim2_ini simulator-chipyard-RocketConfig +]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ exit +logout +[schwarzem@a6:/scratch/schwarzem/chipyard]$ exit +exit + +Script done on 2020-12-22 19:53:47-0800 From b528058cc4ba0c87e3087b5660a4490668a715e5 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 11 Jan 2021 17:38:25 -0800 Subject: [PATCH 16/40] part 2 of removing log files --- aptget-sudo.txt | 231 - no-apget.txt | 70 - no-apt-utils.txt | 3403 -- verilator-no-env.txt | 68235 ----------------------------------------- 4 files changed, 71939 deletions(-) delete mode 100644 aptget-sudo.txt delete mode 100644 no-apget.txt delete mode 100644 no-apt-utils.txt delete mode 100644 verilator-no-env.txt diff --git a/aptget-sudo.txt b/aptget-sudo.txt deleted file mode 100644 index 5dc12d2945..0000000000 --- a/aptget-sudo.txt +++ /dev/null @@ -1,231 +0,0 @@ -Script started on 2020-12-22 18:21:21-0800 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker buidld . -double free or corruption (out) -SIGABRT: abort -PC=0x7f17c6ce2fb7 m=0 sigcode=18446744073709551610 -signal arrived during cgo execution - -goroutine 1 [syscall, locked to thread]: -runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) - /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 -github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1fcd990) - github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1fcd990) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 -github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) - :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 -github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 -github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffd158c1b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 -github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 -main.main() - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 -runtime.main() - /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 - -goroutine 17 [syscall, locked to thread]: -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 - -rax 0x0 -rbx 0x7ffd158c0cc0 -rcx 0x7f17c6ce2fb7 -rdx 0x0 -rdi 0x2 -rsi 0x7ffd158c0a50 -rbp 0x7ffd158c0dc0 -rsp 0x7ffd158c0a50 -r8 0x0 -r9 0x7ffd158c0a50 -r10 0x8 -r11 0x246 -r12 0x7ffd158c0cc0 -r13 0x1000 -r14 0x0 -r15 0x30 -rip 0x7f17c6ce2fb7 -rflags 0x246 -cs 0x33 -fs 0x0 -gs 0x0 -Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.515MB -Step 1/12 : FROM ubuntu:18.04 - ---> 2c047404e52d -Step 2/12 : MAINTAINER jacobgadikian@gmail.com - ---> Using cache - ---> eada3313413a -Step 3/12 : RUN apt-get update && apt-get upgrade -y && apt-get install -y sudo - ---> Running in c27755861e07 -Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] -Get:3 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [237 kB] -Get:4 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [15.3 kB] -Get:5 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1816 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] -Get:7 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1372 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB] -Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [53.8 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2136 kB] -Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2244 kB] -Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [266 kB] -Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB] -Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB] -Fetched 21.5 MB in 4s (6089 kB/s) -Reading package lists... -Reading package lists... -Building dependency tree... -Reading state information... -Calculating upgrade... -The following packages will be upgraded: - apt libapt-pkg5.0 libc-bin libc6 -4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. -Need to get 5482 kB of archives. -After this operation, 0 B of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6 amd64 2.27-3ubuntu1.4 [2832 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-bin amd64 2.27-3ubuntu1.4 [643 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-pkg5.0 amd64 1.6.12ubuntu0.2 [806 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 apt amd64 1.6.12ubuntu0.2 [1201 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 5482 kB in 1s (3663 kB/s) -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libc6_2.27-3ubuntu1.4_amd64.deb ... -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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -debconf: falling back to frontend: Teletype -Unpacking libc6:amd64 (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... -Setting up libc6:amd64 (2.27-3ubuntu1.4) ... -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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -debconf: falling back to frontend: Teletype -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libc-bin_2.27-3ubuntu1.4_amd64.deb ... -Unpacking libc-bin (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... -Setting up libc-bin (2.27-3ubuntu1.4) ... -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libapt-pkg5.0_1.6.12ubuntu0.2_amd64.deb ... -Unpacking libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... -Setting up libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) ... -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../apt_1.6.12ubuntu0.2_amd64.deb ... -Unpacking apt (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... -Setting up apt (1.6.12ubuntu0.2) ... -Processing triggers for libc-bin (2.27-3ubuntu1.4) ... -Reading package lists... -Building dependency tree... -Reading state information... -The following NEW packages will be installed: - sudo -0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Need to get 428 kB of archives. -After this operation, 1765 kB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.3 [428 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 428 kB in 1s (441 kB/s) -Selecting previously unselected package sudo. -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../sudo_1.8.21p2-3ubuntu1.3_amd64.deb ... -Unpacking sudo (1.8.21p2-3ubuntu1.3) ... -Setting up sudo (1.8.21p2-3ubuntu1.3) ... -Removing intermediate container c27755861e07 - ---> e698584146a9 -Step 4/12 : 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 - ---> Running in 1e53f8d31d4e -Removing intermediate container 1e53f8d31d4e - ---> 15fd862c9209 -Step 5/12 : WORKDIR /home/riscvuser - ---> Running in b8f02acf19fc -Removing intermediate container b8f02acf19fc - ---> 02954f57aa07 -Step 6/12 : USER riscvuser - ---> Running in 798c5fb253c3 -Removing intermediate container 798c5fb253c3 - ---> 38b2cbaf0b9d -Step 7/12 : RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - ---> Running in c7d1326a30e1 -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - liblocale-gettext-perl -The following NEW packages will be installed: - keyboard-configuration liblocale-gettext-perl -0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. -Need to get 386 kB of archives. -After this operation, 2675 kB 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 keyboard-configuration all 1.178ubuntu2.9 [369 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 386 kB in 1s (366 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 ... 4100 files and directories currently installed.) -Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... -Unpacking liblocale-gettext-perl (1.07-3build2) ... -Selecting previously unselected package keyboard-configuration. -Preparing to unpack .../keyboard-configuration_1.178ubuntu2.9_all.deb ... -Unpacking keyboard-configuration (1.178ubuntu2.9) ... -Setting up liblocale-gettext-perl (1.07-3build2) ... -Setting up keyboard-configuration (1.178ubuntu2.9) ... -Your console font configuration will be updated the next time your system -boots. If you want to update it now, run 'setupcon' from a virtual console. -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - console-setup-linux kbd xkb-data -Suggested packages: - locales -The following NEW packages will be installed: - console-setup console-setup-linux kbd xkb-data -0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. -Need to get 1627 kB of archives. -After this operation, 6256 kB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 kbd amd64 2.0.4-2ubuntu1 [215 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup-linux all 1.178ubuntu2.9 [982 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup all 1.178ubuntu2.9 [105 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 1627 kB in 1s (1166 kB/s) -Selecting previously unselected package kbd. -(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 ... 4139 files and directories currently installed.) -Preparing to unpack .../kbd_2.0.4-2ubuntu1_amd64.deb ... -Unpacking kbd (2.0.4-2ubuntu1) ... -Selecting previously unselected package console-setup-linux. -Preparing to unpack .../console-setup-linux_1.178ubuntu2.9_all.deb ... -Unpacking console-setup-linux (1.178ubuntu2.9) ... -Selecting previously unselected package xkb-data. -Preparing to unpack .../xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ... -Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ... -Selecting previously unselected package console-setup. -Preparing to unpack .../console-setup_1.178ubuntu2.9_all.deb ... -Unpacking console-setup (1.178ubuntu2.9) ... -Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ... -Setting up console-setup-linux (1.178ubuntu2.9) ... -update-alternatives: using /etc/console-setup/vtrgb to provide /etc/vtrgb (vtrgb) in auto mode -Setting up console-setup (1.178ubuntu2.9) ... -Setting up kbd (2.0.4-2ubuntu1) ... -Removing intermediate container c7d1326a30e1 - ---> e7015c0130f5 -Step 8/12 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null - ---> Running in f5878ae67d8a -/bin/sh: 1: git: not found -The command '/bin/sh -c git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null' returned a non-zero code: 127 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build .sciript no-tapaptaptutils-utilsexit -exit - -Script done on 2020-12-22 18:25:28-0800 diff --git a/no-apget.txt b/no-apget.txt deleted file mode 100644 index 78d690a15c..0000000000 --- a/no-apget.txt +++ /dev/null @@ -1,70 +0,0 @@ -Script started on 2020-12-22 18:19:10-0800 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build . -double free or corruption (out) -SIGABRT: abort -PC=0x7fdf84420fb7 m=0 sigcode=18446744073709551610 -signal arrived during cgo execution - -goroutine 1 [syscall, locked to thread]: -runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) - /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 -github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1a91990) - github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1a91990) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 -github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) - :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 -github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 -github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffdff7d8b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 -github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 -main.main() - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 -runtime.main() - /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 - -goroutine 17 [syscall, locked to thread]: -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 - -rax 0x0 -rbx 0x7ffdff7d79c0 -rcx 0x7fdf84420fb7 -rdx 0x0 -rdi 0x2 -rsi 0x7ffdff7d7750 -rbp 0x7ffdff7d7ac0 -rsp 0x7ffdff7d7750 -r8 0x0 -r9 0x7ffdff7d7750 -r10 0x8 -r11 0x246 -r12 0x7ffdff7d79c0 -r13 0x1000 -r14 0x0 -r15 0x30 -rip 0x7fdf84420fb7 -rflags 0x246 -cs 0x33 -fs 0x0 -gs 0x0 -Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.51MB -Step 1/11 : FROM ubuntu:18.04 - ---> 2c047404e52d -Step 2/11 : MAINTAINER jacobgadikian@gmail.com - ---> Using cache - ---> eada3313413a -Step 3/11 : 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 - ---> Running in e95c9de803d8 -/bin/sh: 1: cannot create /etc/sudoers.d/50-riscvuser: Directory nonexistent -The command '/bin/sh -c 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' returned a non-zero code: 2 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ exit -exit - -Script done on 2020-12-22 18:20:07-0800 diff --git a/no-apt-utils.txt b/no-apt-utils.txt deleted file mode 100644 index 0a52582c5b..0000000000 --- a/no-apt-utils.txt +++ /dev/null @@ -1,3403 +0,0 @@ -Script started on 2020-12-22 18:25:39-0800 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ docker build . -double free or corruption (out) -SIGABRT: abort -PC=0x7f9d7fa1bfb7 m=0 sigcode=18446744073709551610 -signal arrived during cgo execution - -goroutine 1 [syscall, locked to thread]: -runtime.cgocall(0x4afd50, 0xc420061cc0, 0xc420061ce8) - /usr/lib/go-1.8/src/runtime/cgocall.go:131 +0xe2 fp=0xc420061c90 sp=0xc420061c50 -github.com/docker/docker-credential-helpers/secretservice._Cfunc_free(0x1a0f990) - github.com/docker/docker-credential-helpers/secretservice/_obj/_cgo_gotypes.go:111 +0x41 fp=0xc420061cc0 sp=0xc420061c90 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List.func5(0x1a0f990) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:96 +0x60 fp=0xc420061cf8 sp=0xc420061cc0 -github.com/docker/docker-credential-helpers/secretservice.Secretservice.List(0x0, 0x756060, 0xc420016350) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go:97 +0x217 fp=0xc420061da0 sp=0xc420061cf8 -github.com/docker/docker-credential-helpers/secretservice.(*Secretservice).List(0x77e548, 0xc420061e88, 0x410022, 0xc4200162a0) - :4 +0x46 fp=0xc420061de0 sp=0xc420061da0 -github.com/docker/docker-credential-helpers/credentials.List(0x756ba0, 0x77e548, 0x7560e0, 0xc42000e018, 0x0, 0x10) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:145 +0x3e fp=0xc420061e68 sp=0xc420061de0 -github.com/docker/docker-credential-helpers/credentials.HandleCommand(0x756ba0, 0x77e548, 0x7ffe380a4b1c, 0x4, 0x7560a0, 0xc42000e010, 0x7560e0, 0xc42000e018, 0x40e398, 0x4d35c0) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:60 +0x16d fp=0xc420061ed8 sp=0xc420061e68 -github.com/docker/docker-credential-helpers/credentials.Serve(0x756ba0, 0x77e548) - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/obj-x86_64-linux-gnu/src/github.com/docker/docker-credential-helpers/credentials/credentials.go:41 +0x1cb fp=0xc420061f58 sp=0xc420061ed8 -main.main() - /build/golang-github-docker-docker-credential-helpers-cMhSy1/golang-github-docker-docker-credential-helpers-0.5.0/secretservice/cmd/main_linux.go:9 +0x4f fp=0xc420061f88 sp=0xc420061f58 -runtime.main() - /usr/lib/go-1.8/src/runtime/proc.go:185 +0x20a fp=0xc420061fe0 sp=0xc420061f88 -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 fp=0xc420061fe8 sp=0xc420061fe0 - -goroutine 17 [syscall, locked to thread]: -runtime.goexit() - /usr/lib/go-1.8/src/runtime/asm_amd64.s:2197 +0x1 - -rax 0x0 -rbx 0x7ffe380a2dd0 -rcx 0x7f9d7fa1bfb7 -rdx 0x0 -rdi 0x2 -rsi 0x7ffe380a2b60 -rbp 0x7ffe380a2ed0 -rsp 0x7ffe380a2b60 -r8 0x0 -r9 0x7ffe380a2b60 -r10 0x8 -r11 0x246 -r12 0x7ffe380a2dd0 -r13 0x1000 -r14 0x0 -r15 0x30 -rip 0x7f9d7fa1bfb7 -rflags 0x246 -cs 0x33 -fs 0x0 -gs 0x0 -Sending build context to Docker daemon 557.1kB Sending build context to Docker daemon 7.535MB -Step 1/12 : FROM ubuntu:18.04 - ---> 2c047404e52d -Step 2/12 : MAINTAINER jacobgadikian@gmail.com - ---> Using cache - ---> eada3313413a -Step 3/12 : RUN apt-get update && apt-get upgrade -y && apt-get install -y curl git sudo - ---> Running in 1c41b0062191 -Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] -Get:3 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1816 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] -Get:5 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [237 kB] -Get:6 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1372 kB] -Get:7 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [15.3 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] -Get:12 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB] -Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2136 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2244 kB] -Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [53.8 kB] -Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [266 kB] -Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB] -Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB] -Fetched 21.5 MB in 3s (6280 kB/s) -Reading package lists... -Reading package lists... -Building dependency tree... -Reading state information... -Calculating upgrade... -The following packages will be upgraded: - apt libapt-pkg5.0 libc-bin libc6 -4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. -Need to get 5482 kB of archives. -After this operation, 0 B of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6 amd64 2.27-3ubuntu1.4 [2832 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-bin amd64 2.27-3ubuntu1.4 [643 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-pkg5.0 amd64 1.6.12ubuntu0.2 [806 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 apt amd64 1.6.12ubuntu0.2 [1201 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 5482 kB in 2s (3510 kB/s) -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libc6_2.27-3ubuntu1.4_amd64.deb ... -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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -debconf: falling back to frontend: Teletype -Unpacking libc6:amd64 (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... -Setting up libc6:amd64 (2.27-3ubuntu1.4) ... -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: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) -debconf: falling back to frontend: Teletype -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libc-bin_2.27-3ubuntu1.4_amd64.deb ... -Unpacking libc-bin (2.27-3ubuntu1.4) over (2.27-3ubuntu1.3) ... -Setting up libc-bin (2.27-3ubuntu1.4) ... -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../libapt-pkg5.0_1.6.12ubuntu0.2_amd64.deb ... -Unpacking libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... -Setting up libapt-pkg5.0:amd64 (1.6.12ubuntu0.2) ... -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../apt_1.6.12ubuntu0.2_amd64.deb ... -Unpacking apt (1.6.12ubuntu0.2) over (1.6.12ubuntu0.1) ... -Setting up apt (1.6.12ubuntu0.2) ... -Processing triggers for libc-bin (2.27-3ubuntu1.4) ... -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - ca-certificates git-man krb5-locales less libasn1-8-heimdal libbsd0 - libcurl3-gnutls libcurl4 libedit2 liberror-perl libexpat1 libgdbm-compat4 - libgdbm5 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal - libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libk5crypto3 - libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 - libldap-common libnghttp2-14 libperl5.26 libpsl5 libroken18-heimdal librtmp1 - libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 - libssl1.1 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 - libxext6 libxmuu1 multiarch-support netbase openssh-client openssl patch - perl perl-modules-5.26 publicsuffix xauth -Suggested packages: - gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email - git-gui gitk gitweb git-cvs git-mediawiki git-svn gdbm-l10n krb5-doc - krb5-user libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal - libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql keychain - libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc - libterm-readline-gnu-perl | libterm-readline-perl-perl make -The following NEW packages will be installed: - ca-certificates curl git git-man krb5-locales less libasn1-8-heimdal libbsd0 - libcurl3-gnutls libcurl4 libedit2 liberror-perl libexpat1 libgdbm-compat4 - libgdbm5 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal - libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libk5crypto3 - libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 - libldap-common libnghttp2-14 libperl5.26 libpsl5 libroken18-heimdal librtmp1 - libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0 - libssl1.1 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 - libxext6 libxmuu1 multiarch-support netbase openssh-client openssl patch - perl perl-modules-5.26 publicsuffix sudo xauth -0 upgraded, 57 newly installed, 0 to remove and 0 not upgraded. -Need to get 19.7 MB of archives. -After this operation, 105 MB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 multiarch-support amd64 2.27-3ubuntu1.4 [6944 B] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxau6 amd64 1:1.0.8-1ubuntu1 [7556 B] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] -Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] -Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.3 [114 kB] -Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.3 [571 kB] -Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] -Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.5 [2762 kB] -Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] -Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6084 B] -Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.5 [3534 kB] -Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.5 [201 kB] -Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.1 amd64 1.1.1-1ubuntu2.1~18.04.7 [1301 kB] -Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.7 [614 kB] -Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20201027ubuntu0.18.04.1 [153 kB] -Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 less amd64 487-0.1 [112 kB] -Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] -Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsqlite3-0 amd64 3.22.0-1ubuntu0.4 [499 kB] -Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] -Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.3 [428 kB] -Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.2 [13.4 kB] -Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] -Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.2 [30.8 kB] -Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.2 [85.5 kB] -Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8720 B] -Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.2 [279 kB] -Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.2 [122 kB] -Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] -Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.0.0 amd64 1.0.2n-1ubuntu5.5 [1088 kB] -Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9674 B] -Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssh-client amd64 1:7.6p1-4ubuntu0.3 [614 kB] -Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] -Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 xauth amd64 1:1.0.10-1 [24.6 kB] -Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libroken18-heimdal amd64 7.5.0+dfsg-1 [41.3 kB] -Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libasn1-8-heimdal amd64 7.5.0+dfsg-1 [175 kB] -Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimbase1-heimdal amd64 7.5.0+dfsg-1 [29.3 kB] -Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhcrypto4-heimdal amd64 7.5.0+dfsg-1 [85.9 kB] -Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwind0-heimdal amd64 7.5.0+dfsg-1 [47.8 kB] -Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhx509-5-heimdal amd64 7.5.0+dfsg-1 [107 kB] -Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkrb5-26-heimdal amd64 7.5.0+dfsg-1 [206 kB] -Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimntlm0-heimdal amd64 7.5.0+dfsg-1 [14.8 kB] -Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgssapi3-heimdal amd64 7.5.0+dfsg-1 [96.5 kB] -Get:44 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [14.8 kB] -Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [49.2 kB] -Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-common all 2.4.45+dfsg-1ubuntu1.8 [17.0 kB] -Get:47 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-2.4-2 amd64 2.4.45+dfsg-1ubuntu1.8 [155 kB] -Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] -Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] -Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.12 [214 kB] -Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.12 [159 kB] -Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.12 [212 kB] -Get:53 http://archive.ubuntu.com/ubuntu bionic/main amd64 liberror-perl all 0.17025-1 [22.8 kB] -Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git-man all 1:2.17.1-1ubuntu0.7 [804 kB] -Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git amd64 1:2.17.1-1ubuntu0.7 [3915 kB] -Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.1 [48.8 kB] -Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 19.7 MB in 3s (6627 kB/s) -Selecting previously unselected package multiarch-support. -(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 ... 4045 files and directories currently installed.) -Preparing to unpack .../0-multiarch-support_2.27-3ubuntu1.4_amd64.deb ... -Unpacking multiarch-support (2.27-3ubuntu1.4) ... -Selecting previously unselected package libxau6:amd64. -Preparing to unpack .../1-libxau6_1%3a1.0.8-1ubuntu1_amd64.deb ... -Unpacking libxau6:amd64 (1:1.0.8-1ubuntu1) ... -Selecting previously unselected package libbsd0:amd64. -Preparing to unpack .../2-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... -Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... -Selecting previously unselected package libxdmcp6:amd64. -Preparing to unpack .../3-libxdmcp6_1%3a1.1.2-3_amd64.deb ... -Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... -Selecting previously unselected package libxcb1:amd64. -Preparing to unpack .../4-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... -Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... -Selecting previously unselected package libx11-data. -Preparing to unpack .../5-libx11-data_2%3a1.6.4-3ubuntu0.3_all.deb ... -Unpacking libx11-data (2:1.6.4-3ubuntu0.3) ... -Selecting previously unselected package libx11-6:amd64. -Preparing to unpack .../6-libx11-6_2%3a1.6.4-3ubuntu0.3_amd64.deb ... -Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... -Setting up multiarch-support (2.27-3ubuntu1.4) ... -Selecting previously unselected package libxext6: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 ... 4335 files and directories currently installed.) -Preparing to unpack .../00-libxext6_2%3a1.3.3-1_amd64.deb ... -Unpacking libxext6:amd64 (2:1.3.3-1) ... -Selecting previously unselected package perl-modules-5.26. -Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.5_all.deb ... -Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.5) ... -Selecting previously unselected package libgdbm5:amd64. -Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ... -Unpacking libgdbm5:amd64 (1.14.1-6) ... -Selecting previously unselected package libgdbm-compat4:amd64. -Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ... -Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... -Selecting previously unselected package libperl5.26:amd64. -Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.5_amd64.deb ... -Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... -Selecting previously unselected package perl. -Preparing to unpack .../05-perl_5.26.1-6ubuntu0.5_amd64.deb ... -Unpacking perl (5.26.1-6ubuntu0.5) ... -Selecting previously unselected package libssl1.1:amd64. -Preparing to unpack .../06-libssl1.1_1.1.1-1ubuntu2.1~18.04.7_amd64.deb ... -Unpacking libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.7) ... -Selecting previously unselected package openssl. -Preparing to unpack .../07-openssl_1.1.1-1ubuntu2.1~18.04.7_amd64.deb ... -Unpacking openssl (1.1.1-1ubuntu2.1~18.04.7) ... -Selecting previously unselected package ca-certificates. -Preparing to unpack .../08-ca-certificates_20201027ubuntu0.18.04.1_all.deb ... -Unpacking ca-certificates (20201027ubuntu0.18.04.1) ... -Selecting previously unselected package less. -Preparing to unpack .../09-less_487-0.1_amd64.deb ... -Unpacking less (487-0.1) ... -Selecting previously unselected package libexpat1:amd64. -Preparing to unpack .../10-libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... -Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... -Selecting previously unselected package libsqlite3-0:amd64. -Preparing to unpack .../11-libsqlite3-0_3.22.0-1ubuntu0.4_amd64.deb ... -Unpacking libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... -Selecting previously unselected package netbase. -Preparing to unpack .../12-netbase_5.4_all.deb ... -Unpacking netbase (5.4) ... -Selecting previously unselected package sudo. -Preparing to unpack .../13-sudo_1.8.21p2-3ubuntu1.3_amd64.deb ... -Unpacking sudo (1.8.21p2-3ubuntu1.3) ... -Selecting previously unselected package krb5-locales. -Preparing to unpack .../14-krb5-locales_1.16-2ubuntu0.2_all.deb ... -Unpacking krb5-locales (1.16-2ubuntu0.2) ... -Selecting previously unselected package libedit2:amd64. -Preparing to unpack .../15-libedit2_3.1-20170329-1_amd64.deb ... -Unpacking libedit2:amd64 (3.1-20170329-1) ... -Selecting previously unselected package libkrb5support0:amd64. -Preparing to unpack .../16-libkrb5support0_1.16-2ubuntu0.2_amd64.deb ... -Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.2) ... -Selecting previously unselected package libk5crypto3:amd64. -Preparing to unpack .../17-libk5crypto3_1.16-2ubuntu0.2_amd64.deb ... -Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.2) ... -Selecting previously unselected package libkeyutils1:amd64. -Preparing to unpack .../18-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... -Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... -Selecting previously unselected package libkrb5-3:amd64. -Preparing to unpack .../19-libkrb5-3_1.16-2ubuntu0.2_amd64.deb ... -Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.2) ... -Selecting previously unselected package libgssapi-krb5-2:amd64. -Preparing to unpack .../20-libgssapi-krb5-2_1.16-2ubuntu0.2_amd64.deb ... -Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... -Selecting previously unselected package libpsl5:amd64. -Preparing to unpack .../21-libpsl5_0.19.1-5build1_amd64.deb ... -Unpacking libpsl5:amd64 (0.19.1-5build1) ... -Selecting previously unselected package libssl1.0.0:amd64. -Preparing to unpack .../22-libssl1.0.0_1.0.2n-1ubuntu5.5_amd64.deb ... -Unpacking libssl1.0.0:amd64 (1.0.2n-1ubuntu5.5) ... -Selecting previously unselected package libxmuu1:amd64. -Preparing to unpack .../23-libxmuu1_2%3a1.1.2-2_amd64.deb ... -Unpacking libxmuu1:amd64 (2:1.1.2-2) ... -Selecting previously unselected package openssh-client. -Preparing to unpack .../24-openssh-client_1%3a7.6p1-4ubuntu0.3_amd64.deb ... -Unpacking openssh-client (1:7.6p1-4ubuntu0.3) ... -Selecting previously unselected package publicsuffix. -Preparing to unpack .../25-publicsuffix_20180223.1310-1_all.deb ... -Unpacking publicsuffix (20180223.1310-1) ... -Selecting previously unselected package xauth. -Preparing to unpack .../26-xauth_1%3a1.0.10-1_amd64.deb ... -Unpacking xauth (1:1.0.10-1) ... -Selecting previously unselected package libroken18-heimdal:amd64. -Preparing to unpack .../27-libroken18-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libasn1-8-heimdal:amd64. -Preparing to unpack .../28-libasn1-8-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libheimbase1-heimdal:amd64. -Preparing to unpack .../29-libheimbase1-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libhcrypto4-heimdal:amd64. -Preparing to unpack .../30-libhcrypto4-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libwind0-heimdal:amd64. -Preparing to unpack .../31-libwind0-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libhx509-5-heimdal:amd64. -Preparing to unpack .../32-libhx509-5-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libkrb5-26-heimdal:amd64. -Preparing to unpack .../33-libkrb5-26-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libheimntlm0-heimdal:amd64. -Preparing to unpack .../34-libheimntlm0-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libgssapi3-heimdal:amd64. -Preparing to unpack .../35-libgssapi3-heimdal_7.5.0+dfsg-1_amd64.deb ... -Unpacking libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... -Selecting previously unselected package libsasl2-modules-db:amd64. -Preparing to unpack .../36-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... -Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Selecting previously unselected package libsasl2-2:amd64. -Preparing to unpack .../37-libsasl2-2_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... -Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Selecting previously unselected package libldap-common. -Preparing to unpack .../38-libldap-common_2.4.45+dfsg-1ubuntu1.8_all.deb ... -Unpacking libldap-common (2.4.45+dfsg-1ubuntu1.8) ... -Selecting previously unselected package libldap-2.4-2:amd64. -Preparing to unpack .../39-libldap-2.4-2_2.4.45+dfsg-1ubuntu1.8_amd64.deb ... -Unpacking libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.8) ... -Selecting previously unselected package libnghttp2-14:amd64. -Preparing to unpack .../40-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... -Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... -Selecting previously unselected package librtmp1:amd64. -Preparing to unpack .../41-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... -Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... -Selecting previously unselected package libcurl4:amd64. -Preparing to unpack .../42-libcurl4_7.58.0-2ubuntu3.12_amd64.deb ... -Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.12) ... -Selecting previously unselected package curl. -Preparing to unpack .../43-curl_7.58.0-2ubuntu3.12_amd64.deb ... -Unpacking curl (7.58.0-2ubuntu3.12) ... -Selecting previously unselected package libcurl3-gnutls:amd64. -Preparing to unpack .../44-libcurl3-gnutls_7.58.0-2ubuntu3.12_amd64.deb ... -Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... -Selecting previously unselected package liberror-perl. -Preparing to unpack .../45-liberror-perl_0.17025-1_all.deb ... -Unpacking liberror-perl (0.17025-1) ... -Selecting previously unselected package git-man. -Preparing to unpack .../46-git-man_1%3a2.17.1-1ubuntu0.7_all.deb ... -Unpacking git-man (1:2.17.1-1ubuntu0.7) ... -Selecting previously unselected package git. -Preparing to unpack .../47-git_1%3a2.17.1-1ubuntu0.7_amd64.deb ... -Unpacking git (1:2.17.1-1ubuntu0.7) ... -Selecting previously unselected package libsasl2-modules:amd64. -Preparing to unpack .../48-libsasl2-modules_2.1.27~101-g0780600+dfsg-3ubuntu2.1_amd64.deb ... -Unpacking libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Selecting previously unselected package patch. -Preparing to unpack .../49-patch_2.7.6-2ubuntu1.1_amd64.deb ... -Unpacking patch (2.7.6-2ubuntu1.1) ... -Setting up libedit2:amd64 (3.1-20170329-1) ... -Setting up git-man (1:2.17.1-1ubuntu0.7) ... -Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... -Setting up less (487-0.1) ... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Setting up libssl1.0.0:amd64 (1.0.2n-1ubuntu5.5) ... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... -Setting up sudo (1.8.21p2-3ubuntu1.3) ... -Setting up libldap-common (2.4.45+dfsg-1ubuntu1.8) ... -Setting up libpsl5:amd64 (0.19.1-5build1) ... -Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Setting up libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... -Setting up perl-modules-5.26 (5.26.1-6ubuntu0.5) ... -Setting up libgdbm5:amd64 (1.14.1-6) ... -Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... -Setting up libkrb5support0:amd64 (1.16-2ubuntu0.2) ... -Setting up patch (2.7.6-2ubuntu1.1) ... -Setting up krb5-locales (1.16-2ubuntu0.2) ... -Setting up publicsuffix (20180223.1310-1) ... -Setting up libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.7) ... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Setting up libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up openssl (1.1.1-1ubuntu2.1~18.04.7) ... -Setting up libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... -Setting up libxdmcp6:amd64 (1:1.1.2-3) ... -Setting up libgdbm-compat4:amd64 (1.14.1-6) ... -Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... -Setting up libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.1) ... -Setting up ca-certificates (20201027ubuntu0.18.04.1) ... -debconf: unable to initialize frontend: Dialog -debconf: (TERM is not set, so the dialog frontend is not usable.) -debconf: falling back to frontend: Readline -Updating certificates in /etc/ssl/certs... -138 added, 0 removed; done. -Setting up libx11-data (2:1.6.4-3ubuntu0.3) ... -Setting up libxau6:amd64 (1:1.0.8-1ubuntu1) ... -Setting up netbase (5.4) ... -Setting up libk5crypto3:amd64 (1.16-2ubuntu0.2) ... -Setting up libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... -Setting up libkrb5-3:amd64 (1.16-2ubuntu0.2) ... -Setting up libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... -Setting up libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... -Setting up libxmuu1:amd64 (2:1.1.2-2) ... -Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... -Setting up perl (5.26.1-6ubuntu0.5) ... -Setting up libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... -Setting up openssh-client (1:7.6p1-4ubuntu0.3) ... -Setting up libxext6:amd64 (2:1.3.3-1) ... -Setting up liberror-perl (0.17025-1) ... -Setting up xauth (1:1.0.10-1) ... -Setting up libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.8) ... -Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... -Setting up libcurl4:amd64 (7.58.0-2ubuntu3.12) ... -Setting up git (1:2.17.1-1ubuntu0.7) ... -Setting up curl (7.58.0-2ubuntu3.12) ... -Processing triggers for libc-bin (2.27-3ubuntu1.4) ... -Processing triggers for ca-certificates (20201027ubuntu0.18.04.1) ... -Updating certificates in /etc/ssl/certs... -0 added, 0 removed; done. -Running hooks in /etc/ca-certificates/update.d... -done. -Removing intermediate container 1c41b0062191 - ---> a1d44680a9d4 -Step 4/12 : 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 - ---> Running in f1e61d1c92a5 -Removing intermediate container f1e61d1c92a5 - ---> 7ae1a44a0f88 -Step 5/12 : WORKDIR /home/riscvuser - ---> Running in 86c878f6c78a -Removing intermediate container 86c878f6c78a - ---> 7360866710f4 -Step 6/12 : USER riscvuser - ---> Running in 3882ccbffe7b -Removing intermediate container 3882ccbffe7b - ---> c1f23cf819bf -Step 7/12 : RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - ---> Running in d4bcb1959542 -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - liblocale-gettext-perl -The following NEW packages will be installed: - keyboard-configuration liblocale-gettext-perl -0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. -Need to get 386 kB of archives. -After this operation, 2675 kB 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 keyboard-configuration all 1.178ubuntu2.9 [369 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 386 kB in 1s (274 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 ... 7875 files and directories currently installed.) -Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... -Unpacking liblocale-gettext-perl (1.07-3build2) ... -Selecting previously unselected package keyboard-configuration. -Preparing to unpack .../keyboard-configuration_1.178ubuntu2.9_all.deb ... -Unpacking keyboard-configuration (1.178ubuntu2.9) ... -Setting up liblocale-gettext-perl (1.07-3build2) ... -Setting up keyboard-configuration (1.178ubuntu2.9) ... -Your console font configuration will be updated the next time your system -boots. If you want to update it now, run 'setupcon' from a virtual console. -Reading package lists... -Building dependency tree... -Reading state information... -The following additional packages will be installed: - console-setup-linux kbd xkb-data -Suggested packages: - locales -The following NEW packages will be installed: - console-setup console-setup-linux kbd xkb-data -0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. -Need to get 1627 kB of archives. -After this operation, 6256 kB of additional disk space will be used. -Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 kbd amd64 2.0.4-2ubuntu1 [215 kB] -Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup-linux all 1.178ubuntu2.9 [982 kB] -Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB] -Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 console-setup all 1.178ubuntu2.9 [105 kB] -debconf: delaying package configuration, since apt-utils is not installed -Fetched 1627 kB in 1s (1162 kB/s) -Selecting previously unselected package kbd. -(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 ... 7914 files and directories currently installed.) -Preparing to unpack .../kbd_2.0.4-2ubuntu1_amd64.deb ... -Unpacking kbd (2.0.4-2ubuntu1) ... -Selecting previously unselected package console-setup-linux. -Preparing to unpack .../console-setup-linux_1.178ubuntu2.9_all.deb ... -Unpacking console-setup-linux (1.178ubuntu2.9) ... -Selecting previously unselected package xkb-data. -Preparing to unpack .../xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ... -Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ... -Selecting previously unselected package console-setup. -Preparing to unpack .../console-setup_1.178ubuntu2.9_all.deb ... -Unpacking console-setup (1.178ubuntu2.9) ... -Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ... -Setting up console-setup-linux (1.178ubuntu2.9) ... -update-alternatives: using /etc/console-setup/vtrgb to provide /etc/vtrgb (vtrgb) in auto mode -Setting up console-setup (1.178ubuntu2.9) ... -Setting up kbd (2.0.4-2ubuntu1) ... -Removing intermediate container d4bcb1959542 - ---> c394950174e5 -Step 8/12 : RUN git clone https://github.com/schwarz-em/chipyard.git && cd chipyard && ./scripts/ubuntu-req.sh 1>/dev/null - ---> Running in e9b3287018db -Cloning into 'chipyard'... -+ sudo apt-get install -y build-essential bison flex -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y libgmp-dev libmpfr-dev libmpc-dev zlib1g-dev vim git default-jdk default-jre -debconf: delaying package configuration, since apt-utils is not installed -+ 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 -Warning: apt-key output should not be parsed (stdout is not a terminal) -+ sudo apt-get update -+ sudo apt-get install -y sbt -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y texinfo gengetopt -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y libexpat1-dev libusb-dev libncurses5-dev cmake -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y python3.6 patch diffstat texi2html texinfo subversion chrpath git wget -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y libgtk-3-dev gettext -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y python3-pip python3.6-dev rsync libguestfs-tools expat ctags -debconf: delaying package configuration, since apt-utils is not installed -+ sudo apt-get install -y device-tree-compiler -debconf: delaying package configuration, since apt-utils is not installed -+ git clone http://git.veripool.org/git/verilator -Cloning into 'verilator'... -+ cd verilator -+ git checkout v4.034 -Note: checking out 'v4.034'. - -You are in 'detached HEAD' state. You can look around, make experimental -changes and commit them, and you can discard any commits you make in this -state without impacting any branches by performing another checkout. - -If you want to create a new branch to retain commits you create, you may -do so (now or later) by using -b with the checkout command again. Example: - - git checkout -b - -HEAD is now at 9dc65df9 Version bump -+ autoconf -+ ./configure -+ make -j16 -make[2]: warning: -jN forced in submake: disabling jobserver mode. -make[2]: warning: -jN forced in submake: disabling jobserver mode. -+ sudo make install -mkdir /usr/local/share/verilator -mkdir /usr/local/share/verilator/bin -mkdir /usr/local/share/man/man1 -mkdir /usr/local/share/verilator/include -mkdir /usr/local/share/verilator/include/gtkwave -mkdir /usr/local/share/verilator/include/vltstd -mkdir /usr/local/share/verilator/examples -mkdir /usr/local/share/verilator/examples/make_hello_c -mkdir /usr/local/share/verilator/examples/make_hello_sc -mkdir /usr/local/share/verilator/examples/make_tracing_c -mkdir /usr/local/share/verilator/examples/make_tracing_sc -mkdir /usr/local/share/verilator/examples/make_protect_lib -mkdir /usr/local/share/verilator/examples/cmake_hello_c -mkdir /usr/local/share/verilator/examples/cmake_hello_sc -mkdir /usr/local/share/verilator/examples/cmake_tracing_c -mkdir /usr/local/share/verilator/examples/cmake_tracing_sc -mkdir /usr/local/share/verilator/examples/cmake_protect_lib -mkdir /usr/local/share/verilator/examples/xml_py -mkdir /usr/local/share/pkgconfig -Removing intermediate container e9b3287018db - ---> 21bafbf4da21 -Step 9/12 : RUN cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - ---> Running in 676d65941d3a -Removing intermediate container 676d65941d3a - ---> b7d45d90bbcb -Step 10/12 : RUN cd chipyard && export MAKEFLAGS=-"j $(nproc)" && ./scripts/build-toolchains.sh riscv-tools 1>/dev/null - ---> Running in d4c7d9e86f09 -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/defparse.y: warning: 27 shift/reduce conflicts [-Wconflicts-sr] -/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/sysinfo.y: warning: 1 shift/reduce conflict [-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/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: decimal float is not supported for this target, ignored -objcopy: /tmp/ls106546: debuglink section already exists -ar: `u' modifier ignored since `D' is the default (see `U') -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/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 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: python is missing or unusable; some features may be unavailable. -configure: WARNING: libipt is missing or unusable; some features may be unavailable. -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); - ^ -../../../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 -configure: WARNING: babeltrace is missing or unusable; GDB is unable to read CTF data. -/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)) - ^~ -/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 ()); - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -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; - ^ ~~ -/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(); } - ^^^^^^^^^^^^^^^^^^^^ -../../../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-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); - ^ -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; - ^~~~~~~~~~~~~~~~~~~~~~ -../../../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); - ^ -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/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/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; - ^ ~~ -GIMPLE decision tree has 2874 leafs, maximum depth 12 and a total number of 11721 nodes -removed 1855 duplicate tails -../../../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); - ~~~~~~^~~~~~~~~~~~~~~ -GENERIC decision tree has 2760 leafs, maximum depth 12 and a total number of 11180 nodes -removed 1757 duplicate tails -../../../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 scsi/cxlflash_ioctl.h -Applying io_quotes_use to mtd/ubi-user.h -Applying io_quotes_use to rdma/rdma_user_ioctl.h -Applying io_quotes_use to misc/cxl.h -Applying io_quotes_use to misc/ocxl.h -Applying io_quotes_use to sound/asound.h -Applying io_quotes_use to sound/emu10k1.h -Applying io_quotes_use to sound/asequencer.h -Applying io_quotes_use to sound/compress_offload.h -Applying io_quotes_use to drm/omap_drm.h -Applying io_quotes_use to drm/r128_drm.h -Applying io_quotes_use to drm/i915_drm.h -Applying io_quotes_use to drm/nouveau_drm.h -Applying io_quotes_use to drm/mga_drm.h -Applying io_quotes_use to drm/via_drm.h -Applying io_quotes_use to drm/i810_drm.h -Applying io_quotes_use to drm/radeon_drm.h -Applying io_quotes_use to drm/vc4_drm.h -Applying io_quotes_use to drm/vgem_drm.h -Applying io_quotes_use to drm/amdgpu_drm.h -Applying io_quotes_use to drm/sis_drm.h -Applying io_quotes_use to drm/msm_drm.h -Applying io_quotes_use to drm/drm.h -Applying io_quotes_use to drm/tegra_drm.h -Applying io_quotes_use to drm/v3d_drm.h -Applying io_quotes_use to drm/exynos_drm.h -Applying io_quotes_use to drm/savage_drm.h -Applying io_quotes_use to drm/etnaviv_drm.h -Applying io_quotes_use to linux/dm-ioctl.h -Applying io_quotes_use to linux/btrfs.h -Applying io_quotes_use to linux/fpga-dfl.h -Applying io_quotes_use to linux/agpgart.h -Applying io_quotes_use to linux/rpmsg.h -Applying io_quotes_use to linux/vfio.h -Applying io_quotes_use to linux/if_pppox.h -Applying io_quotes_use to linux/vtpm_proxy.h -Applying io_quotes_use to linux/ptp_clock.h -Applying io_quotes_use to linux/mmc/ioctl.h -Applying io_quotes_use to linux/ipmi.h -Applying io_quotes_use to linux/ndctl.h -Applying io_quotes_use to linux/vboxguest.h -Applying io_quotes_use to linux/nsfs.h -Applying io_quotes_use to linux/dn.h -Applying io_quotes_use to linux/fd.h -Applying io_quotes_use to linux/synclink.h -Applying io_quotes_use to linux/wmi.h -Applying io_quotes_use to linux/gpio.h -Applying io_quotes_use to linux/atmbr2684.h -Applying io_quotes_use to linux/suspend_ioctls.h -Applying io_quotes_use to linux/ppdev.h -Applying io_quotes_use to linux/genwqe/genwqe_card.h -Applying io_quotes_use to linux/ipmi_bmc.h -Applying io_quotes_use to linux/seccomp.h -Applying io_quotes_use to linux/omapfb.h -Applying io_quotes_use to linux/vhost.h -Applying io_quotes_use to linux/tee.h -Applying io_quotes_use to linux/lightnvm.h -Applying io_quotes_use to linux/cm4000_cs.h -Applying io_quotes_use to linux/mmtimer.h -Applying io_quotes_use to linux/usb/tmc.h -Applying io_quotes_use to linux/aspeed-lpc-ctrl.h -Applying io_quotes_use to linux/gigaset_dev.h -Applying io_quotes_def to linux/version.h -Applying io_quotes_use to linux/rio_cm_cdev.h -Applying io_quotes_use to linux/nbd.h -Applying io_quotes_use to linux/fuse.h -Applying io_quotes_use to linux/rfkill.h -Applying io_quotes_use to linux/pktcdvd.h -Applying io_quotes_use to linux/watchdog.h -Applying io_quotes_use to linux/i2o-dev.h -Applying io_quotes_use to linux/vm_sockets.h -Applying io_quotes_use to linux/userfaultfd.h -Applying io_quotes_use to linux/uinput.h -Applying io_quotes_def to linux/pci_regs.h -Applying io_quotes_use to linux/reiserfs_fs.h -Applying io_quotes_use to linux/random.h -Applying io_quotes_use to linux/bt-bmc.h -Applying io_quotes_use to linux/cciss_ioctl.h -Applying io_quotes_use to linux/psp-sev.h -Applying io_quotes_def to linux/ppp-comp.h -Applying io_quotes_use to linux/phantom.h -Applying io_quotes_use to linux/blkpg.h -Applying io_quotes_def to linux/soundcard.h -Applying io_quotes_use to linux/raid/md_u.h -Applying io_quotes_use to linux/dma-buf.h -Applying io_quotes_use to linux/fs.h -Applying io_quotes_use to linux/raw.h -Applying io_quotes_use to linux/spi/spidev.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/blkzoned.h -Applying io_quotes_use to linux/sync_file.h -Applying io_quotes_use to linux/auto_fs.h -Applying io_quotes_use to video/sisfb.h --fself-test: 46308 pass(es) in 0.379968 seconds -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/ls71525: 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); - ^ -ar: `u' modifier ignored since `D' is the default (see `U') -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); - ^ -../../../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 `:' -../../../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 '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-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-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-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-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-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: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/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/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/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/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/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/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/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 -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/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/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); -Applying hpux8_bogus_inlines to math.h -Applying io_quotes_use to scsi/cxlflash_ioctl.h -Applying sysv68_string to string.h -Applying io_quotes_use to mtd/ubi-user.h -Applying pthread_incomplete_struct_argument to pthread.h -Applying io_quotes_use to rdma/rdma_user_ioctl.h -Applying io_quotes_use to sys/mount.h -Applying io_quotes_use to sys/raw.h -Applying sun_malloc to malloc.h -Applying io_quotes_use to misc/cxl.h -Applying io_quotes_use to misc/ocxl.h -Applying io_quotes_use to sound/asound.h -Applying io_quotes_use to sound/emu10k1.h -Applying io_quotes_use to sound/asequencer.h -Applying io_quotes_use to sound/compress_offload.h -Applying io_quotes_use to drm/omap_drm.h -Applying io_quotes_use to drm/r128_drm.h -Applying io_quotes_use to drm/i915_drm.h -Applying io_quotes_use to drm/nouveau_drm.h -Applying io_quotes_use to drm/mga_drm.h -Applying io_quotes_use to drm/via_drm.h -Applying io_quotes_use to drm/i810_drm.h -Applying io_quotes_use to drm/radeon_drm.h -Applying io_quotes_use to drm/vc4_drm.h -Applying io_quotes_use to drm/vgem_drm.h -Applying io_quotes_use to drm/amdgpu_drm.h -Applying io_quotes_use to drm/sis_drm.h -Applying io_quotes_use to drm/msm_drm.h -Applying io_quotes_use to drm/drm.h -Applying io_quotes_use to drm/tegra_drm.h -Applying io_quotes_use to drm/v3d_drm.h -Applying io_quotes_use to drm/exynos_drm.h -Applying io_quotes_use to drm/savage_drm.h -Applying io_quotes_use to drm/etnaviv_drm.h -Applying io_quotes_use to linux/dm-ioctl.h -Applying io_quotes_use to linux/btrfs.h -Applying io_quotes_use to linux/fpga-dfl.h -Applying io_quotes_use to linux/agpgart.h -Applying io_quotes_use to linux/rpmsg.h -Applying io_quotes_use to linux/vfio.h -Applying io_quotes_use to linux/if_pppox.h -Applying io_quotes_use to linux/vtpm_proxy.h -Applying io_quotes_use to linux/ptp_clock.h --fself-test: 46308 pass(es) in 0.375724 seconds -Applying io_quotes_use to linux/mmc/ioctl.h -Applying io_quotes_use to linux/ipmi.h -Applying io_quotes_use to linux/ndctl.h -Applying io_quotes_use to linux/vboxguest.h -Applying io_quotes_use to linux/nsfs.h -Applying io_quotes_use to linux/dn.h -Applying io_quotes_use to linux/fd.h -Applying io_quotes_use to linux/synclink.h -Applying io_quotes_use to linux/wmi.h -Applying io_quotes_use to linux/gpio.h -Applying io_quotes_use to linux/atmbr2684.h -Applying io_quotes_use to linux/suspend_ioctls.h -Applying io_quotes_use to linux/ppdev.h -Applying io_quotes_use to linux/genwqe/genwqe_card.h -Applying io_quotes_use to linux/ipmi_bmc.h -Applying io_quotes_use to linux/seccomp.h -Applying io_quotes_use to linux/omapfb.h -Applying io_quotes_use to linux/vhost.h -Applying io_quotes_use to linux/tee.h -Applying io_quotes_use to linux/lightnvm.h -Applying io_quotes_use to linux/cm4000_cs.h -Applying io_quotes_use to linux/mmtimer.h -Applying io_quotes_use to linux/usb/tmc.h -Applying io_quotes_use to linux/aspeed-lpc-ctrl.h -Applying io_quotes_use to linux/gigaset_dev.h -Applying io_quotes_def to linux/version.h -Applying io_quotes_use to linux/rio_cm_cdev.h -Applying io_quotes_use to linux/nbd.h -Applying io_quotes_use to linux/fuse.h -Applying io_quotes_use to linux/rfkill.h -Applying io_quotes_use to linux/pktcdvd.h -Applying io_quotes_use to linux/watchdog.h -Applying io_quotes_use to linux/i2o-dev.h -Applying io_quotes_use to linux/vm_sockets.h -Applying io_quotes_use to linux/userfaultfd.h -Applying io_quotes_use to linux/uinput.h -Applying io_quotes_def to linux/pci_regs.h -Applying io_quotes_use to linux/reiserfs_fs.h -Applying io_quotes_use to linux/random.h -Applying io_quotes_use to linux/bt-bmc.h -Applying io_quotes_use to linux/cciss_ioctl.h -Applying io_quotes_use to linux/psp-sev.h -Applying io_quotes_def to linux/ppp-comp.h -Applying io_quotes_use to linux/phantom.h -Applying io_quotes_use to linux/blkpg.h -Applying io_quotes_def to linux/soundcard.h -Applying io_quotes_use to linux/raid/md_u.h -Applying io_quotes_use to linux/dma-buf.h -Applying io_quotes_use to linux/fs.h -Applying io_quotes_use to linux/raw.h -Applying io_quotes_use to linux/spi/spidev.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/blkzoned.h -Applying io_quotes_use to linux/sync_file.h -Applying io_quotes_use to linux/auto_fs.h -Applying io_quotes_use to video/sisfb.h -Applying glibc_stdint to stdint.h --fself-test: 46338 pass(es) in 0.372092 seconds -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 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/krb5' -Submodule 'pyca.cryptography' (https://github.com/pyca/cryptography.git) registered for path 'toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/pyca-cryptography' -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/boringssl'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/krb5'... -Cloning into '/home/riscvuser/chipyard/toolchains/qemu/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/pyca-cryptography'... -ar: creating libdromajo_cosim.a -Removing intermediate container d4c7d9e86f09 - ---> 67593a0dda02 -Step 11/12 : ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] - ---> Running in 15694aa6e91a -Removing intermediate container 15694aa6e91a - ---> df74d16ea3fb -Step 12/12 : CMD ["/bin/sh"] - ---> Running in 00e6435aedd8 -Removing intermediate container 00e6435aedd8 - ---> 24b1063f956e -Successfully built 24b1063f956e -[schwarzem@a6:/scratch/schwarzem/chipyard]$ eixit -exit - -Script done on 2020-12-22 19:36:46-0800 diff --git a/verilator-no-env.txt b/verilator-no-env.txt deleted file mode 100644 index 9100a140b3..0000000000 --- a/verilator-no-env.txt +++ /dev/null @@ -1,68235 +0,0 @@ -Script started on 2020-12-22 19:37:05-0800 -[schwarzem@a6:/scratch/schwarzem/chipyard]$ exitdocker build .exitdocker build .exitdocker build .git pushcommit -m "Cleaned d up dockerfile"add * - cat Dockerfiledocker ps --sizef -k /ocker run --rm -it 4e ec24ac7d0ce bash -ilbuild . - run --rm -it cd d221c694d36 bash -ilbuild . - run --rm -it cd d221c694d36 bash -il  b24[12@b1063f956e b -]0;riscvuser@dd954fd5a122: ~riscvuser@dd954fd5a122:~$ ]0;riscvuser@dd954fd5a122: ~riscvuser@dd954fd5a122:~$ cd chipyard/sims/verilator -]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ make -make -C /home/riscvuser/chipyard/tools/firrtl SBT="java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar" root_dir=/home/riscvuser/chipyard/tools/firrtl build-scala -make[1]: Entering directory '/home/riscvuser/chipyard/tools/firrtl' -java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "assembly" -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -Getting org.scala-sbt sbt 1.3.8 (this may take some time)... -downloading https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#sbt;1.3.8!sbt.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar ... - [SUCCESSFUL ] org.scala-lang#scala-library;2.12.10!scala-library.jar (137ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#main_2.12;1.3.8!main_2.12.jar (155ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#io_2.12;1.3.3!io_2.12.jar (23ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#logic_2.12;1.3.8!logic_2.12.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#actions_2.12;1.3.8!actions_2.12.jar (18ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#main-settings_2.12;1.3.8!main-settings_2.12.jar (24ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#run_2.12;1.3.8!run_2.12.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#command_2.12;1.3.8!command_2.12.jar (62ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#collections_2.12;1.3.8!collections_2.12.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#scripted-sbt-redux_2.12;1.3.8!scripted-sbt-redux_2.12.jar (39ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#scripted-plugin_2.12;1.3.8!scripted-plugin_2.12.jar (13ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-lm-integration_2.12;1.3.8!zinc-lm-integration_2.12.jar (18ms) -downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar ... - [SUCCESSFUL ] org.scala-lang.modules#scala-xml_2.12;1.2.0!scala-xml_2.12.jar(bundle) (26ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar ... - [SUCCESSFUL ] org.scala-sbt#launcher-interface;1.1.3!launcher-interface.jar (15ms) -downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar ... - [SUCCESSFUL ] org.apache.logging.log4j#log4j-api;2.11.2!log4j-api.jar (18ms) -downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar ... - [SUCCESSFUL ] org.apache.logging.log4j#log4j-core;2.11.2!log4j-core.jar (38ms) -downloading https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar ... - [SUCCESSFUL ] org.apache.logging.log4j#log4j-slf4j-impl;2.11.2!log4j-slf4j-impl.jar (62ms) -downloading https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar ... - [SUCCESSFUL ] com.github.cb372#scalacache-caffeine_2.12;0.20.0!scalacache-caffeine_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar ... - [SUCCESSFUL ] io.get-coursier#lm-coursier-shaded_2.12;2.0.0-RC5-3!lm-coursier-shaded_2.12.jar (195ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-logging_2.12;1.3.3!util-logging_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar ... - [SUCCESSFUL ] org.scala-sbt#librarymanagement-core_2.12;1.3.1!librarymanagement-core_2.12.jar (27ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar ... - [SUCCESSFUL ] org.scala-sbt#librarymanagement-ivy_2.12;1.3.1!librarymanagement-ivy_2.12.jar (23ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#compiler-interface;1.3.4!compiler-interface.jar (18ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-compile_2.12;1.3.4!zinc-compile_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-relation_2.12;1.3.3!util-relation_2.12.jar (103ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.2/sjson-new-scalajson_2.12-0.8.2.jar ... - [SUCCESSFUL ] com.eed3si9n#sjson-new-scalajson_2.12;0.8.2!sjson-new-scalajson_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-position_2.12;1.3.3!util-position_2.12.jar (15ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar ... - [SUCCESSFUL ] com.eed3si9n#shaded-scalajson_2.12;1.0.0-M4!shaded-scalajson_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar ... - [SUCCESSFUL ] org.spire-math#jawn-parser_2.12;0.10.4!jawn-parser_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar ... - [SUCCESSFUL ] org.scala-lang#scala-reflect;2.12.10!scala-reflect.jar (66ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#completion_2.12;1.3.8!completion_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#task-system_2.12;1.3.8!task-system_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#tasks_2.12;1.3.8!tasks_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#testing_2.12;1.3.8!testing_2.12.jar (18ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-tracking_2.12;1.3.3!util-tracking_2.12.jar (13ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-classpath_2.12;1.3.4!zinc-classpath_2.12.jar (13ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-apiinfo_2.12;1.3.4!zinc-apiinfo_2.12.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc_2.12;1.3.4!zinc_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar ... - [SUCCESSFUL ] jline#jline;2.14.6!jline.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-control_2.12;1.3.3!util-control_2.12.jar (12ms) -downloading https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar ... - [SUCCESSFUL ] com.swoval#file-tree-views;2.1.3!file-tree-views.jar (17ms) -downloading https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar ... - [SUCCESSFUL ] net.java.dev.jna#jna;4.5.0!jna.jar (37ms) -downloading https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar ... - [SUCCESSFUL ] net.java.dev.jna#jna-platform;4.5.0!jna-platform.jar (46ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-interface;1.3.3!util-interface.jar (14ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar ... - [SUCCESSFUL ] com.eed3si9n#sjson-new-core_2.12;0.8.3!sjson-new-core_2.12.jar (24ms) -downloading https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar ... - [SUCCESSFUL ] com.lmax#disruptor;3.4.2!disruptor.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar ... - [SUCCESSFUL ] org.scala-lang#scala-compiler;2.12.10!scala-compiler.jar (259ms) -downloading https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar ... - [SUCCESSFUL ] com.google.protobuf#protobuf-java;3.7.0!protobuf-java.jar(bundle) (34ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-cache_2.12;1.3.3!util-cache_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar ... - [SUCCESSFUL ] com.eed3si9n#sjson-new-murmurhash_2.12;0.8.3!sjson-new-murmurhash_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#test-agent;1.3.8!test-agent.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar ... - [SUCCESSFUL ] org.scala-sbt#test-interface;1.0!test-interface.jar (62ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#compiler-bridge_2.12;1.3.4!compiler-bridge_2.12.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-classfile_2.12;1.3.4!zinc-classfile_2.12.jar (18ms) -downloading https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar ... - [SUCCESSFUL ] com.jcraft#jsch;0.1.54!jsch.jar (18ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar ... - [SUCCESSFUL ] com.eed3si9n#gigahorse-okhttp_2.12;0.5.0!gigahorse-okhttp_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar ... - [SUCCESSFUL ] com.squareup.okhttp3#okhttp-urlconnection;3.7.0!okhttp-urlconnection.jar (15ms) -downloading https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar ... - [SUCCESSFUL ] com.eed3si9n#gigahorse-core_2.12;0.5.0!gigahorse-core_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar ... - [SUCCESSFUL ] com.squareup.okhttp3#okhttp;3.14.2!okhttp.jar (19ms) -downloading https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar ... - [SUCCESSFUL ] com.typesafe#ssl-config-core_2.12;0.4.0!ssl-config-core_2.12.jar(bundle) (19ms) -downloading https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar ... - [SUCCESSFUL ] org.reactivestreams#reactive-streams;1.0.2!reactive-streams.jar (13ms) -downloading https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar ... - [SUCCESSFUL ] org.slf4j#slf4j-api;1.7.26!slf4j-api.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar ... - [SUCCESSFUL ] org.scala-lang.modules#scala-parser-combinators_2.12;1.1.2!scala-parser-combinators_2.12.jar(bundle) (20ms) -downloading https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar ... - [SUCCESSFUL ] com.typesafe#config;1.3.3!config.jar(bundle) (20ms) -downloading https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar ... - [SUCCESSFUL ] com.squareup.okio#okio;1.17.2!okio.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-core_2.12;1.3.4!zinc-core_2.12.jar (27ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-persist_2.12;1.3.4!zinc-persist_2.12.jar (39ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-compile-core_2.12;1.3.4!zinc-compile-core_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar ... - [SUCCESSFUL ] com.trueaccord.scalapb#scalapb-runtime_2.12;0.6.0!scalapb-runtime_2.12.jar (40ms) -downloading https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar ... - [SUCCESSFUL ] com.trueaccord.lenses#lenses_2.12;0.4.12!lenses_2.12.jar (13ms) -downloading https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar ... - [SUCCESSFUL ] com.lihaoyi#fastparse_2.12;0.4.2!fastparse_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar ... - [SUCCESSFUL ] com.lihaoyi#fastparse-utils_2.12;0.4.2!fastparse-utils_2.12.jar (46ms) -downloading https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar ... - [SUCCESSFUL ] com.lihaoyi#sourcecode_2.12;0.1.3!sourcecode_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar ... - [SUCCESSFUL ] org.scala-sbt#sbinary_2.12;0.5.0!sbinary_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#core-macros_2.12;1.3.8!core-macros_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar ... - [SUCCESSFUL ] org.scala-sbt#protocol_2.12;1.3.8!protocol_2.12.jar (22ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar ... - [SUCCESSFUL ] org.scala-sbt#template-resolver;0.1!template-resolver.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar ... - [SUCCESSFUL ] org.scala-sbt.ipcsocket#ipcsocket;1.0.0!ipcsocket.jar (14ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar ... - [SUCCESSFUL ] org.scala-sbt#util-scripted_2.12;1.3.3!util-scripted_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar ... - [SUCCESSFUL ] com.github.cb372#scalacache-core_2.12;0.20.0!scalacache-core_2.12.jar (14ms) -downloading https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar ... - [SUCCESSFUL ] com.github.ben-manes.caffeine#caffeine;2.5.6!caffeine.jar (216ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar ... - [SUCCESSFUL ] org.scala-sbt.ivy#ivy;2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19!ivy.jar (450ms) -:: retrieving :: org.scala-sbt#boot-app - confs: [default] - 81 artifacts copied, 0 already retrieved (37999kB/85ms) -Getting Scala 2.12.10 (for sbt)... -downloading https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar ... - [SUCCESSFUL ] org.scala-lang.modules#scala-xml_2.12;1.0.6!scala-xml_2.12.jar(bundle) (22ms) -downloading https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/jansi-1.12.jar ... - [SUCCESSFUL ] org.fusesource.jansi#jansi;1.12!jansi.jar (17ms) -:: retrieving :: org.scala-sbt#boot-scala - confs: [default] - 6 artifacts copied, 0 already retrieved (20113kB/26ms) -[info] Loading settings for project firrtl-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/tools/firrtl/project - - - - - - | => Global / publishTo 0s - | => Global / credentials 0s - | => firrtl-build / dependencyResolution 0s - - - - - - - - | => firrtl-build / dependencyResolution 0s - - - - - - - - | => firrtl-build / dependencyResolution 0s - - - - - - | => Global / publishTo 0s - | => Global / credentials 0s - | => firrtl-build / dependencyResolution 0s - - - - - - | => Global / publishTo 0s - | => Global / credentials 0s - | => firrtl-build / dependencyResolution 0s - - - - - - - | => firrtl-build / otherResolvers 0s - | => Global / credentials 0s - - - - - - - | => firrtl-build / otherResolvers 0s - | => Global / credentials 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | => firrtl-build / dependencyResolution 0s - | => firrtl-build / projectDependencies 0s - | => firrtl-build / Compile / scalacOptions 0s - - - - - - | => firrtl-build / dependencyResolution 0s - | => firrtl-build / projectDependencies 0s - | => firrtl-build / Compile / scalacOptions 0s - - - - - - | => firrtl-build / dependencyResolution 0s - | => firrtl-build / projectDependencies 0s - | => firrtl-build / Compile / scalacOptions 0s - - - - - - | => firrtl-build / allCredentials 0s - | => firrtl-build / csrConfiguration 0s - | => firrtl-build / dependencyPositions 0s - | => firrtl-build / projectDescriptors 0s - | => firrtl-build / csrRecursiveResolvers 0s - | => firrtl-build / csrInterProjectDependencies 0s - | => firrtl-build / csrFallbackDependencies 0s - - - - - - | => firrtl-build / allCredentials 0s - | => firrtl-build / csrConfiguration 0s - | => firrtl-build / dependencyPositions 0s - | => firrtl-build / projectDescriptors 0s - | => firrtl-build / csrRecursiveResolvers 0s - | => firrtl-build / csrInterProjectDependencies 0s - | => firrtl-build / csrFallbackDependencies 0s - - - - - - - - - | => Global / incOptions 0s - | => firrtl-build / csrConfiguration 0s - | => firrtl-build / dependencyPositions 0s - | => firrtl-build / projectDescriptors 0s - - - - - - | => firrtl-build / csrRecursiveResolvers 0s - | => firrtl-build / csrInterProjectDependencies 0s - | => firrtl-build / csrFallbackDependencies 0s - | => firrtl-build / Compile / unmanagedJars 0s - | => firrtl-build / Runtime / unmanagedJars 0s - | => firrtl-build / moduleSettings 0s - | => firrtl-build / csrConfiguration 0s - | => firrtl-build / dependencyPositions 0s - | => firrtl-build / projectDescriptors 0s - - - - - - - - - | => firrtl-build / scalaCompilerBridgeResolvers 0s - | => firrtl-build / csrConfiguration 0s - | => firrtl-build / Compile / externalHooks 0s - | => firrtl-build / Compile / externalHooks 0s - | => firrtl-build / moduleSettings 0s - | => firrtl-build / dependencyPositions 0s - - - - - - - - - - - - - | => firrtl-build / csrProject 0s - | => firrtl-build / dependencyPositions 0s - - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - - | => firrtl-build / update 0s -[info] Updating  - - - - - - - - - - - - - | => firrtl-build / update 0s -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-site_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 0s -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 100.0% [##########] 3.1 KiB (36.3 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 100.0% [##########] 3.1 KiB (40.2 KiB / s) -https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? - 100.0% [##########] 4.6 KiB (61.1 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 100.0% [##########] 3.1 KiB (22.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 1.6 KiB (11.0 KiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? - 100.0% [##########] 1.9 KiB (13.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? - 100.0% [##########] 4.5 KiB (134.9 KiB / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 100.0% [##########] 2.1 KiB (65.4 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 0s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - | => firrtl-build / update 0s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 1s - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 2s -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 2s -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 2s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 2.0 KiB (6.8 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 1.7 KiB (5.3 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 2.4 KiB (7.1 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 1.5 KiB (4.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 2.3 KiB (6.7 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 4.0 KiB (12.0 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 2s -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/9/oss? - 100.0% [##########] 6.4 KiB (98.7 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 2s - - - - - - - - - - - - - | => firrtl-build / update 3s -https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? - 100.0% [##########] 1.8 KiB (122.8 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 100.0% [##########] 2.5 KiB (167.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? - 100.0% [##########] 3.4 KiB (225.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? - 100.0% [##########] 7.8 KiB (521.9 KiB / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? - 100.0% [##########] 2.2 KiB (90.7 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? - 100.0% [##########] 3.0 KiB (330.7 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 9.5 KiB (414.8 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 100.0% [##########] 2.6 KiB (136.1 KiB / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? - 100.0% [##########] 2.1 KiB (81.6 KiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 100.0% [##########] 2.2 KiB (78.0 KiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? - 100.0% [##########] 2.6 KiB (134.4 KiB / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 100.0% [##########] 2.4 KiB (188.2 KiB / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? - 100.0% [##########] 36.8 KiB (995.3 KiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-filter_2? - 100.0% [##########] 2.9 KiB (240.7 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 100.0% [##########] 2.0 KiB (185.6 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 100.0% [##########] 2.9 KiB (137.3 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? - 100.0% [##########] 2.7 KiB (190.3 KiB / s) -https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? - 100.0% [##########] 2.6 KiB (124.5 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 100.0% [##########] 2.0 KiB (72.9 KiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-directiv? - 100.0% [##########] 2.9 KiB (151.8 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? - 100.0% [##########] 2.7 KiB (47.9 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 3s -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 100.0% [##########] 1.6 KiB (16.4 KiB / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 3s - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s -https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s -https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s - - - - - - - - - - - - - | => firrtl-build / update 4s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 4s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 2.5 KiB (20.8 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 5s -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 35.3 KiB (2.2 MiB / s) - - - - - - - - - - - - - | => firrtl-build / update 5s -https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? - 100.0% [##########] 4.4 KiB (258.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? - 100.0% [##########] 9.4 KiB (552.9 KiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 100.0% [##########] 1.1 KiB (65.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? - 100.0% [##########] 2.6 KiB (154.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? - 100.0% [##########] 9.4 KiB (254.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? - 100.0% [##########] 2.6 KiB (71.0 KiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 100.0% [##########] 1.1 KiB (30.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 100.0% [##########] 3.8 KiB (103.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 100.0% [##########] 3.1 KiB (84.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? - 100.0% [##########] 4.4 KiB (115.8 KiB / s) -https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffe? - 100.0% [##########] 2.4 KiB (168.0 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? - 100.0% [##########] 3.2 KiB (126.4 KiB / s) -https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? - 100.0% [##########] 7.3 KiB (280.2 KiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? - 100.0% [##########] 1.4 KiB (65.1 KiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 100.0% [##########] 2.1 KiB (79.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 2.4 KiB (173.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 1.8 KiB (77.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 100.0% [##########] 4.3 KiB (267.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/? - 100.0% [##########] 6.0 KiB (401.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? - 100.0% [##########] 1.8 KiB (96.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 100.0% [##########] 4.3 KiB (159.0 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 100.0% [##########] 2.4 KiB (133.3 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.1/jzlib-1.1.? - 100.0% [##########] 3.0 KiB (300.2 KiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? - 100.0% [##########] 7.1 KiB (282.2 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.1/jzlib-1.1.? - 100.0% [##########] 3.0 KiB (107.2 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 100.0% [##########] 2.4 KiB (66.7 KiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? - 100.0% [##########] 1.8 KiB (195.3 KiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? - 100.0% [##########] 1.5 KiB (59.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-ap? - 100.0% [##########] 12.8 KiB (675.4 KiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? - 100.0% [##########] 9.9 KiB (583.5 KiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? - 100.0% [##########] 1.5 KiB (140.7 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? - 100.0% [##########] 1.9 KiB (69.4 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom - 100.0% [##########] 2.9 KiB (150.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 100.0% [##########] 2.8 KiB (175.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? - 100.0% [##########] 3.6 KiB (208.9 KiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? - 100.0% [##########] 2.5 KiB (103.2 KiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 100.0% [##########] 3.8 KiB (182.6 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? - 100.0% [##########] 3.6 KiB (324.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 100.0% [##########] 5.9 KiB (585.5 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-a? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 5s -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 100.0% [##########] 5.9 KiB (218.0 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 100.0% [##########] 2.2 KiB (105.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 100.0% [##########] 22.6 KiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? - 100.0% [##########] 3.5 KiB (314.0 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? - 100.0% [##########] 6.7 KiB (335.3 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? - 100.0% [##########] 3.6 KiB (119.1 KiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? - 100.0% [##########] 2.0 KiB (107.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 100.0% [##########] 2.7 KiB (122.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? - 100.0% [##########] 6.5 KiB (435.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 100.0% [##########] 5.9 KiB (201.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_? - 100.0% [##########] 4.8 KiB (265.5 KiB / s) -https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? - 100.0% [##########] 2.5 KiB (208.4 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.2/slf4j-a? - 100.0% [##########] 2.6 KiB (90.6 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? - 100.0% [##########] 1.7 KiB (69.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 100.0% [##########] 5.6 KiB (214.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? - 100.0% [##########] 4.3 KiB (193.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 100.0% [##########] 4.7 KiB (174.0 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? - 100.0% [##########] 1.9 KiB (24.4 KiB / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 5s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 5s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 6s - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 2.7 KiB (27.3 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 2.7 KiB (22.7 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-project/9? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/ant/ant-parent/1.9.9/a? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven/3.3.9/mave? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/ant/ant-parent/1.9.9/a? - 100.0% [##########] 5.5 KiB (238.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j/2.? - 100.0% [##########] 60.3 KiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven/3.3.9/mave? - 100.0% [##########] 23.4 KiB (1016.0 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-project/9? - 100.0% [##########] 42.3 KiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/9.2.6.0? - 100.0% [##########] 3.9 KiB (276.2 KiB / s) -https://repo1.maven.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom - 100.0% [##########] 11.0 KiB (476.8 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.2/slf4? - 100.0% [##########] 11.5 KiB (501.2 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/6/oss? - 100.0% [##########] 4.7 KiB (337.0 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/5/oss? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/3/oss? - 100.0% [##########] 3.3 KiB (297.5 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/5/oss? - 100.0% [##########] 4.0 KiB (173.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/21/apache-21.pom - 100.0% [##########] 16.7 KiB (928.1 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-parent/27/? - 100.0% [##########] 39.8 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-parent/23? - 100.0% [##########] 21.4 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-parent/9.2.6.0/jr? - 100.0% [##########] 24.6 KiB (1.3 MiB / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/org/apache/apache/17/apache-17.pom - 100.0% [##########] 15.7 KiB (871.1 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/oss/oss-parent/7/oss? - 100.0% [##########] 4.7 KiB (247.9 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? - 100.0% [##########] 2.1 KiB (93.7 KiB / s) -https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? - 100.0% [##########] 1.8 KiB (141.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 100.0% [##########] 2.1 KiB (97.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 100.0% [##########] 3.5 KiB (157.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? - 100.0% [##########] 4.8 KiB (369.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? - 100.0% [##########] 2.1 KiB (92.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 100.0% [##########] 2.7 KiB (208.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? - 100.0% [##########] 2.5 KiB (195.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? - 100.0% [##########] 2.9 KiB (221.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 100.0% [##########] 3.7 KiB (162.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 100.0% [##########] 3.9 KiB (169.3 KiB / s) -https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom - 100.0% [##########] 632 B (77.1 KiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? - 100.0% [##########] 2.9 KiB (317.3 KiB / s) -https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? - 100.0% [##########] 2.1 KiB (102.2 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 100.0% [##########] 2.1 KiB (122.5 KiB / s) -https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? - 100.0% [##########] 11.3 KiB (436.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? - 100.0% [##########] 3.9 KiB (164.1 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? - 100.0% [##########] 6.1 KiB (318.8 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 4.1 KiB (290.9 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? - 100.0% [##########] 1.9 KiB (77.5 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? - 100.0% [##########] 3.0 KiB (179.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 100.0% [##########] 4.8 KiB (191.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? - 100.0% [##########] 1.5 KiB (96.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? - 100.0% [##########] 4.7 KiB (180.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? - 100.0% [##########] 3.2 KiB (323.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zin? - 100.0% [##########] 4.1 KiB (292.3 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 100.0% [##########] 5.2 KiB (207.4 KiB / s) -https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? - 100.0% [##########] 1.3 KiB (61.0 KiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? - 100.0% [##########] 1.8 KiB (152.9 KiB / s) -https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? - 100.0% [##########] 2.3 KiB (87.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? - 100.0% [##########] 2.1 KiB (122.6 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? - 100.0% [##########] 2.0 KiB (73.2 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? - 100.0% [##########] 2.5 KiB (114.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 100.0% [##########] 4.8 KiB (265.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? - 100.0% [##########] 4.3 KiB (250.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? - 100.0% [##########] 5.2 KiB (521.7 KiB / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 100.0% [##########] 8.1 KiB (354.3 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 100.0% [##########] 17.4 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 100.0% [##########] 3.0 KiB (304.2 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-? - 100.0% [##########] 3.7 KiB (415.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? - 100.0% [##########] 2.3 KiB (105.0 KiB / s) -https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? - 100.0% [##########] 5.5 KiB (273.2 KiB / s) -https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.p? - 100.0% [##########] 19.4 KiB (1.5 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? - 100.0% [##########] 3.2 KiB (152.7 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 100.0% [##########] 42.7 KiB (2.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 100.0% [##########] 17.4 KiB (580.7 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-? - 100.0% [##########] 3.1 KiB (162.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? - 100.0% [##########] 3.2 KiB (215.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 100.0% [##########] 2.3 KiB (80.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 100.0% [##########] 3.0 KiB (104.9 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-? - 100.0% [##########] 3.7 KiB (133.7 KiB / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.pom - 100.0% [##########] 2.8 KiB (251.8 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.pom - 100.0% [##########] 2.8 KiB (92.3 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.7.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? - 100.0% [##########] 7.1 KiB (321.2 KiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.7.0? - 100.0% [##########] 15.7 KiB (714.4 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom - 100.0% [##########] 14.1 KiB (640.5 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.? - 100.0% [##########] 13.4 KiB (609.3 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf? - 100.0% [##########] 13.2 KiB (573.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 21.4% [## ] 12.0 KiB (547.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 56.4 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? - 38.6% [### ] 1.3 KiB (191.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/15/apache-15.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? - 100.0% [##########] 3.5 KiB (128.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/15/apache-15.pom - 100.0% [##########] 14.9 KiB (551.1 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 4.0 KiB (152.5 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? - 100.0% [##########] 9.9 KiB (659.9 KiB / s) -https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? - 100.0% [##########] 6.6 KiB (389.5 KiB / s) -https://repo1.maven.org/maven2/commons-logging/commons-logging/1? - 100.0% [##########] 5.1 KiB (321.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 100.0% [##########] 2.1 KiB (81.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 100.0% [##########] 2.8 KiB (107.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 27.2 KiB (1.6 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 100.0% [##########] 5.0 KiB (192.6 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? - 100.0% [##########] 3.6 KiB (136.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? - 100.0% [##########] 2.3 KiB (84.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 100.0% [##########] 3.7 KiB (206.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 100.0% [##########] 3.7 KiB (372.6 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? - 100.0% [##########] 2.7 KiB (301.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? - 100.0% [##########] 2.5 KiB (92.6 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-constants/0.9.? - 100.0% [##########] 3.7 KiB (184.1 KiB / s) -https://repo1.maven.org/maven2/com/headius/modulator/1.0/modulat? - 100.0% [##########] 1.7 KiB (142.3 KiB / s) -https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? - 100.0% [##########] 1.6 KiB (83.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-exte? - 100.0% [##########] 4.8 KiB (396.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? - 100.0% [##########] 3.3 KiB (163.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? - 100.0% [##########] 4.2 KiB (159.9 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? - 100.0% [##########] 2.7 KiB (96.9 KiB / s) -https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.p? - 100.0% [##########] 2.9 KiB (286.0 KiB / s) -https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? - 100.0% [##########] 7.0 KiB (437.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 100.0% [##########] 3.7 KiB (128.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/com/headius/backport9/1.1/backpor? - 100.0% [##########] 1.7 KiB (142.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 100.0% [##########] 17.8 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 100.0% [##########] 5.0 KiB (209.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? - 100.0% [##########] 3.1 KiB (182.2 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? - 100.0% [##########] 7.1 KiB (285.4 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? - 100.0% [##########] 815 B (72.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 100.0% [##########] 2.8 KiB (148.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? - 100.0% [##########] 1.8 KiB (68.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 100.0% [##########] 1.7 KiB (153.4 KiB / s) -https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? - 100.0% [##########] 1.8 KiB (80.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? - 100.0% [##########] 4.0 KiB (269.9 KiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? - 100.0% [##########] 2.4 KiB (104.4 KiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? - 100.0% [##########] 2.2 KiB (145.9 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? - 100.0% [##########] 4.5 KiB (185.9 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/? - 100.0% [##########] 3.7 KiB (220.1 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? - 100.0% [##########] 3.5 KiB (140.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? - 100.0% [##########] 3.1 KiB (311.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/? - 100.0% [##########] 2.2 KiB (117.4 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 100.0% [##########] 9.0 KiB (643.3 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? - 100.0% [##########] 6.2 KiB (280.8 KiB / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 100.0% [##########] 4.3 KiB (157.7 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? - 100.0% [##########] 3.0 KiB (112.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-? - 100.0% [##########] 3.1 KiB (173.0 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? - 100.0% [##########] 1.7 KiB (168.7 KiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? - 100.0% [##########] 2.1 KiB (267.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? - 100.0% [##########] 2.1 KiB (76.3 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-netdb/1.1.6/jn? - 100.0% [##########] 1.8 KiB (90.1 KiB / s) -https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-? - 100.0% [##########] 1.4 KiB (73.7 KiB / s) -https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? - 100.0% [##########] 33.8 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? - 100.0% [##########] 1.7 KiB (56.2 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 2.6 KiB (284.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 2.6 KiB (88.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 100.0% [##########] 3.4 KiB (31.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 100.0% [##########] 2.1 KiB (14.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 7s -https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? - 100.0% [##########] 1.5 KiB (8.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 7s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 8s - - - - - - - - - - - - - | => firrtl-build / update 9s - - - - - - - - - - - - - | => firrtl-build / update 9s - - - - - - - - - - - - - | => firrtl-build / update 9s - - - - - - - - - - - - - | => firrtl-build / update 9s - - - - - - - - - - - - - | => firrtl-build / update 9s - - - - - - - - - - - - - | => firrtl-build / update 9s -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 100.0% [##########] 4.8 KiB (2.4 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/3.3.1/? - 80.1% [######## ] 16.0 KiB (2.2 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-inject/0.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/avalon/avalon-framewor? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr-master/3.5.2/antl? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/martiansoftware/nailgun-all/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-parent/1.? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 9s -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bas? - 100.0% [##########] 5.2 KiB (291.3 KiB / s) -https://repo1.maven.org/maven2/com/martiansoftware/nailgun-all/0? - 100.0% [##########] 4.9 KiB (180.6 KiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/parent/3.14.? - 100.0% [##########] 21.0 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr-master/3.5.2/antl? - 100.0% [##########] 12.0 KiB (444.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/avalon-framewor? - 100.0% [##########] 1.8 KiB (68.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 75.7 KiB (4.1 MiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-contai? - 100.0% [##########] 4.1 KiB (207.0 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/3.3.1/? - 100.0% [##########] 20.0 KiB (739.5 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/sisu-inject/0.3.? - 100.0% [##########] 14.1 KiB (521.1 KiB / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-parent/1.? - 100.0% [##########] 2.3 KiB (82.1 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 9s -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? - 100.0% [##########] 7.8 KiB (80.2 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? - 100.0% [##########] 6.6 KiB (68.0 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 100.0% [##########] 12.0 KiB (123.8 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? - 95.1% [######### ] 16.1 KiB (165.6 KiB / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 100.0% [##########] 12.0 KiB (102.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/19/apache-19.pom - 100.0% [##########] 15.1 KiB (129.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/excalibur/excalibur/1/? - 100.0% [##########] 7.8 KiB (66.5 KiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/2.0.7/? - 100.0% [##########] 16.9 KiB (144.4 KiB / s) -https://repo1.maven.org/maven2/org/sonatype/spice/spice-parent/1? - 100.0% [##########] 6.6 KiB (56.4 KiB / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? - 100.0% [##########] 7.8 KiB (783.5 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/3/apache-3.pom - 100.0% [##########] 3.3 KiB (335.0 KiB / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-api-bom/1.0/w? - 100.0% [##########] 7.7 KiB (56.4 KiB / s) -https://repo1.maven.org/maven2/org/jboss/weld/weld-parent/6/weld? - 100.0% [##########] 20.2 KiB (2.0 MiB / s) -https://repo1.maven.org/maven2/org/sonatype/forge/forge-parent/1? - 100.0% [##########] 13.2 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/33/oss-p? - 100.0% [##########] 21.3 KiB (1.3 MiB / s) - - - - - - - - - - - - - | => firrtl-build / update 9s -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 100.0% [##########] 2.6 KiB (286.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? - 100.0% [##########] 3.5 KiB (441.9 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? - 100.0% [##########] 3.2 KiB (396.6 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? - 100.0% [##########] 4.0 KiB (500.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? - 100.0% [##########] 3.0 KiB (370.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? - 100.0% [##########] 3.2 KiB (113.3 KiB / s) -https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? - 100.0% [##########] 612 B (33.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? - 100.0% [##########] 3.5 KiB (126.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? - 100.0% [##########] 4.0 KiB (441.4 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? - 100.0% [##########] 3.6 KiB (324.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? - 100.0% [##########] 3.4 KiB (117.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgg? - 100.0% [##########] 3.4 KiB (170.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? - 100.0% [##########] 3.0 KiB (105.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? - 100.0% [##########] 3.1 KiB (148.3 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? - 100.0% [##########] 4.0 KiB (143.1 KiB / s) -https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? - 100.0% [##########] 1.1 KiB (56.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? - 100.0% [##########] 2.5 KiB (229.0 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? - 100.0% [##########] 3.7 KiB (249.7 KiB / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.pom - 100.0% [##########] 491 B (53.3 KiB / s) -https://repo1.maven.org/maven2/xml-apis/xml-apis-ext/1.3.04/xml-? - 100.0% [##########] 1.8 KiB (128.1 KiB / s) -https://repo1.maven.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis? - 100.0% [##########] 1.8 KiB (84.7 KiB / s) -https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? - 100.0% [##########] 1.9 KiB (88.0 KiB / s) -https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? - 100.0% [##########] 1023 B (37.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? - 100.0% [##########] 4.3 KiB (172.0 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.26/slf? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okio/okio-parent/1.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okio/okio-parent/1.1? - 100.0% [##########] 4.7 KiB (197.9 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.26/slf? - 100.0% [##########] 13.4 KiB (513.8 KiB / s) -https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? - 100.0% [##########] 1.8 KiB (102.3 KiB / s) -https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? - 100.0% [##########] 13.2 KiB (695.3 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? - 100.0% [##########] 2.5 KiB (129.7 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? - 100.0% [##########] 2.2 KiB (117.6 KiB / s) -https://repo1.maven.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-? - 100.0% [##########] 346 B (17.8 KiB / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? - 100.0% [##########] 2.5 KiB (65.9 KiB / s) -https://repo1.maven.org/maven2/net/java/jvnet-parent/3/jvnet-par? - 100.0% [##########] 4.7 KiB (467.7 KiB / s) - - - - - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? - 100.0% [##########] 2.3 KiB (335.1 KiB / s) -https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3? - 100.0% [##########] 1.8 KiB (219.6 KiB / s) -[info] Resolved dependencies - - - - - - - - - - - - | => firrtl-build / update 10s - - - - - - - - - - - - | => firrtl-build / update 10s - - - - - - - - - - - - | => firrtl-build / update 10s -[info] Updating  - - - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? - 100.0% [##########] 3.6 KiB (172.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 100.0% [##########] 2.5 KiB (136.6 KiB / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.1? - 100.0% [##########] 14.2 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? - 100.0% [##########] 11.5 KiB (523.1 KiB / s) -[info] Resolved dependencies - - - - - - - - - - | => firrtl-build / update 10s - - - - - - - - - - | => firrtl-build / update 10s - - - - - - - - - - | => firrtl-build / update 10s - - - - - - - - - - | => firrtl-build / update 10s -[info] Fetching artifacts of  - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9? - 100.0% [##########] 112.9 KiB (5.5 MiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? - 100.0% [##########] 43.8 KiB (2.1 MiB / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? - 52.2% [##### ] 144.0 KiB (8.3 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 3.9% [ ] 62.9 KiB (3.4 MiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-unixsocket/0.2? - 100.0% [##########] 43.8 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.5? - 100.0% [##########] 276.0 KiB (7.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 100.0% [##########] 221.8 KiB (9.0 MiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? - 31.6% [### ] 213.6 KiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 26.5% [## ] 431.1 KiB (11.4 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 24.3% [## ] 125.9 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 2.2% [ ] 96.0 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? - 100.0% [##########] 677.0 KiB (11.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 90.9% [######### ] 469.9 KiB (8.2 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 62.3% [###### ] 1013.5 KiB (17.7 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 11.1% [# ] 491.7 KiB (12.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-brid? - 100.0% [##########] 517.3 KiB (6.6 MiB / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/j? - 100.0% [##########] 148.2 KiB (8.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jcodings/jcodings/1.0.4? - 100.0% [##########] 1.6 MiB (20.4 MiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle_2.12/1.? - 100.0% [##########] 677.0 KiB (8.5 MiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-filter_2? - 100.0% [##########] 22.4 KiB (974.9 KiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 24.0% [## ] 1.0 MiB (16.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 41.8% [#### ] 1.8 MiB (22.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 37.0% [### ] 655.4 KiB (20.6 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 16.5% [# ] 448.0 KiB (19.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 76.2% [####### ] 1.3 MiB (25.8 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 63.1% [###### ] 2.7 MiB (27.6 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 40.7% [#### ] 1.1 MiB (25.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 100.0% [##########] 1.7 MiB (24.3 MiB / s) -https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? - 100.0% [##########] 81.7 KiB (11.4 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 86.9% [######## ] 3.8 MiB (31.6 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 67.9% [###### ] 1.8 MiB (28.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/commons-io/commons-io/1.3.1/commo? - 100.0% [##########] 81.7 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1? - 100.0% [##########] 4.3 MiB (31.2 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 2.6 MiB (31.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? - 100.0% [##########] 208.0 KiB (10.2 MiB / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 100.0% [##########] 23.8 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 100.0% [##########] 149.7 KiB (6.6 MiB / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 100.0% [##########] 166.5 KiB (6.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 12.2% [# ] 163.3 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 8.3% [ ] 297.3 KiB (18.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 4.1% [ ] 408.7 KiB (28.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 78.4% [####### ] 1.0 MiB (6.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 24.7% [## ] 885.5 KiB (24.7 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 12.2% [# ] 1.2 MiB (35.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 10s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.3 MiB (7.1 MiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 72.1% [####### ] 523.7 KiB (8.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 38.2% [### ] 1.3 MiB (24.4 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 21.1% [## ] 2.0 MiB (38.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.24/snakeyaml? - 100.0% [##########] 295.5 KiB (9.3 MiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered_2.12/0.9? - 100.0% [##########] 726.2 KiB (8.6 MiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? - 68.0% [###### ] 160.0 KiB (12.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 58.8% [##### ] 2.1 MiB (27.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 31.4% [### ] 3.0 MiB (41.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-posix/3.0.49/j? - 100.0% [##########] 235.4 KiB (7.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 80.8% [######## ] 2.8 MiB (29.8 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 43.7% [#### ] 4.2 MiB (45.5 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 11.8% [# ] 208.0 KiB (8.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 3.5 MiB (30.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 56.1% [##### ] 5.4 MiB (48.1 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 33.2% [### ] 587.7 KiB (12.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 100.0% [##########] 48.4 KiB (2.2 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 73.4% [####### ] 7.1 MiB (53.4 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 62.3% [###### ] 1.1 MiB (16.6 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 10s -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 100.0% [##########] 577.9 KiB (19.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 86.7% [######## ] 8.4 MiB (54.8 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 86.1% [######## ] 1.5 MiB (17.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/jruby-core/9.2.6.0/jrub? - 100.0% [##########] 9.7 MiB (55.9 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.8.? - 100.0% [##########] 1.7 MiB (16.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/? - 100.0% [##########] 200.6 KiB (8.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree? - 100.0% [##########] 49.2 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 100.0% [##########] 89.7 KiB (4.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 100.0% [##########] 271.2 KiB (12.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/? - 100.0% [##########] 10.4 KiB (359.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_? - 100.0% [##########] 76.6 KiB (3.9 MiB / s) -https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? - 100.0% [##########] 121.8 KiB (11.9 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 65.9% [###### ] 13.1 KiB (112.3 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 19.9 KiB (146.6 KiB / s) -https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_? - 100.0% [##########] 121.8 KiB (4.1 MiB / s) -https://repo1.maven.org/maven2/com/headius/modulator/1.0/modulat? - 100.0% [##########] 4.5 KiB (225.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket? - 100.0% [##########] 21.1 KiB (753.3 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 91.6% [######### ] 384.0 KiB (20.8 MiB / s) -https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? - 80.3% [######## ] 1.3 MiB (48.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/geirsson/coursier-small_2.12/? - 100.0% [##########] 1.7 MiB (34.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgg? - 100.0% [##########] 173.7 KiB (10.6 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/? - 100.0% [##########] 93.7 KiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 100.0% [##########] 419.1 KiB (10.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/lo? - 100.0% [##########] 48.7 KiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/te? - 100.0% [##########] 22.9 KiB (761.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? - 100.0% [##########] 33.5 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? - 11.5% [# ] 32.0 KiB (3.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash? - 100.0% [##########] 5.2 KiB (191.7 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 100.0% [##########] 147.6 KiB (10.3 MiB / s) -https://repo1.maven.org/maven2/commons-codec/commons-codec/1.10/? - 100.0% [##########] 277.5 KiB (9.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/? - 100.0% [##########] 136.8 KiB (6.1 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.2.? - 100.0% [##########] 367.9 KiB (18.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? - 100.0% [##########] 14.2 KiB (789.1 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/martiansoftware/nailgun-serve? - 100.0% [##########] 32.2 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-? - 100.0% [##########] 294.0 KiB (19.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? - 83.6% [######## ] 1.6 MiB (54.4 MiB / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 32.8% [### ] 16.0 KiB (219.2 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/beust/jcommander/1.35/jcomman? - 100.0% [##########] 59.1 KiB (4.4 MiB / s) -https://repo1.maven.org/maven2/com/headius/invokebinder/1.11/inv? - 100.0% [##########] 48.9 KiB (525.3 KiB / s) -https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.? - 100.0% [##########] 2.0 MiB (39.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java? - 100.0% [##########] 1.1 MiB (42.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-enxio/0.19/jnr? - 100.0% [##########] 29.1 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-exte? - 100.0% [##########] 53.5 KiB (2.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 20.7% [## ] 2.1 MiB (80.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 1.1 MiB (2.7 MiB / s) -https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3? - 100.0% [##########] 93.6 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 31.6% [### ] 3.2 MiB (69.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? - 55.9% [##### ] 785.9 KiB (21.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 45.1% [#### ] 4.6 MiB (69.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 44.9% [#### ] 240.0 KiB (10.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.? - 100.0% [##########] 1.4 MiB (24.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 100.0% [##########] 535.0 KiB (12.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 58.0% [##### ] 5.9 MiB (68.6 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 739.9 KiB (4.9 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 29.6 KiB (251.1 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-c? - 100.0% [##########] 78.0 KiB (2.9 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? - 100.0% [##########] 250.5 KiB (11.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 69.8% [###### ] 7.1 MiB (66.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.4/config-? - 100.0% [##########] 285.9 KiB (10.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/? - 100.0% [##########] 250.5 KiB (6.1 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.2.? - 100.0% [##########] 124.0 KiB (5.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 86.2% [######## ] 8.8 MiB (69.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? - 14.4% [# ] 160.0 KiB (7.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 10.2 MiB (69.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? - 92.1% [######### ] 1.0 MiB (24.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/commons-logging/commons-logging/1? - 100.0% [##########] 37.1 KiB (4.5 MiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/? - 100.0% [##########] 239.2 KiB (13.0 MiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.8.0? - 100.0% [##########] 31.9 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-8? - 100.0% [##########] 1.1 MiB (17.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 21.2% [## ] 1.1 MiB (71.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 58.4% [##### ] 2.9 MiB (86.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 57.3% [##### ] 352.0 KiB (17.2 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 100.0% [##########] 614.1 KiB (15.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 98.5% [######### ] 5.0 MiB (91.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 13.3 KiB (120.7 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-constants/0.9.? - 100.0% [##########] 537.2 KiB (29.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util? - 100.0% [##########] 105.2 KiB (3.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (67.1 MiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? - 65.7% [###### ] 512.7 KiB (38.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 33.6% [### ] 39.1 KiB (323.3 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 116.4 KiB (831.3 KiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/? - 100.0% [##########] 780.1 KiB (23.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9? - 100.0% [##########] 18.0 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-pars? - 100.0% [##########] 217.8 KiB (21.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 100.0% [##########] 773.9 KiB (34.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 100.0% [##########] 1.3 KiB (69.7 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 34.0% [### ] 240.0 KiB (1.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/com/github/jnr/jffi/1.2.18/jffi-1? - 100.0% [##########] 705.7 KiB (4.9 MiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr-runtime/3.5.2/ant? - 100.0% [##########] 163.8 KiB (6.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-ap? - 100.0% [##########] 260.0 KiB (21.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-sl? - 100.0% [##########] 22.7 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim? - 100.0% [##########] 368.2 KiB (20.0 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 21.1% [## ] 336.0 KiB (11.3 MiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? - 19.7% [# ] 448.0 KiB (29.2 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? - 100.0% [##########] 222.6 KiB (9.9 MiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 100.0% [##########] 705.2 KiB (26.5 MiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? - 70.5% [####### ] 1.6 MiB (46.0 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 32.2% [### ] 512.0 KiB (10.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/headius/backport9/1.1/backpor? - 100.0% [##########] 11.7 KiB (1.0 MiB / s) -https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5? - 100.0% [##########] 2.2 MiB (41.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/? - 100.0% [##########] 140.8 KiB (5.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby/9.2.6.0/jruby-9.2? - 100.0% [##########] 41.3 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-jetty_2.? - 100.0% [##########] 60.7 KiB (5.9 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 52.9% [##### ] 841.2 KiB (11.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? - 41.1% [#### ] 1011.0 KiB (52.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/? - 100.0% [##########] 204.4 KiB (9.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/mai? - 100.0% [##########] 2.4 MiB (63.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8? - 100.0% [##########] 64.9 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 70.3% [####### ] 1.1 MiB (12.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_? - 100.0% [##########] 36.6 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3? - 100.0% [##########] 107.9 KiB (10.5 MiB / s) -https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-co? - 100.0% [##########] 1.6 MiB (14.3 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-api/? - 100.0% [##########] 44.8 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.? - 100.0% [##########] 410.8 KiB (26.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 100.0% [##########] 76.2 KiB (3.1 MiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-util_2.1? - 100.0% [##########] 33.2 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 100.0% [##########] 110.8 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? - 26.1% [## ] 1.0 MiB (51.4 MiB / s) -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 24.6% [## ] 427.7 KiB (17.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? - 72.4% [####### ] 2.9 MiB (71.3 MiB / s) -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 49.5% [#### ] 859.7 KiB (19.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/2.1/fo? - 100.0% [##########] 3.9 MiB (65.6 MiB / s) -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 91.5% [######### ] 1.6 MiB (24.3 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-ru? - 100.0% [##########] 1.7 MiB (20.4 MiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classw? - 100.0% [##########] 51.4 KiB (3.1 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? - 70.3% [####### ] 208.0 KiB (22.6 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 44.8 KiB (385.8 KiB / s) -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 100.0% [##########] 162.0 KiB (10.5 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12? - 100.0% [##########] 295.9 KiB (10.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 100.0% [##########] 620.8 KiB (24.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 60.4% [###### ] 33.7 KiB (297.8 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 55.7 KiB (419.0 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 1.1 MiB (10.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/joni/joni/2.1.25/joni-2? - 100.0% [##########] 216.7 KiB (9.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/? - 100.0% [##########] 357.2 KiB (26.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.1? - 100.0% [##########] 41.9 KiB (2.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 100.0% [##########] 32.4 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zin? - 100.0% [##########] 63.2 KiB (6.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 3.5 KiB (31.0 KiB / s) -https://repo1.maven.org/maven2/com/github/jnr/jnr-netdb/1.1.6/jn? - 100.0% [##########] 60.2 KiB (4.9 MiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.? - 100.0% [##########] 415.8 KiB (20.3 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-tran? - 100.0% [##########] 90.3 KiB (8.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 25.1 KiB (255.9 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.jar - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 25.1 KiB (214.3 KiB / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 100.0% [##########] 8.1 KiB (507.8 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jzlib/1.1.3/jzlib-1.1.? - 100.0% [##########] 70.3 KiB (5.7 MiB / s) -https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/j? - 100.0% [##########] 5.7 KiB (285.5 KiB / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.1/ST4-4.1.jar - 100.0% [##########] 247.1 KiB (10.5 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.? - 100.0% [##########] 105.2 KiB (4.3 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 368.8 KiB (30.0 MiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 100.0% [##########] 59.6 KiB (6.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.1? - 100.0% [##########] 64.5 KiB (2.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/avalon/framework/avalo? - 100.0% [##########] 59.6 KiB (2.1 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 368.8 KiB (11.3 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-? - 100.0% [##########] 32.5 KiB (1.6 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.7.0? - 100.0% [##########] 239.0 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/7.0/asm-util? - 100.0% [##########] 78.9 KiB (6.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 6.0 KiB (54.4 KiB / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/? - 100.0% [##########] 60.8 KiB (2.7 MiB / s) -https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? - 63.4% [###### ] 623.4 KiB (43.5 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 4.0% [ ] 298.4 KiB (19.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 1.1 MiB (8.2 MiB / s) -https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caf? - 100.0% [##########] 983.5 KiB (28.2 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 13.1% [# ] 986.4 KiB (27.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/? - 100.0% [##########] 299.8 KiB (11.7 MiB / s) -https://repo1.maven.org/maven2/org/antlr/stringtemplate/3.2.1/st? - 100.0% [##########] 145.1 KiB (5.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 100.0% [##########] 78.1 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 100.0% [##########] 12.3 KiB (723.3 KiB / s) -https://repo1.maven.org/maven2/xml-apis/xml-apis-ext/1.3.04/xml-? - 100.0% [##########] 83.7 KiB (9.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? - 100.0% [##########] 26.1 KiB (2.8 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 37.2% [### ] 2.7 MiB (48.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/? - 100.0% [##########] 26.1 KiB (933.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/? - 100.0% [##########] 177.5 KiB (7.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? - 100.0% [##########] 16.6 KiB (829.8 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 59.1% [##### ] 4.3 MiB (57.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 2.1% [ ] 208.0 KiB (174.3 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 1.2% [ ] 120.7 KiB (10.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1? - 100.0% [##########] 846.0 KiB (25.8 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 66.1% [###### ] 4.9 MiB (51.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 9.3% [ ] 968.4 KiB (31.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 2.7% [ ] 272.0 KiB (224.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-pars? - 100.0% [##########] 54.0 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 76.4% [####### ] 5.6 MiB (48.7 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 19.6% [# ] 2.0 MiB (39.9 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 14.4% [# ] 425.3 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 3.5% [ ] 352.2 KiB (285.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 85.3% [######## ] 6.3 MiB (46.4 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 29.7% [## ] 3.0 MiB (43.2 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 24.0% [## ] 709.5 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 4.5% [ ] 448.2 KiB (357.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 490.1 KiB (11.7 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 93.6% [######### ] 6.9 MiB (44.3 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 39.4% [### ] 4.0 MiB (44.6 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 33.4% [### ] 987.7 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 5.3% [ ] 528.2 KiB (414.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 100.0% [##########] 7.3 MiB (41.9 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.2.21? - 100.0% [##########] 105.7 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 52.0% [##### ] 5.3 MiB (48.1 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 43.9% [#### ] 1.3 MiB (2.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 6.4% [ ] 640.2 KiB (495.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 11s -https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12? - 100.0% [##########] 33.1 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/foundweekends/knockoff_2.12/0? - 100.0% [##########] 199.4 KiB (7.8 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 66.7% [###### ] 6.8 MiB (52.2 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 57.9% [##### ] 1.7 MiB (3.7 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 7.6% [ ] 752.2 KiB (572.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3? - 100.0% [##########] 53.7 KiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/? - 100.0% [##########] 10.1 KiB (421.0 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 82.5% [######## ] 8.4 MiB (56.0 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 73.3% [####### ] 2.1 MiB (4.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 8.8% [ ] 880.2 KiB (660.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api? - 100.0% [##########] 46.4 KiB (1.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/ta? - 100.0% [##########] 83.7 KiB (3.4 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 97.7% [######### ] 9.9 MiB (58.5 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 88.2% [######## ] 2.5 MiB (5.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 10.1% [# ] 1008.2 KiB (745.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/? - 100.0% [##########] 153.7 KiB (15.0 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 316.4 KiB (18.2 MiB / s) -https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disrupto? - 100.0% [##########] 81.1 KiB (3.4 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/interface/0.0.19/? - 100.0% [##########] 2.9 MiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-stdlib/9.2.6.0/jr? - 100.0% [##########] 10.2 MiB (53.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8? - 100.0% [##########] 432.9 KiB (17.6 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? - 70.4% [####### ] 224.0 KiB (16.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 32.4% [### ] 176.0 KiB (21.5 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 13.4% [# ] 1.3 MiB (967.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/oki? - 100.0% [##########] 89.8 KiB (7.3 MiB / s) -https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-? - 100.0% [##########] 43.9 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.j? - 100.0% [##########] 262.5 KiB (12.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-? - 100.0% [##########] 212.1 KiB (15.9 MiB / s) -https://repo1.maven.org/maven2/org/bouncycastle/bcpg-jdk15on/1.6? - 100.0% [##########] 318.0 KiB (9.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_? - 100.0% [##########] 543.5 KiB (19.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 100.0% [##########] 274.1 KiB (10.3 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 18.2% [# ] 1.8 MiB (1.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s -https://repo1.maven.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar - 100.0% [##########] 434.9 KiB (15.2 MiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? - 100.0% [##########] 33.1 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlco? - 100.0% [##########] 31.8 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 100.0% [##########] 629.9 KiB (38.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? - 83.2% [######## ] 506.5 KiB (30.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 24.3% [## ] 2.4 MiB (1.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/xmlgraphic? - 100.0% [##########] 629.9 KiB (11.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.? - 100.0% [##########] 608.7 KiB (11.4 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 26.7% [## ] 2.6 MiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-? - 100.0% [##########] 40.2 KiB (1004.4 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 29.1% [## ] 2.8 MiB (1.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? - 0.0% [ ] 0 B -https://repo1.maven.org/maven2/org/pegdown/pegdown/1.6.0/pegdown? - 100.0% [##########] 78.1 KiB (2.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 100.0% [##########] 96.5 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 100.0% [##########] 26.8 KiB (924.2 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 35.2% [### ] 3.4 MiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.j? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 122.6 KiB (1.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 10.2 KiB (104.6 KiB / s) -https://repo1.maven.org/maven2/org/jruby/dirgra/0.3/dirgra-0.3.j? - 100.0% [##########] 16.0 KiB (516.6 KiB / s) -https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? - 68.6% [###### ] 837.5 KiB (24.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 40.2% [#### ] 3.9 MiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s -https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffe? - 100.0% [##########] 6.9 KiB (527.6 KiB / s) -https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/? - 100.0% [##########] 208.0 KiB (8.1 MiB / s) -https://repo1.maven.org/maven2/com/thoughtworks/extractor/extrac? - 100.0% [##########] 19.6 KiB (982.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.? - 100.0% [##########] 160.1 KiB (6.0 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar - 100.0% [##########] 111.0 KiB (8.3 MiB / s) -https://repo1.maven.org/maven2/org/scalariform/scalariform_2.12/? - 100.0% [##########] 1.2 MiB (22.1 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 48.9% [#### ] 4.8 MiB (3.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.2.2? - 100.0% [##########] 43.1 KiB (1.6 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu? - 100.0% [##########] 200.6 KiB (7.3 MiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.3.? - 100.0% [##########] 76.1 KiB (4.1 MiB / s) -https://repo1.maven.org/maven2/org/reactivestreams/reactive-stre? - 100.0% [##########] 2.0 KiB (78.8 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 67.9% [###### ] 6.6 MiB (4.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 33.9% [### ] 112.0 KiB (10.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/sbt-api-mappings? - 100.0% [##########] 55.4 KiB (1.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 100.0% [##########] 330.9 KiB (11.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? - 100.0% [##########] 73.3 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0? - 100.0% [##########] 72.5 KiB (4.2 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 87.3% [######## ] 8.5 MiB (5.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 96.5% [######### ] 9.4 MiB (6.0 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 54.2% [##### ] 753.9 KiB (28.3 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 5.8% [ ] 636.1 KiB (22.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.11.1? - 100.0% [##########] 9.7 MiB (6.1 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 100.0% [##########] 1.4 MiB (29.5 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 17.9% [# ] 1.9 MiB (39.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 2.0 KiB (17.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 100.0% [##########] 64.2 KiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 38.3% [### ] 4.1 MiB (59.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 74.9% [####### ] 130.7 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 50.2% [##### ] 5.3 MiB (60.7 MiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 43.3% [#### ] 160.0 KiB (7.1 MiB / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar - 25.8% [## ] 688.0 KiB (19.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 100.0% [##########] 369.7 KiB (8.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 74.9% [####### ] 130.7 KiB (947.3 KiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 62.6% [###### ] 6.7 MiB (61.6 MiB / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar - 53.2% [##### ] 1.4 MiB (25.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 174.6 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-scri? - 100.0% [##########] 16.8 KiB (478.7 KiB / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar - 84.9% [######## ] 2.2 MiB (29.5 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 75.5% [####### ] 8.0 MiB (62.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0? - 100.0% [##########] 807 B (24.6 KiB / s) -https://repo1.maven.org/maven2/org/scalastyle/scalastyle-sbt-plu? - 100.0% [##########] 34.9 KiB (968.8 KiB / s) -https://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar - 100.0% [##########] 2.6 MiB (27.7 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 92.1% [######### ] 9.8 MiB (66.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s -https://repo1.maven.org/maven2/com/headius/options/1.4/options-1? - 100.0% [##########] 13.9 KiB (769.7 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 100.0% [##########] 54.9 KiB (1.5 MiB / s) -https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax? - 100.0% [##########] 2.4 KiB (84.1 KiB / s) -https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-ti? - 100.0% [##########] 619.2 KiB (35.6 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj-diag? - 100.0% [##########] 10.6 MiB (63.3 MiB / s) -https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compon? - 100.0% [##########] 4.1 KiB (124.6 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.3.? - 100.0% [##########] 189.3 KiB (12.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.3 MiB (8.5 MiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? - 100.0% [##########] 50.5 KiB (4.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? - 100.0% [##########] 2.5 KiB (109.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 100.0% [##########] 25.9 KiB (589.4 KiB / s) -https://repo1.maven.org/maven2/ws/unfiltered/unfiltered-directiv? - 100.0% [##########] 127.6 KiB (7.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarja? - 100.0% [##########] 122.3 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 32.0% [### ] 1.0 MiB (37.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 100.0% [##########] 156.1 KiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 100.0% [##########] 542.7 KiB (16.1 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 82.5% [######## ] 2.7 MiB (56.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 126.6 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 100.0% [##########] 3.3 MiB (48.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 43.3% [#### ] 480.0 KiB (3.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.6.? - 100.0% [##########] 1.1 MiB (7.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 12s - - - - - - - - - | => firrtl-build / update 12s - - - - - - - - - | => firrtl-build / update 12s - - - - - - - - - | => firrtl-build / update 12s - - - - - - - - - | => firrtl-build / update 12s - - - - - - - - - | => firrtl-build / update 13s -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - | => firrtl-build / update 13s -https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/? - 100.0% [##########] 14.4 KiB (7.7 KiB / s) -[info] Fetched artifacts of  - - - - - - - - | => firrtl-build / update 13s - - - - - - - - | => firrtl-build / update 13s - - - - - - - - | => firrtl-build / update 13s - - - - - - - - | => firrtl-build / update 13s - - - - - - - - | => firrtl-build / update 13s -[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. - - - - - - - | => firrtl-build / update 13s - - - - - - - | => firrtl-build / update 13s - - - - - - - | => firrtl-build / update 13s - - - - - - - | => firrtl-build / Compile / previousCompile 0s - - - - - - - | => firrtl-build / Compile / compileIncremental 0s - - - - - - - | => firrtl-build / Compile / compileIncremental 0s - - - - - - - -[info] Loading settings for project firrtl from build.sbt ... -[info] Set current project to firrtl (in build file:/home/riscvuser/chipyard/tools/firrtl/) - - - - - - | => Global / fileTreeView 0s - - - - - - - - - - - - - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - | => Zero / checkBuildSources / dynamicInputs 0s - | => Global / fileTreeView 0s - - - - - - | => Zero / checkBuildSources / dynamicInputs 0s - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - | => Zero / checkBuildSources / dynamicInputs 0s - | => Global / fileTreeView 0s - - - - - - | => Global / checkBuildSources 0s - | => Zero / checkBuildSources / dynamicInputs 0s - | => Global / fileTreeView 0s - - - - - - - - - - - - - - - - - - - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - | => Global / fileTreeView 0s - - - - - - - - - - - - - - - - - - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - | => Global / fileTreeView 0s - - - - - - - - - - - - - - - - - - - - - - - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - | => Global / fileTreeView 0s - - - - - - | => Global / previousCache 0s - | => Global / fileTreeView 0s - - - - - - - - - - - - - | => firrtl / assembly / assemblyOutputPath 0s - - - - - - | => firrtl / assembly / assemblyOutputPath 0s - - - - - - - - - - - - | => firrtl / transitiveUpdate 0s - | => firrtl / transitiveUpdate 0s - - - - - - | => firrtl / transitiveUpdate 0s - | => firrtl / transitiveUpdate 0s - - - - - - - | => Global / previousCache 0s - - - - - - - | => Global / previousCache 0s - - - - - - - | => Global / previousCache 0s - - - - - - - | => Global / previousCache 0s - - - - - - - | => Global / previousCache 0s - - - - - - | => firrtl / Compile / externalHooks 0s - | => firrtl / Compile / externalHooks 0s - - - - - - | => firrtl / Compile / externalHooks 0s - | => firrtl / Compile / externalHooks 0s -[info] Updating  - - - - - - | => firrtl / Compile / externalHooks 0s - | => firrtl / Compile / externalHooks 0s -https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) - - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.1? - 100.0% [##########] 2.1 KiB (140.4 KiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 100.0% [##########] 5.2 KiB (345.6 KiB / s) -https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? - 100.0% [##########] 2.2 KiB (30.0 KiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? - 100.0% [##########] 3.5 KiB (46.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? - 100.0% [##########] 16.0 KiB (216.7 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 1.8 KiB (24.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 1.8 KiB (110.7 KiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 100.0% [##########] 3.7 KiB (50.6 KiB / s) -https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? - 100.0% [##########] 2.2 KiB (140.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-pare? - 100.0% [##########] 7.3 KiB (807.8 KiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-master/4.7.1/ant? - 100.0% [##########] 4.3 KiB (474.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 1.6 KiB (16.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 57.1% [##### ] 40.2 KiB (3.9 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-bom/? - 100.0% [##########] 3.5 KiB (267.1 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 70.3 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 27.7 KiB (2.5 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 100.0% [##########] 1.6 KiB (141.2 KiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 100.0% [##########] 2.2 KiB (198.8 KiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? - 100.0% [##########] 1.6 KiB (146.8 KiB / s) -https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? - 100.0% [##########] 1.7 KiB (145.5 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? - 100.0% [##########] 1.7 KiB (56.3 KiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? - 100.0% [##########] 1.6 KiB (52.1 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? - 0.0% [ ] 0 B (0 B / s) - - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? - 100.0% [##########] 2.1 KiB (23.7 KiB / s) -https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? - 100.0% [##########] 5.2 KiB (396.2 KiB / s) -https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? - 100.0% [##########] 35.7 KiB (2.7 MiB / s) -https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? - 100.0% [##########] 8.3 KiB (636.8 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? - 100.0% [##########] 1.6 KiB (123.3 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 1.6 KiB (124.0 KiB / s) -https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? - 100.0% [##########] 11.3 KiB (662.9 KiB / s) -https://repo1.maven.org/maven2/org/joda/joda-parent/1.4.0/joda-p? - 100.0% [##########] 31.8 KiB (1.8 MiB / s) -[info] Resolved dependencies - - - - - - | => firrtl / update 0s - - - - - - | => firrtl / update 0s -[info] Updating  - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? - 100.0% [##########] 6.0 KiB (336.1 KiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 100.0% [##########] 4.8 KiB (440.9 KiB / s) -https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? - 100.0% [##########] 5.1 KiB (459.7 KiB / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.pom - 100.0% [##########] 13.4 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? - 100.0% [##########] 9.0 KiB (819.6 KiB / s) -[info] Resolved dependencies - - - - - - | => firrtl / update 0s -[info] Updating  - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 100.0% [##########] 2.7 KiB (161.2 KiB / s) -[info] Resolved dependencies - - - - - - | => firrtl / update 0s - - - - - - | => firrtl / update 0s -[info] Updating  - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 2.6 KiB (145.9 KiB / s) -[info] Resolved dependencies - - - - - - | => firrtl / update 0s -[info] Fetching artifacts of  - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? - 85.7% [######## ] 121.8 KiB (7.4 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 7.9% [ ] 125.9 KiB (7.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 1.2% [ ] 123.2 KiB (7.5 MiB / s) -https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/nscala-time/nscala-tim? - 100.0% [##########] 197.1 KiB (10.7 MiB / s) -https://repo1.maven.org/maven2/org/abego/treelayout/org.abego.tr? - 100.0% [##########] 26.1 KiB (747.0 KiB / s) -https://repo1.maven.org/maven2/org/joda/joda-convert/2.2.0/joda-? - 100.0% [##########] 142.2 KiB (4.0 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 47.2% [#### ] 753.9 KiB (21.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 8.6% [ ] 449.3 KiB (24.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 6.3% [ ] 660.3 KiB (18.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.7/? - 100.0% [##########] 81.7 KiB (3.5 MiB / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 89.4% [######## ] 1.4 MiB (25.4 MiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? - 29.2% [## ] 96.0 KiB (7.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 25.7% [## ] 1.3 MiB (34.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 11.5% [# ] 1.2 MiB (21.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java? - 100.0% [##########] 1.6 MiB (20.8 MiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.1/an? - 100.0% [##########] 328.9 KiB (10.0 MiB / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.jar - 61.6% [###### ] 144.0 KiB (11.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 46.4% [#### ] 2.4 MiB (41.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 17.8% [# ] 1.8 MiB (24.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/ST4/4.0.8/ST4-4.0.8.jar - 100.0% [##########] 233.9 KiB (7.1 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 91.1 KiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest-compatibl? - 100.0% [##########] 1.4 KiB (49.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 69.9% [###### ] 3.6 MiB (45.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 24.5% [## ] 2.5 MiB (26.4 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 1.7% [ ] 192.0 KiB (10.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/glassfish/javax.json/1.0.4/ja? - 100.0% [##########] 83.2 KiB (3.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 92.2% [######### ] 4.7 MiB (48.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 30.8% [### ] 3.1 MiB (27.3 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 5.1% [ ] 576.0 KiB (15.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 96.1% [######### ] 4.9 MiB (36.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 32.3% [### ] 3.3 MiB (21.6 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 5.8% [ ] 656.0 KiB (8.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.1 MiB (37.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 34.6% [### ] 3.5 MiB (22.8 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 7.0% [ ] 800.0 KiB (10.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? - 0.0% [ ] 0 B -https://repo1.maven.org/maven2/joda-time/joda-time/2.10.1/joda-t? - 100.0% [##########] 625.7 KiB (30.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 42.7% [#### ] 4.4 MiB (24.9 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 10.8% [# ] 1.2 MiB (12.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 5.4% [ ] 193.9 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/thoughtworks/paranamer/parana? - 100.0% [##########] 33.8 KiB (1.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 53.2% [##### ] 5.4 MiB (27.9 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 27.7% [## ] 313.3 KiB (23.5 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 16.4% [# ] 1.8 MiB (15.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 10.9% [# ] 392.0 KiB (2.0 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 100.0% [##########] 1.1 MiB (33.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 61.5% [###### ] 6.3 MiB (29.2 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 20.6% [## ] 2.3 MiB (16.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 14.9% [# ] 536.0 KiB (2.5 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-text/1? - 100.0% [##########] 202.2 KiB (8.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 72.3% [####### ] 7.4 MiB (31.5 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 26.7% [## ] 3.0 MiB (18.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 20.0% [# ] 718.2 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/net/jcazevedo/moultingyaml_2.12/0? - 100.0% [##########] 308.6 KiB (10.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 82.6% [######## ] 8.4 MiB (33.1 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 37.6% [### ] 128.0 KiB (9.6 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 32.2% [### ] 3.6 MiB (20.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 25.3% [## ] 910.2 KiB (3.5 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 340.8 KiB (10.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 93.4% [######### ] 9.6 MiB (34.7 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 38.1% [### ] 4.2 MiB (21.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 31.1% [### ] 1.1 MiB (4.0 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.7? - 100.0% [##########] 478.1 KiB (13.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 10.2 MiB (34.7 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 44.9% [#### ] 5.0 MiB (23.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 37.9% [### ] 1.3 MiB (4.6 MiB / s) -https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? - 16.6% [# ] 224.0 KiB (18.2 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? - 94.7% [######### ] 1.3 MiB (39.1 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 53.2% [##### ] 5.9 MiB (25.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 45.2% [#### ] 1.6 MiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.1/antlr4-4.7? - 100.0% [##########] 1.3 MiB (25.4 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 68.5% [###### ] 7.6 MiB (29.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 58.9% [##### ] 2.1 MiB (6.3 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 84.5% [######## ] 9.4 MiB (34.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 72.3% [####### ] 2.5 MiB (7.2 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 0s -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 100.0% [##########] 11.1 MiB (37.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 87.4% [######## ] 3.1 MiB (8.3 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.1? - 100.0% [##########] 77.0 KiB (4.0 MiB / s) -https://repo1.maven.org/maven2/com/ibm/icu/icu4j/58.2/icu4j-58.2? - 100.0% [##########] 11.1 MiB (35.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 3.5 MiB (9.0 MiB / s) -https://repo1.maven.org/maven2/org/scalatestplus/scalacheck-1-14? - 100.0% [##########] 97.9 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 68.3% [###### ] 336.0 KiB (27.3 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 492.1 KiB (15.5 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 14.9% [# ] 229.6 KiB (1.5 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 100.0% [##########] 1.5 MiB (9.1 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 0s - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 8.7% [ ] 578.8 KiB (748.7 KiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 32.2% [### ] 2.1 MiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 63.6% [###### ] 4.1 MiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 97.8% [######### ] 6.4 MiB (7.7 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 100.0% [##########] 6.5 MiB (7.6 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 1s -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 4.2% [ ] 528.2 KiB (391.0 KiB / s) - - - - - - | => firrtl / update 1s -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 13.3% [# ] 1.6 MiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 26.3% [## ] 3.2 MiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 44.0% [#### ] 5.4 MiB (3.8 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 62.3% [###### ] 7.6 MiB (5.3 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 80.8% [######## ] 9.8 MiB (6.8 MiB / s) - - - - - - | => firrtl / update 1s -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 99.2% [######### ] 12.1 MiB (8.2 MiB / s) -https://repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2? - 100.0% [##########] 12.2 MiB (8.2 MiB / s) -[info] Fetched artifacts of  - - - - - - | => firrtl / update 1s - - - - - - | => firrtl / update 2s -[info] Compiling 1 protobuf files to /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main - - - - - - | => firrtl / update 2s -[info] Compiling schema /home/riscvuser/chipyard/tools/firrtl/src/main/proto/firrtl.proto - - - - - - | => firrtl / update 2s -protoc-jar: protoc version: 3.5.1, detected platform: linux-x86_64 (linux/amd64) -protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) -protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/maven-metadata.xml -protoc-jar: saved: /tmp/protocjar.webcache/com/google/protobuf/protoc/maven-metadata.xml -protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) -protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/github/os72/protoc/maven-metadata.xml -protoc-jar: saved: /tmp/protocjar.webcache/com/github/os72/protoc/maven-metadata.xml -protoc-jar: java.io.IOException: java.io.FileNotFoundException: /home/riscvuser/.m2/settings.xml (No such file or directory) -protoc-jar: cached: /tmp/protocjar.webcache/com/google/protobuf/protoc/maven-metadata.xml - - - - - - | => firrtl / Protobuf / protobufGenerate 0s - | => firrtl / Antlr4 / antlr4Generate 0s -protoc-jar: downloading: https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/3.5.1/protoc-3.5.1-linux-x86_64.exe - - - - - - | => firrtl / Protobuf / protobufGenerate 0s - | => firrtl / Antlr4 / antlr4Generate 0s -protoc-jar: saved: /tmp/protocjar.webcache/com/google/protobuf/protoc/3.5.1/protoc-3.5.1-linux-x86_64.exe -protoc-jar: executing: [/tmp/protocjar14928688499957470691/bin/protoc.exe, -I/home/riscvuser/chipyard/tools/firrtl/src/main/proto, -I/home/riscvuser/chipyard/tools/firrtl/target/protobuf_external, --java_out=/home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main, /home/riscvuser/chipyard/tools/firrtl/src/main/proto/firrtl.proto] - - - - - - | => firrtl / Protobuf / protobufGenerate 0s - | => firrtl / Antlr4 / antlr4Generate 0s -[info] Compiling protobuf - - - - - - | => firrtl / Protobuf / protobufGenerate 0s - | => firrtl / Antlr4 / antlr4Generate 0s -[info] Protoc target directory: /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main - - - - - - | => firrtl / Protobuf / protobufGenerate 0s - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - - | => firrtl / Antlr4 / antlr4Generate 0s - - - - - - | => firrtl / Compile / managedSourcePaths / outputFileStamps 0s -[info] Compiling 191 Scala sources and 5 Java sources to /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/classes ... - - - - - - | => firrtl / Compile / managedSourcePaths / outputFileStamps 0s - - - - - - - | => firrtl / Compile / compileIncremental 0s -https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.? - 0.0% [ ] 0 B (0 B / s) -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.11. Compiling... - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 0s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 1s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 2s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 3s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 4s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 5s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 6s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 7s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 8s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s -[info]  Compilation completed in 9.291s. - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 9s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 10s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 11s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 12s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 13s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 14s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 15s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 16s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 17s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 18s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 19s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 20s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 21s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 22s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 23s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 24s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 25s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 26s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 27s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 28s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 29s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 30s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Visitor.scala:155:27: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following input: (_, _) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  val lower = (ctx.lowerBound.getText, ctx.boundValue(0).getText) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Visitor.scala:160:27: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following input: (_, _) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  val upper = (ctx.upperBound.getText, ctx.boundValue(1).getText) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Annotation.scala:64:57: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following inputs: CircuitName(_), CompleteTarget(), ComponentName(_, _), GenericTarget(_, _, _), ModuleName(_, _) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ret.map(_.map(newT => Target.convertTarget2Named(newT: @unchecked) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:231:11: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following input: (None, None) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  (getRef, getInstanceOf) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:457:41: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following inputs: ("", Clock), ("", Init), ("", Instance(_)), ("", OfModule(_)), ("", Reset), (_, Clock), (_, Init), (_, Instance(_)), (_, OfModule(_)), (_, Ref(_)), (_, Reset) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  val name = tokens.foldLeft(""){ - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/Target.scala:594:29: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following inputs: Clock, Init, Instance(_), OfModule(_), Reset - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  val headType = tokens.head match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/ir/IR.scala:724:33: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following inputs: (??, None), (Closed(_), None), (Open(_), None), (_, None), (_, Some(_)) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  def max: Option[BigDecimal] = (upper, precision) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/CInferMDir.scala:21:42: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn] It would fail on the following inputs: (MInfer, _), (MPortDir(), _), (MRead, _), (MReadWrite, _), (MWrite, _), (_, MInfer), (_, MPortDir()), (_, MRead), (_, MReadWrite), (_, MWrite), (_, _) - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  case Some(p) => mports(e.name) = (p, dir) match { - - - - - - | => firrtl / Compile / compileIncremental 31s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 31s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/InferWidths.scala:80:104: Exhaustivity analysis reached max recursion depth, not all missing cases are reported. - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] (Please try with scalac -Ypatmat-exhaust-depth 40 or -Ypatmat-exhaust-depth off.) - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  private def addTypeConstraints(r1: ReferenceTarget, r2: ReferenceTarget)(t1: Type, t2: Type): Unit = (t1,t2) match { - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:137:63: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] It would fail on the following input: UNRECOGNIZED - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  def convert(ruw: ReadUnderWrite): ir.ReadUnderWrite.Value = ruw match { - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:159:76: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn] It would fail on the following inputs: MEMORY_PORT_DIRECTION_UNKNOWN, UNRECOGNIZED - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  def convert(mportdir: Firrtl.Statement.MemoryPort.Direction): MPortDir = mportdir match { - - - - - - | => firrtl / Compile / compileIncremental 32s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 32s - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/proto/FromProto.scala:275:5: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] It would fail on the following inputs: PORT_DIRECTION_UNKNOWN, UNRECOGNIZED - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  dir match { - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/transforms/RemoveKeywordCollisions.scala:47:59: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] It would fail on the following inputs: Some(CompleteTarget()), Some(GenericTarget(_, _, _)) - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  def wrap(name: String, scope: Option[Named]): Named = scope match { - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/transforms/SimplifyMems.scala:43:67: match may not be exhaustive. - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn] It would fail on the following inputs: Field(_, (x: firrtl.ir.Orientation forSome x not in Flip), (x: firrtl.ir.Type forSome x not in firrtl.ir.BundleType)), Field(_, (x: firrtl.ir.Orientation forSome x not in Flip), BundleType(_)), Field(_, Flip, (x: firrtl.ir.Type forSome x not in firrtl.ir.BundleType)) - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  val adapterConnects = memType(simpleMemDecl).fields.flatMap { - - - - - - | => firrtl / Compile / compileIncremental 33s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 33s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 34s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 35s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:37:11: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  form: CircuitForm, - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:89:37: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  def apply(circuit: Circuit, form: CircuitForm): CircuitState = apply(circuit, form, Seq()) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:90:37: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  def apply(circuit: Circuit, form: CircuitForm, annotations: AnnotationSeq): CircuitState = - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:93:31: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  new CircuitState(circuit, UnknownForm, annotations, None) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:226:60: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  override def prerequisites: Seq[Dependency[Transform]] = inputForm match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:227:10: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case C => Nil - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:228:10: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case H => Forms.Deduped - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:229:10: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case M => Forms.MidForm - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:230:10: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case L => Forms.LowForm - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:231:10: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case U => Nil - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:234:68: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  override def optionalPrerequisites: Seq[Dependency[Transform]] = inputForm match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:235:10: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case L => Forms.LowFormOptimized - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:245:20: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  val emitters = inputForm match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:246:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case C => Dependency[ChirrtlEmitter] :: Dependency[HighFirrtlEmitter] :: Dependency[MiddleFirrtlEmitter] :: lowEmitters - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:247:12: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case H => Dependency[HighFirrtlEmitter] :: Dependency[MiddleFirrtlEmitter] :: lowEmitters - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:248:12: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case M => Dependency[MiddleFirrtlEmitter] :: lowEmitters - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:249:12: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case L => lowEmitters - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:250:12: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case U => Nil - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:255:5: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  inputForm match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:256:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case C => (fullCompilerSet ++ emitters - selfDep).toSeq - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:257:12: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case H => (fullCompilerSet -- Forms.Deduped ++ emitters - selfDep).toSeq - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:258:12: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case M => (fullCompilerSet -- Forms.MidForm ++ emitters - selfDep).toSeq - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:259:12: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case L => (fullCompilerSet -- Forms.LowFormOptimized ++ emitters - selfDep).toSeq - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:260:12: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case U => Nil - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:268:6: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  (inputForm, outputForm) match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:268:17: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  (inputForm, outputForm) match { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:269:13: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (U, _) | (_, U) => true // invalidate everything - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:269:25: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (U, _) | (_, U) => true // invalidate everything - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:271:16: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (_, C) => true // invalidate everything - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:272:16: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (_, H) => highOutputInvalidates(Dependency.fromTransform(a)) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:273:16: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (_, M) => midOutputInvalidates(Dependency.fromTransform(a)) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:274:16: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  case (_, L) => false // invalidate nothing - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Compiler.scala:378:31: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  CircuitState(ret.circuit, outputForm, ret.annotations, ret.renames) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:112:43: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] sealed abstract class FirrtlEmitter(form: CircuitForm) extends Transform with Emitter { - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:162:44: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] class ChirrtlEmitter extends FirrtlEmitter(ChirrtlForm) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:163:47: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] class HighFirrtlEmitter extends FirrtlEmitter(HighForm) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:164:49: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] class MiddleFirrtlEmitter extends FirrtlEmitter(MidForm) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:165:46: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] class LowFirrtlEmitter extends FirrtlEmitter(LowForm) - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:181:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  def inputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/Emitter.scala:182:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  def outputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 36s - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/annotations/JsonProtocol.scala:47:62: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  Class.forName(s).asInstanceOf[Class[_ <: Transform]].newInstance() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/graph/DiGraph.scala:223:29: class Stack in package mutable is deprecated (since 2.12.0): Stack is an inelegant and potentially poorly-performing wrapper around List. Use a List assigned to a var instead. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val stack = new mutable.Stack[T] - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/graph/DiGraph.scala:239:33: class Stack in package mutable is deprecated (since 2.12.0): Stack is an inelegant and potentially poorly-performing wrapper around List. Use a List assigned to a var instead. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val callStack = new mutable.Stack[StrongConnectFrame[T]] - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/options/Phase.scala:58:63: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  private def safeConstruct[A](a: Class[_ <: A]): A = try { a.newInstance } catch { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/options/Phase.scala:172:52: method dependents in trait DependencyAPI is deprecated (since FIRRTL 1.3): Due to confusion, 'dependents' is being renamed to 'optionalPrerequisiteOf'. Override the latter instead. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  def optionalPrerequisiteOf: Seq[Dependency[A]] = dependents - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/Inline.scala:310:31: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  CircuitState(flatCircuit, LowForm, annos, Some(renames)) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/LowerTypes.scala:292:26: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  CircuitState(result, outputForm, state.annotations, Some(renames)) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/ZeroWidth.scala:194:26: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  CircuitState(result, outputForm, state.annotations, Some(renames)) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockList.scala:21:23: method getChildrenMap in object WiringUtils is deprecated (since 1.1.1): Use DiGraph/InstanceGraph - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val childrenMap = getChildrenMap(c) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockList.scala:23:20: method getLineage in object WiringUtils is deprecated (since 1.1.1): Use DiGraph/InstanceGraph - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val lineages = getLineage(childrenMap, top) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockListUtils.scala:15:61: class Lineage in package wiring is deprecated (since 1.1.1): Use DiGraph/InstanceGraph - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  def getSourceList(moduleMap: Map[String, DefModule])(lin: Lineage): Seq[String] = { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/clocklist/ClockListUtils.scala:33:90: class Lineage in package wiring is deprecated (since 1.1.1): Use DiGraph/InstanceGraph - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  def getOrigins(connects: Connects, me: String, moduleMap: Map[String, DefModule])(lin: Lineage): Map[String, String] = { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemMacros.scala:263:68: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case _ => throwInternalError(s"execute: getMyAnnotations - ${getMyAnnotations(state)}") - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemTransform.scala:103:43: class SimpleTransform in package memlib is deprecated (since FIRRTL 1.3): Migrate to a transform that does not take arguments. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] class SimpleMidTransform(p: Pass) extends SimpleTransform(p, MidForm) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/passes/memlib/ReplaceMemTransform.scala:103:62: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] class SimpleMidTransform(p: Pass) extends SimpleTransform(p, MidForm) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:143:41: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] case class CompilerAnnotation(compiler: Compiler = new VerilogCompiler()) extends NoTargetAnnotation with FirrtlOption - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:143:56: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] case class CompilerAnnotation(compiler: Compiler = new VerilogCompiler()) extends NoTargetAnnotation with FirrtlOption - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:149:31: class NoneCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} or stage.transforms.Compiler(Seq(Dependency[ChirrtlEmitter])) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "none" => new NoneCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:150:31: class HighFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Seq(Dependency[HighFirrtlEmitter])) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "high" => new HighFirrtlCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:151:31: class LowFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[LowFirrtlEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "low" => new LowFirrtlCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:152:31: class MiddleFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[MiddleFirrtlEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "middle" => new MiddleFirrtlCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:153:31: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "verilog" => new VerilogCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:154:31: class MinimumVerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[MinimumVerilogEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "mverilog" => new MinimumVerilogCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:155:31: class SystemVerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[SystemVerilogEmitter]) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case "sverilog" => new SystemVerilogCompiler() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlAnnotations.scala:185:78: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val tx = Class.forName(txName).asInstanceOf[Class[_ <: Transform]].newInstance() - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlOptions.scala:16:29: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val compiler: Compiler = CompilerAnnotation().compiler, - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/FirrtlOptions.scala:22:27: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  compiler: Compiler = compiler, - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:39:70: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  private [firrtl] implicit object FirrtlExecutionResultView extends OptionsView[FirrtlExecutionResult] { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:43:39: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  def view(options: AnnotationSeq): FirrtlExecutionResult = { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:50:22: class FirrtlExecutionFailure in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case None => FirrtlExecutionFailure("No circuit found in AnnotationSeq!") - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:51:25: object FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  case Some(a) => FirrtlExecutionSuccess( - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/package.scala:56:35: method outputForm in trait DependencyAPIMigration is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  form = fopts.compiler.outputForm, - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/AddImplicitEmitter.scala:20:38: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  val compiler = annos.collectFirst{ case CompilerAnnotation(a) => a } - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:17:13: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  compiler: Option[FirrtlCompiler] ) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:13:28: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] private [stage] case class CompilerRun( - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:23:13: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  compiler: Option[FirrtlCompiler] = None) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:20:28: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] private [stage] case class Defaults( - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:63:43: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  CompilerRun(CircuitState(circuit, ChirrtlForm, d.annotations, None), None, d.transforms, d.compiler) +=: c - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/phases/Compiler.scala:116:39: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  private def compilerToTransforms(a: FirrtlCompiler): Seq[TransformDependency] = a match { - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/CatchCustomTransformExceptions.scala:21:15: method getPackage in class Package is deprecated: see corresponding Javadoc for more information. - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  Package.getPackage(pack.getName.split('.').head) - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/CatchCustomTransformExceptions.scala:24:34: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  getTopPackage(p) != firrtl.Driver.getClass.getPackage - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/WrappedTransform.scala:26:39: method inputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  override def inputForm = underlying.inputForm - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/firrtl/stage/transforms/WrappedTransform.scala:27:40: method outputForm in trait Transform is deprecated (since FIRRTL 1.3): Use Dependency API methods for equivalent functionality. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  override def outputForm = underlying.outputForm - - - - - - | => firrtl / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 37s - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/logger/LoggerOptions.scala:33:47: method logToFile in class LoggerOptions is deprecated (since 1.2): logToFile was removed, use logFileName.nonEmpty - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  def getLogFileName(): Option[String] = if (!logToFile) None else logFileName.orElse(Some("a.log")) - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala:72:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  def inputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala:74:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  def outputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala:98:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  def inputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/tools/firrtl/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala:99:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  def outputForm = LowForm - - - - - - | => firrtl / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 38s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 39s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 40s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 41s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 42s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 43s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 44s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 45s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 46s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 47s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 48s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 49s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s -[warn] 102 warnings found - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s -[warn] bootstrap class path not set in conjunction with -source 8 - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 50s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 51s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 52s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 53s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 54s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 55s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 56s -[info] /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java: /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java uses or overrides a deprecated API. - - - - - - | => firrtl / Compile / compileIncremental 56s -[info] /home/riscvuser/chipyard/tools/firrtl/target/scala-2.12/src_managed/main/firrtl/FirrtlProtos.java: Recompile with -Xlint:deprecation for details. - - - - - - | => firrtl / Compile / compileIncremental 56s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 57s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compileIncremental 58s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / Compile / compile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => firrtl / Compile / compile 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 0s - - - - - - | => firrtl / assembly / assembledMappings 1s - - - - - - | => firrtl / assembly / assembledMappings 1s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 0s -[info] Strategy 'discard' was applied to 17 files (Run the task at debug level to see details) - - - - - - | => firrtl / assembly 0s -[info] Strategy 'rename' was applied to 4 files (Run the task at debug level to see details) - - - - - - | => firrtl / assembly 0s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 1s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 2s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - | => firrtl / assembly 3s - - - - - - -[success] Total time: 67 s (01:07), completed Dec 23, 2020, 3:40:35 AM -make[1]: Leaving directory '/home/riscvuser/chipyard/tools/firrtl' -mkdir -p /home/riscvuser/chipyard/lib -cp -p /home/riscvuser/chipyard/tools/firrtl/utils/bin/firrtl.jar /home/riscvuser/chipyard/lib/firrtl.jar -touch /home/riscvuser/chipyard/lib/firrtl.jar -cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project utilities" "runMain utilities.GenerateSimFiles -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -sim verilator" -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -Getting org.scala-sbt sbt 1.3.2 (this may take some time)... -downloading https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#sbt;1.3.2!sbt.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/main_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#main_2.12;1.3.2!main_2.12.jar (107ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.12-1.3.1.jar ... - [SUCCESSFUL ] org.scala-sbt#io_2.12;1.3.1!io_2.12.jar (118ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/logic_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#logic_2.12;1.3.2!logic_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/actions_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#actions_2.12;1.3.2!actions_2.12.jar (24ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.2/main-settings_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#main-settings_2.12;1.3.2!main-settings_2.12.jar (38ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#run_2.12;1.3.2!run_2.12.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/command_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#command_2.12;1.3.2!command_2.12.jar (29ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.2/collections_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#collections_2.12;1.3.2!collections_2.12.jar (29ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.2/scripted-sbt-redux_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#scripted-sbt-redux_2.12;1.3.2!scripted-sbt-redux_2.12.jar (20ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.2/scripted-plugin_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#scripted-plugin_2.12;1.3.2!scripted-plugin_2.12.jar (100ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.2/zinc-lm-integration_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-lm-integration_2.12;1.3.2!zinc-lm-integration_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC3-4/lm-coursier-shaded_2.12-2.0.0-RC3-4.jar ... - [SUCCESSFUL ] io.get-coursier#lm-coursier-shaded_2.12;2.0.0-RC3-4!lm-coursier-shaded_2.12.jar (141ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.0/util-logging_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-logging_2.12;1.3.0!util-logging_2.12.jar (22ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.0/librarymanagement-core_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#librarymanagement-core_2.12;1.3.0!librarymanagement-core_2.12.jar (29ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.0/librarymanagement-ivy_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#librarymanagement-ivy_2.12;1.3.0!librarymanagement-ivy_2.12.jar (28ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.0/compiler-interface-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#compiler-interface;1.3.0!compiler-interface.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.0/zinc-compile_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-compile_2.12;1.3.0!zinc-compile_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.0/util-relation_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-relation_2.12;1.3.0!util-relation_2.12.jar (15ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.0/util-position_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-position_2.12;1.3.0!util-position_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.2/completion_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#completion_2.12;1.3.2!completion_2.12.jar (36ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.2/task-system_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#task-system_2.12;1.3.2!task-system_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/tasks_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#tasks_2.12;1.3.2!tasks_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/testing_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#testing_2.12;1.3.2!testing_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.0/util-tracking_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-tracking_2.12;1.3.0!util-tracking_2.12.jar (70ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.0/zinc-classpath_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-classpath_2.12;1.3.0!zinc-classpath_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.0/zinc-apiinfo_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-apiinfo_2.12;1.3.0!zinc-apiinfo_2.12.jar (48ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zinc_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc_2.12;1.3.0!zinc_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.0/util-control_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-control_2.12;1.3.0!util-control_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-interface;1.3.0!util-interface.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.0/util-cache_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-cache_2.12;1.3.0!util-cache_2.12.jar (18ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/test-agent-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#test-agent;1.3.2!test-agent.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.0/compiler-bridge_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#compiler-bridge_2.12;1.3.0!compiler-bridge_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.0/zinc-classfile_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-classfile_2.12;1.3.0!zinc-classfile_2.12.jar (17ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.0/zinc-core_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-core_2.12;1.3.0!zinc-core_2.12.jar (23ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.0/zinc-persist_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-persist_2.12;1.3.0!zinc-persist_2.12.jar (39ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.0/zinc-compile-core_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#zinc-compile-core_2.12;1.3.0!zinc-compile-core_2.12.jar (16ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/sbinary_2.12-0.4.4.jar ... - [SUCCESSFUL ] org.scala-sbt#sbinary_2.12;0.4.4!sbinary_2.12.jar (21ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.2/core-macros_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#core-macros_2.12;1.3.2!core-macros_2.12.jar (19ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2/protocol_2.12-1.3.2.jar ... - [SUCCESSFUL ] org.scala-sbt#protocol_2.12;1.3.2!protocol_2.12.jar (23ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.0/util-scripted_2.12-1.3.0.jar ... - [SUCCESSFUL ] org.scala-sbt#util-scripted_2.12;1.3.0!util-scripted_2.12.jar (65ms) -downloading https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832/ivy-2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832.jar ... - [SUCCESSFUL ] org.scala-sbt.ivy#ivy;2.3.0-sbt-cb9cc189e9f3af519f9f102e6c5d446488ff6832!ivy.jar (33ms) -:: retrieving :: org.scala-sbt#boot-app - confs: [default] - 81 artifacts copied, 0 already retrieved (37984kB/94ms) -[info] Loading settings for project chipyard-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/project - - - - - - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s -[info] Updating  - - - - - - | => chipyard-build / update 0s -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-site_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt-mima-plugin_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/gseitz/sbt-protobuf_2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 0s -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 100.0% [##########] 3.1 KiB (23.0 KiB / s) -https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? - 100.0% [##########] 2.6 KiB (45.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 100.0% [##########] 4.5 KiB (34.0 KiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 100.0% [##########] 2.9 KiB (21.9 KiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-ghpages_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 100.0% [##########] 2.9 KiB (100.3 KiB / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 100.0% [##########] 1.9 KiB (64.1 KiB / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-assembly_2.12_1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-unidoc_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/eed3si9n/sbt-buildinfo_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/simplytyped/sbt-antlr4_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 1s - - - - - - | => chipyard-build / update 1s - - - - - - | => chipyard-build / update 1s - - - - - - | => chipyard-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 1s - - - - - - | => chipyard-build / update 1s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 1s - - - - - - | => chipyard-build / update 2s - - - - - - | => chipyard-build / update 2s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s - - - - - - | => chipyard-build / update 2s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt-mima-pl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-buildin? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 2s - - - - - - | => chipyard-build / update 3s - - - - - - | => chipyard-build / update 3s - - - - - - | => chipyard-build / update 3s -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-assembl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/eed3si9n/sbt-unidoc_? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s - - - - - - | => chipyard-build / update 3s -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 2.6 KiB (5.8 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 2.8 KiB (6.9 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 2.8 KiB (6.6 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 1.5 KiB (6.1 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 1.5 KiB (14.1 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 1.7 KiB (5.3 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.7 KiB (13.9 KiB / s) -https://download.eclipse.org/jgit/maven/com/github/gseitz/sbt-pr? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 3s -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 4s -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 1.4 KiB (11.7 KiB / s) -https://download.eclipse.org/jgit/maven/com/simplytyped/sbt-antl? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 4s - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 5s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 1.9 KiB (16.8 KiB / s) - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s -https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? - 100.0% [##########] 1.4 KiB (49.6 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-? - 100.0% [##########] 1.8 KiB (46.7 KiB / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? - 100.0% [##########] 2.1 KiB (96.5 KiB / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? - 100.0% [##########] 22.0 KiB (549.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? - 100.0% [##########] 3.8 KiB (291.2 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 100.0% [##########] 2.9 KiB (49.0 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? - 100.0% [##########] 2.1 KiB (36.1 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? - 100.0% [##########] 2.2 KiB (138.7 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? - 100.0% [##########] 1.9 KiB (64.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 100.0% [##########] 11.2 KiB (587.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? - 100.0% [##########] 3.8 KiB (111.3 KiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? - 100.0% [##########] 5.5 KiB (323.1 KiB / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 100.0% [##########] 2.7 KiB (99.9 KiB / s) -https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.pom - 100.0% [##########] 1.9 KiB (116.2 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? - 100.0% [##########] 2.1 KiB (84.5 KiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 9.3 KiB (356.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 100.0% [##########] 7.8 KiB (279.6 KiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 100.0% [##########] 2.2 KiB (78.0 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 100.0% [##########] 2.3 KiB (19.7 KiB / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 5s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-git? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 6s - - - - - - | => chipyard-build / update 7s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-git? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/dwijnand/sbt-compat_? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 7s - - - - - - | => chipyard-build / update 7s - - - - - - | => chipyard-build / update 7s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 7s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 100.0% [##########] 2.0 KiB (16.9 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 100.0% [##########] 1.8 KiB (15.5 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.7 KiB (14.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 54.6 KiB (4.9 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 5.0% [ ] 1.3 KiB (121.7 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 7s -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 54.6 KiB (1.8 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 26.8 KiB (892.3 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4? - 100.0% [##########] 11.5 KiB (384.2 KiB / s) -https://repo1.maven.org/maven2/org/apache/apache/13/apache-13.pom - 100.0% [##########] 13.6 KiB (852.9 KiB / s) - - - - - - | => chipyard-build / update 7s -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.53/jsch-0.1.5? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.53/jsch-0.1.5? - 100.0% [##########] 3.2 KiB (150.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 100.0% [##########] 4.7 KiB (222.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 100.0% [##########] 5.9 KiB (488.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 100.0% [##########] 3.1 KiB (142.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 100.0% [##########] 4.9 KiB (222.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 100.0% [##########] 3.0 KiB (250.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 20.9% [## ] 1.3 KiB (111.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? - 20.5% [## ] 1.3 KiB (121.7 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 100.0% [##########] 2.2 KiB (110.3 KiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? - 100.0% [##########] 1.8 KiB (90.8 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 100.0% [##########] 8.1 KiB (197.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? - 100.0% [##########] 6.5 KiB (217.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? - 100.0% [##########] 6.0 KiB (463.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 100.0% [##########] 3.0 KiB (93.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 100.0% [##########] 6.4 KiB (200.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? - 100.0% [##########] 4.8 KiB (239.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? - 100.0% [##########] 4.4 KiB (220.0 KiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? - 100.0% [##########] 4.1 KiB (345.4 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? - 100.0% [##########] 2.6 KiB (202.0 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 100.0% [##########] 2.4 KiB (219.8 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 100.0% [##########] 4.2 KiB (303.0 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 100.0% [##########] 2.4 KiB (83.4 KiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? - 100.0% [##########] 5.1 KiB (212.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 100.0% [##########] 4.3 KiB (305.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? - 100.0% [##########] 4.3 KiB (177.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? - 100.0% [##########] 3.8 KiB (250.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 100.0% [##########] 4.7 KiB (293.7 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? - 100.0% [##########] 2.0 KiB (75.7 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.pom - 100.0% [##########] 1.9 KiB (75.5 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-web_2.12_1.0? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 7s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 7s - - - - - - | => chipyard-build / update 7s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s -https://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-relea? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 8s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 8s - - - - - - | => chipyard-build / update 9s - - - - - - | => chipyard-build / update 9s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-web? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 9s - - - - - - | => chipyard-build / update 9s - - - - - - | => chipyard-build / update 9s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 9s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.9 KiB (16.8 KiB / s) - - - - - - | => chipyard-build / update 9s -https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/6.0/asm-pa? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/1.7.21/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? - 100.0% [##########] 15.6 KiB (648.8 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-artifacts/1.7.21/? - 100.0% [##########] 3.4 KiB (143.3 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/6.0/asm-pa? - 100.0% [##########] 5.4 KiB (223.5 KiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/project? - 100.0% [##########] 26.6 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-parent/1.7.21/jru? - 100.0% [##########] 23.6 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom - 100.0% [##########] 9.3 KiB (464.3 KiB / s) - - - - - - | => chipyard-build / update 9s -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 100.0% [##########] 2.0 KiB (109.9 KiB / s) -https://repo1.maven.org/maven2/commons-logging/commons-logging/1? - 100.0% [##########] 17.9 KiB (995.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? - 100.0% [##########] 3.8 KiB (212.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 100.0% [##########] 3.3 KiB (367.0 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? - 100.0% [##########] 3.5 KiB (192.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 100.0% [##########] 2.9 KiB (162.4 KiB / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? - 100.0% [##########] 3.2 KiB (85.4 KiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? - 100.0% [##########] 4.5 KiB (224.5 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? - 100.0% [##########] 2.0 KiB (203.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 100.0% [##########] 4.8 KiB (227.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 100.0% [##########] 3.5 KiB (124.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? - 100.0% [##########] 3.2 KiB (323.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? - 100.0% [##########] 4.8 KiB (252.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 100.0% [##########] 4.8 KiB (251.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 100.0% [##########] 2.9 KiB (74.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 100.0% [##########] 3.9 KiB (261.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 100.0% [##########] 4.1 KiB (314.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? - 100.0% [##########] 5.4 KiB (300.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? - 100.0% [##########] 4.3 KiB (143.0 KiB / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 100.0% [##########] 7.7 KiB (264.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 36.8% [### ] 1.3 KiB (133.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 9s -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? - 100.0% [##########] 4.3 KiB (157.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/? - 100.0% [##########] 4.7 KiB (335.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? - 100.0% [##########] 3.1 KiB (208.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 100.0% [##########] 3.6 KiB (129.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcom? - 100.0% [##########] 12.9 KiB (990.7 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 49.0 KiB (2.7 MiB / s) - - - - - - | => chipyard-build / update 9s -https://repo1.maven.org/maven2/com/typesafe/config/1.3.1/config-? - 100.0% [##########] 1.8 KiB (101.1 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.1.? - 100.0% [##########] 2.5 KiB (279.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 100.0% [##########] 3.0 KiB (167.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 100.0% [##########] 5.0 KiB (265.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 100.0% [##########] 3.9 KiB (206.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? - 100.0% [##########] 3.1 KiB (389.0 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 4.9 KiB (197.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 21.7 KiB (555.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? - 100.0% [##########] 3.1 KiB (111.2 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 100.0% [##########] 3.9 KiB (100.4 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? - 100.0% [##########] 8.0 KiB (331.5 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-parent? - 100.0% [##########] 61.6 KiB (2.5 MiB / s) - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/org/apache/apache/16/apache-16.pom - 100.0% [##########] 15.0 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/25/oss-p? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/25/oss-p? - 100.0% [##########] 18.9 KiB (611.0 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? - 100.0% [##########] 2.0 KiB (93.0 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? - 100.0% [##########] 2.0 KiB (92.7 KiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? - 100.0% [##########] 1.7 KiB (76.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? - 100.0% [##########] 2.5 KiB (114.5 KiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/5.0.3/asm-? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/org/ow2/asm/asm-parent/5.0.3/asm-? - 100.0% [##########] 5.4 KiB (206.4 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? - 100.0% [##########] 1.8 KiB (165.0 KiB / s) -[info] Resolved dependencies - - - - - - | => chipyard-build / update 10s - - - - - - | => chipyard-build / update 10s - - - - - - | => chipyard-build / update 10s -[info] Fetching artifacts of  - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.2/lo? - 100.0% [##########] 48.7 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 76.5% [####### ] 129.9 KiB (9.8 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/virtual-void/sbt-dependency-g? - 100.0% [##########] 137.1 KiB (13.4 MiB / s) -https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-pl? - 100.0% [##########] 169.7 KiB (5.3 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 7.4% [ ] 230.3 KiB (9.0 MiB / s) -https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-c? - 100.0% [##########] 1.1 MiB (52.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1? - 100.0% [##########] 16.6 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/tukaani/xz/1.5/xz-1.5.jar - 100.0% [##########] 97.2 KiB (3.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? - 72.9% [####### ] 421.6 KiB (16.5 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 17.8% [# ] 550.8 KiB (11.7 MiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/mima-core_2.12/0.6.1? - 100.0% [##########] 309.7 KiB (15.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcli? - 100.0% [##########] 578.1 KiB (12.8 MiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? - 100.0% [##########] 184.0 KiB (18.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 49.0% [#### ] 304.0 KiB (12.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 37.4% [### ] 229.6 KiB (14.9 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 34.1% [### ] 1.0 MiB (15.7 MiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/scalafix-interfaces? - 100.0% [##########] 8.1 KiB (213.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-i? - 100.0% [##########] 614.1 KiB (17.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/? - 100.0% [##########] 620.8 KiB (13.5 MiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-util? - 100.0% [##########] 184.0 KiB (5.8 MiB / s) -https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.13/snakeyaml? - 100.0% [##########] 267.0 KiB (13.0 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 56.7% [##### ] 1.7 MiB (20.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? - 45.1% [#### ] 93.7 KiB (5.4 MiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox-the? - 100.0% [##########] 92.1 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.2/run_? - 100.0% [##########] 76.4 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3? - 100.0% [##########] 208.0 KiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/? - 100.0% [##########] 25.9 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 89.7% [######## ] 2.7 MiB (25.6 MiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 65.9% [###### ] 57.6 KiB (710.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 49.7% [#### ] 48.0 KiB (4.7 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/akka/akka-actor_2.12? - 100.0% [##########] 3.0 MiB (24.2 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/6.0/asm-c? - 100.0% [##########] 75.6 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.? - 100.0% [##########] 78.1 KiB (5.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.2/ta? - 100.0% [##########] 83.6 KiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.2/te? - 100.0% [##########] 22.9 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12? - 100.0% [##########] 96.5 KiB (3.1 MiB / s) -https://repo1.maven.org/maven2/org/xerial/sbt/sbt-pack_2.12_1.0/? - 100.0% [##########] 87.3 KiB (864.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/? - 100.0% [##########] 122.2 KiB (5.4 MiB / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-knockof? - 100.0% [##########] 50.3 KiB (4.1 MiB / s) -https://repo1.maven.org/maven2/org/scoverage/sbt-scoverage_2.12_? - 100.0% [##########] 23.8 KiB (989.6 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 69.2% [###### ] 293.6 KiB (11.9 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 2.1% [ ] 198.7 KiB (12.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/? - 100.0% [##########] 424.5 KiB (9.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.1? - 100.0% [##########] 1.3 KiB (89.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12? - 100.0% [##########] 76.1 KiB (3.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 72.5% [####### ] 240.0 KiB (15.6 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 8.1% [ ] 758.7 KiB (20.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.? - 100.0% [##########] 330.9 KiB (9.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 44.7% [#### ] 13.1 KiB (121.7 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 16.3% [# ] 1.5 MiB (26.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.gith? - 100.0% [##########] 29.4 KiB (229.5 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 27.1% [## ] 2.5 MiB (33.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 15.4% [# ] 13.1 KiB (115.3 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 86.7% [######## ] 13.1 KiB (112.3 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 47.3% [#### ] 40.5 KiB (302.1 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 41.4% [#### ] 3.8 MiB (39.9 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 85.5 KiB (555.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 15.1 KiB (110.6 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 61.2% [###### ] 5.6 MiB (48.7 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 83.5% [######## ] 575.4 KiB (20.8 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 80.2% [######## ] 7.3 MiB (54.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 42.3% [#### ] 26.8 KiB (253.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 100.0% [##########] 3.6 KiB (30.9 KiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.? - 100.0% [##########] 689.0 KiB (14.0 MiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 100.0% [##########] 9.1 MiB (58.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 63.5 KiB (499.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? - 31.3% [### ] 64.0 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? - 27.0% [## ] 186.5 KiB (11.4 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 63.5 KiB (434.6 KiB / s) -https://repo1.maven.org/maven2/com/github/os72/protoc-jar/3.5.1.? - 100.0% [##########] 9.1 MiB (52.3 MiB / s) -https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.5? - 100.0% [##########] 273.9 KiB (14.1 MiB / s) -https://repo1.maven.org/maven2/org/asciidoctor/asciidoctorj/1.5.? - 100.0% [##########] 690.8 KiB (18.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.2/? - 100.0% [##########] 204.4 KiB (6.0 MiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 30.4% [### ] 96.0 KiB (6.7 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 12.8% [# ] 962.9 KiB (47.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 100.0% [##########] 487 B (3.9 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/paradox_2.1? - 100.0% [##########] 316.3 KiB (9.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/? - 100.0% [##########] 14.2 KiB (887.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.0/zin? - 100.0% [##########] 63.2 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/webjars/webjars-locator-core/? - 100.0% [##########] 29.0 KiB (1.0 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 34.9% [### ] 2.6 MiB (64.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 0.8% [ ] 192.0 KiB (11.7 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/foundweekends/pamflet-library? - 100.0% [##########] 203.0 KiB (6.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/? - 100.0% [##########] 89.7 KiB (3.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.? - 100.0% [##########] 608.6 KiB (23.8 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 49.6% [#### ] 3.6 MiB (60.7 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 2.6% [ ] 607.0 KiB (16.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/ch/epfl/scala/sbt-scalafix_2.12_1? - 100.0% [##########] 150.2 KiB (7.0 MiB / s) -https://repo1.maven.org/maven2/commons-logging/commons-logging/1? - 100.0% [##########] 60.6 KiB (4.2 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/5.0.3/as? - 100.0% [##########] 20.0 KiB (739.4 KiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 70.0% [###### ] 5.1 MiB (65.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 5.0% [ ] 1.1 MiB (20.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-core/1.1.? - 100.0% [##########] 182.2 KiB (7.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration? - 100.0% [##########] 48.4 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 90.6% [######### ] 6.7 MiB (67.3 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 7.1% [ ] 1.6 MiB (21.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_2.12/? - 100.0% [##########] 74.3 KiB (2.9 MiB / s) -https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shade? - 100.0% [##########] 7.4 MiB (61.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-c? - 100.0% [##########] 773.9 KiB (26.1 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 9.9% [ ] 2.2 MiB (23.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.jar - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm/6.0/asm-6.0.jar - 100.0% [##########] 93.0 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.2/? - 100.0% [##########] 200.4 KiB (13.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/? - 100.0% [##########] 64.2 KiB (2.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/? - 100.0% [##########] 33.5 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 69.3% [###### ] 256.0 KiB (13.2 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 15.6% [# ] 3.5 MiB (30.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-compre? - 100.0% [##########] 369.4 KiB (9.5 MiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? - 45.4% [#### ] 553.3 KiB (20.8 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 44.3% [#### ] 1.0 MiB (30.5 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 18.2% [# ] 4.1 MiB (30.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.? - 100.0% [##########] 110.8 KiB (3.9 MiB / s) -https://repo1.maven.org/maven2/org/scalatra/scalate/scalate-core? - 100.0% [##########] 1.2 MiB (25.9 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 89.6% [######## ] 2.0 MiB (38.4 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 41.3% [#### ] 67.8 KiB (510.0 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 20.3% [## ] 4.6 MiB (29.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 164.3 KiB (1.0 MiB / s) -https://repo1.maven.org/maven2/org/eclipse/jgit/org.eclipse.jgit? - 100.0% [##########] 2.3 MiB (31.1 MiB / s) -https://repo1.maven.org/maven2/org/parboiled/parboiled-java/1.1.? - 100.0% [##########] 71.6 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 100.0% [##########] 222.0 KiB (8.7 MiB / s) -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? - 86.9% [######## ] 240.0 KiB (18.0 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 26.0% [## ] 5.9 MiB (33.4 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 15.6% [# ] 101.0 KiB (390.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 10s -https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcor? - 100.0% [##########] 276.2 KiB (8.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_? - 100.0% [##########] 73.3 KiB (4.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 100.0% [##########] 272.4 KiB (11.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 88.3% [######## ] 570.3 KiB (2.0 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 32.2% [### ] 7.3 MiB (37.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.dwij? - 100.0% [##########] 645.8 KiB (2.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.4.4/? - 100.0% [##########] 144.6 KiB (7.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1? - 100.0% [##########] 272.4 KiB (6.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? - 65.0% [###### ] 281.3 KiB (22.9 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 40.0% [#### ] 9.0 MiB (42.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-util/5.0.3/asm-ut? - 100.0% [##########] 42.3 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3? - 100.0% [##########] 271.2 KiB (16.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.2? - 100.0% [##########] 432.9 KiB (13.2 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 47.7% [#### ] 10.8 MiB (45.8 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 246.6 KiB (7.8 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-? - 100.0% [##########] 279.4 KiB (12.4 MiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 55.6% [##### ] 12.5 MiB (49.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 98.3% [######### ] 118.4 KiB (978.6 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 64.1% [###### ] 14.5 MiB (52.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 7.8% [ ] 192.0 KiB (7.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 11s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 120.4 KiB (854.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3? - 100.0% [##########] 44.2 KiB (362.5 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 72.0% [####### ] 16.2 MiB (55.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 24.0% [## ] 591.4 KiB (12.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.5/slf4? - 100.0% [##########] 10.4 KiB (336.4 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 79.9% [####### ] 18.0 MiB (57.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 41.4% [#### ] 1019.7 KiB (15.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 31.1% [### ] 39.1 KiB (308.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 98.6% [######### ] 123.9 KiB (842.8 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 87.7% [######## ] 19.8 MiB (59.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 58.2% [##### ] 1.4 MiB (16.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 98.6% [######### ] 123.9 KiB (741.8 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 95.9% [######### ] 21.6 MiB (61.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 74.4% [####### ] 1.8 MiB (17.0 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 12.8 KiB (103.2 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 125.6 KiB (671.9 KiB / s) -https://repo1.maven.org/maven2/org/jruby/jruby-complete/1.7.21/j? - 100.0% [##########] 22.6 MiB (60.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/mai? - 100.0% [##########] 2.4 MiB (19.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 100.0% [##########] 149.7 KiB (16.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 11s -https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.6.5/jarja? - 100.0% [##########] 114.5 KiB (3.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1? - 100.0% [##########] 12.3 KiB (472.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1? - 100.0% [##########] 149.7 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2? - 100.0% [##########] 222.3 KiB (9.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? - 100.0% [##########] 357.2 KiB (23.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 65.9% [###### ] 357.6 KiB (20.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 1.9 KiB (14.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.2/? - 100.0% [##########] 357.2 KiB (10.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2? - 100.0% [##########] 64.9 KiB (4.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.? - 100.0% [##########] 542.7 KiB (15.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 76.5% [####### ] 499.4 KiB (4.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 72.6% [####### ] 1.3 MiB (50.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.simp? - 100.0% [##########] 652.4 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/6.0/asm-tree? - 100.0% [##########] 47.0 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1? - 100.0% [##########] 1.7 MiB (39.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 100.0% [##########] 30.0 KiB (272.7 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chipyard-build / update 11s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 60.0 KiB (618.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 60.0 KiB (512.7 KiB / s) -[info] Fetched artifacts of  - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s -[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / update 11s - - - - - - | => chipyard-build / Compile / compile / compileOptions 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project chipyardRoot from build.sbt ... -[info] Loading settings for project barstoolsMacros from build.sbt ... -[info] Loading settings for project mdf from build.sbt ... -[info] Loading settings for project gemmini from build.sbt ... -[info] Loading settings for project ariane from build.sbt ... -[info] Loading settings for project boom from build.sbt ... -[info] Loading settings for project hwacha from build.sbt ... -[info] Loading settings for project icenet from build.sbt ... -[info] Loading settings for project testchipip from build.sbt ... -[info] Loading settings for project rocketConfig from build.sbt ... -[info] Loading settings for project hardfloat from build.sbt ... -[info] Loading settings for project chisel_testers from build.sbt ... -[info] Loading settings for project treadle from build.sbt ... -[info] Loading settings for project firrtl_interpreter from build.sbt ... -[info] Loading settings for project chisel from build.sbt ... -[info] Loading settings for project sim-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project - - - - - -[info] Updating  -https://repo1.maven.org/maven2/com/typesafe/sbt/sbt-ghpages_2.12? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 0s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-ghp? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s -https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 0s -https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.7 KiB (5.2 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 1.7 KiB (4.9 KiB / s) -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s -https://download.eclipse.org/jgit/maven/com/typesafe/sbt/sbt-sit? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s - - - - - - | => sim-build / update 1s -https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 1s -https://simplytyped.github.io/repo/releases/com/typesafe/sbt/sbt? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 2s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 3.5 KiB (33.0 KiB / s) - - - - - - | => sim-build / update 2s -https://repo1.maven.org/maven2/io/github/jonas/paradox-material-? - 100.0% [##########] 3.1 KiB (172.1 KiB / s) -https://repo1.maven.org/maven2/com/lightbend/paradox/sbt-paradox? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-sbt_2.12_1.0/0? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 2s - - - - - - | => sim-build / update 2s - - - - - - | => sim-build / update 2s - - - - - - | => sim-build / update 2s -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/org/planet42/laika-sbt_2? - 0.0% [ ] 0 B (0 B / s) -https://download.eclipse.org/jgit/maven/com/lightbend/paradox/sb? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 2s - - - - - - | => sim-build / update 2s - - - - - - | => sim-build / update 2s -https://simplytyped.github.io/repo/releases/com/lightbend/parado? - 0.0% [ ] 0 B (0 B / s) -https://simplytyped.github.io/repo/releases/org/planet42/laika-s? - 0.0% [ ] 0 B (0 B / s) -https://simplytyped.github.io/repo/releases/org/planet42/laika-s? - 0.0% [ ] 0 B (0 B / s) -https://simplytyped.github.io/repo/releases/com/lightbend/parado? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 2s -https://simplytyped.github.io/repo/releases/org/planet42/laika-s? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 100.0% [##########] 1.8 KiB (16.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 2.5 KiB (10.3 KiB / s) - - - - - - | => sim-build / update 3s -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 100.0% [##########] 2.3 KiB (141.0 KiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? - 100.0% [##########] 2.0 KiB (127.6 KiB / s) - - - - - - | => sim-build / update 3s - - - - - - | => sim-build / update 3s -[info] Resolved dependencies - - - - - - | => sim-build / update 3s - - - - - - | => sim-build / update 3s -[info] Fetching artifacts of  - - - - - - | => sim-build / update 3s -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-pdf_2.12/0.7.5? - 100.0% [##########] 31.8 KiB (1.4 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/github/jonas/paradox-material-? - 100.0% [##########] 123.9 KiB (8.6 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 19.3% [# ] 393.3 KiB (17.5 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 3s -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 54.1% [##### ] 1.1 MiB (25.7 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 100.0% [##########] 2.0 MiB (32.1 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 43.8% [#### ] 13.1 KiB (127.6 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.ligh? - 100.0% [##########] 30.0 KiB (243.9 KiB / s) -https://repo1.maven.org/maven2/org/planet42/laika-core_2.12/0.7.? - 100.0% [##########] 2.0 MiB (24.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 7.7% [ ] 13.1 KiB (66.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 55.9 KiB (465.7 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 23.6% [## ] 40.5 KiB (184.9 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 54.0% [##### ] 92.4 KiB (388.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 171.3 KiB (663.8 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => sim-build / update 3s -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 98.4% [######### ] 15.9 KiB (68.4 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 16.1 KiB (64.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 6.0 KiB (30.0 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 0.0% [ ] 0 B (0 B / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 97.3% [######### ] 24.1 KiB (71.2 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 22.8% [## ] 157.3 KiB (1.2 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 5.8% [ ] 49.1 KiB (146.9 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 846.3 KiB (2.3 MiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.type? - 100.0% [##########] 24.7 KiB (68.9 KiB / s) -https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.plan? - 100.0% [##########] 690.0 KiB (4.6 MiB / s) -[info] Fetched artifacts of  - - - - - - | => sim-build / update 3s - - - - - - | => sim-build / update 3s - - - - - - | => sim-build / update 4s - - - - - - | => sim-build / update 4s -[warn] There may be incompatibilities among your library dependencies; run 'evicted' to see detailed eviction warnings. - - - - - - | => sim-build / update 4s - - - - - - | => sim-build / update 4s - - - - - - | => sim-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project firesim from build.sbt ... -[info] Loading settings for project midas from build.sbt ... -[info] Loading settings for project targetutils from build.sbt ... -[info] Resolving key references (32007 settings) ... -[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[info] Set current project to utilities (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - - - - - - - - - - - | => macros / update 0s - | => core / projectDescriptors 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -[info] Updating  - - - - - - | => macros / update 0s - | => core / projectDescriptors 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.16.2/s? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? - 100.0% [##########] 1.6 KiB (126.2 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? - 100.0% [##########] 2.0 KiB (58.1 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? - 100.0% [##########] 2.0 KiB (59.8 KiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 100.0% [##########] 4.5 KiB (132.2 KiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 100.0% [##########] 5.0 KiB (147.0 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.16.2/s? - 100.0% [##########] 2.7 KiB (79.6 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 100.0% [##########] 4.4 KiB (81.1 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 100.0% [##########] 2.2 KiB (75.8 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 100.0% [##########] 4.4 KiB (152.7 KiB / s) -https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? - 100.0% [##########] 5.3 KiB (407.7 KiB / s) -https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? - 100.0% [##########] 6.4 KiB (221.1 KiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 100.0% [##########] 1.3 KiB (45.1 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 100.0% [##########] 17.0 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 100.0% [##########] 2.1 KiB (73.4 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? - 100.0% [##########] 2.4 KiB (143.8 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? - 100.0% [##########] 1.7 KiB (96.6 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? - 100.0% [##########] 2.5 KiB (195.8 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 100.0% [##########] 2.7 KiB (93.8 KiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => macros / update 0s - | => core / projectDescriptors 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 100.0% [##########] 2.2 KiB (82.9 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 1.8 KiB (180.7 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 5.3 KiB (440.8 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 6.2 KiB (410.6 KiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-functional? - 100.0% [##########] 1.5 KiB (88.5 KiB / s) -https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? - 100.0% [##########] 5.3 KiB (212.7 KiB / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.11/j? - 100.0% [##########] 3.5 KiB (195.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? - 100.0% [##########] 1.9 KiB (92.6 KiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? - 100.0% [##########] 2.1 KiB (74.2 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? - 100.0% [##########] 1.9 KiB (77.9 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? - 100.0% [##########] 3.0 KiB (159.8 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 100.0% [##########] 2.4 KiB (102.6 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bas? - 100.0% [##########] 5.2 KiB (327.7 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? - 100.0% [##########] 7.8 KiB (486.6 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jack? - 100.0% [##########] 2.5 KiB (154.5 KiB / s) -https://repo1.maven.org/maven2/com/github/fommil/netlib/parent/1? - 100.0% [##########] 9.3 KiB (582.4 KiB / s) -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi-projec? - 100.0% [##########] 11.2 KiB (657.6 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/27/oss-p? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 100.0% [##########] 10.2 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom? - 100.0% [##########] 12.0 KiB (545.7 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/27/oss-p? - 100.0% [##########] 19.2 KiB (871.8 KiB / s) -https://repo1.maven.org/maven2/org/fusesource/fusesource-pom/1.8? - 100.0% [##########] 14.3 KiB (650.5 KiB / s) - - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 1.9 KiB (99.8 KiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 100.0% [##########] 27.5 KiB (2.4 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? - 100.0% [##########] 2.4 KiB (122.0 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 100.0% [##########] 4.0 KiB (197.5 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? - 100.0% [##########] 1.7 KiB (86.9 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? - 100.0% [##########] 3.0 KiB (276.4 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? - 100.0% [##########] 2.6 KiB (255.5 KiB / s) -https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? - 100.0% [##########] 6.0 KiB (298.6 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? - 100.0% [##########] 1.6 KiB (178.2 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 4.0 KiB (99.1 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-par? - 100.0% [##########] 7.6 KiB (955.2 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? - 100.0% [##########] 1.6 KiB (55.3 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 1.6 KiB (59.7 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 100.0% [##########] 2.4 KiB (112.6 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/oss-parent/28/oss-p? - 100.0% [##########] 19.5 KiB (1.1 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 100.0% [##########] 4.0 KiB (329.2 KiB / s) -[info] Resolved dependencies - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -[info] Updating  - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? - 100.0% [##########] 2.0 KiB (116.0 KiB / s) -[info] Resolved dependencies - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -[info] Updating  - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? - 100.0% [##########] 2.0 KiB (109.6 KiB / s) -[info] Resolved dependencies - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -[info] Fetching artifacts of  - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? - 52.5% [##### ] 57.6 KiB (5.1 MiB / s) -https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? - 3.5% [ ] 40.2 KiB (3.3 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-coll? - 100.0% [##########] 109.6 KiB (3.5 MiB / s) -https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? - 65.9% [###### ] 105.8 KiB (6.5 MiB / s) -https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? - 49.0% [#### ] 563.1 KiB (17.7 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 45.2% [#### ] 154.0 KiB (9.4 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 7.7% [ ] 101.8 KiB (5.0 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 3.7% [ ] 275.2 KiB (8.7 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 65.0 KiB (5.8 MiB / s) -https://repo1.maven.org/maven2/com/github/fommil/netlib/core/1.1? - 100.0% [##########] 160.6 KiB (4.4 MiB / s) -https://repo1.maven.org/maven2/com/github/wendykierp/JTransforms? - 100.0% [##########] 1.1 MiB (22.0 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 340.6 KiB (9.2 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-platform_2.12? - 100.0% [##########] 8.1 KiB (537.8 KiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 33.3% [### ] 439.1 KiB (10.7 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 13.7% [# ] 1008.0 KiB (19.3 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 0.0% [ ] 0 B -https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.11/j? - 100.0% [##########] 111.7 KiB (5.7 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-jackson_2.12/3.? - 100.0% [##########] 35.4 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 65.8% [###### ] 867.6 KiB (14.1 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 42.4% [#### ] 273.1 KiB (10.3 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 24.5% [## ] 1.8 MiB (24.9 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 18.5% [# ] 85.7 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 4.3% [ ] 304.0 KiB (14.8 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 1.0% [ ] 129.5 KiB (10.5 MiB / s) - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 91.7% [######### ] 1.2 MiB (14.8 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 85.0% [######## ] 547.6 KiB (11.6 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 53.7% [##### ] 249.3 KiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 32.1% [### ] 2.3 MiB (25.4 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 8.9% [ ] 624.0 KiB (15.2 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 5.1% [ ] 689.5 KiB (21.0 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 1.3 MiB (12.9 MiB / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-json_2.12/? - 100.0% [##########] 644.0 KiB (9.5 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.1? - 100.0% [##########] 464.4 KiB (6.7 MiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? - 100.0% [##########] 25.5 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 42.8% [#### ] 3.1 MiB (27.7 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 14.6% [# ] 1.0 MiB (16.7 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 9.8% [ ] 1.3 MiB (25.0 MiB / s) -https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 100.0% [##########] 33.1 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/net/sf/opencsv/opencsv/2.3/opencs? - 100.0% [##########] 19.4 KiB (922.0 KiB / s) -https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-a? - 100.0% [##########] 25.5 KiB (821.7 KiB / s) -https://repo1.maven.org/maven2/pl/edu/icm/JLargeArrays/1.5/JLarg? - 100.0% [##########] 227.0 KiB (7.2 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 54.5% [##### ] 3.9 MiB (29.9 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 20.7% [## ] 1.4 MiB (17.8 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 15.5% [# ] 2.0 MiB (28.4 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze-macros_2.12/1? - 100.0% [##########] 131.5 KiB (4.6 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/machinist_2.12/0.6.? - 100.0% [##########] 33.0 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/macro-compat_2.12/1? - 100.0% [##########] 3.1 KiB (238.9 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-util_2.12/0.1? - 100.0% [##########] 33.8 KiB (1.2 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? - 82.3% [######## ] 64.0 KiB (4.5 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 65.8% [###### ] 4.7 MiB (31.4 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 26.9% [## ] 1.8 MiB (18.4 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 21.3% [## ] 2.8 MiB (30.6 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-functional? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/typesafe/play/play-functional? - 100.0% [##########] 173.8 KiB (7.7 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire-macros_2.12/0? - 100.0% [##########] 77.7 KiB (2.2 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 77.7% [####### ] 5.6 MiB (32.7 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 33.1% [### ] 2.3 MiB (18.9 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 26.6% [## ] 3.5 MiB (31.3 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 89.0% [######## ] 6.4 MiB (33.5 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 39.0% [### ] 2.7 MiB (19.1 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 32.4% [### ] 4.3 MiB (32.3 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 7.1% [ ] 224.0 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 4.8% [ ] 96.0 KiB (4.5 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 99.2% [######### ] 7.1 MiB (33.8 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 44.4% [#### ] 3.0 MiB (19.0 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 37.2% [### ] 4.9 MiB (32.3 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 15.6% [# ] 309.6 KiB (7.4 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 12.6% [# ] 400.0 KiB (5.9 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 8.2% [ ] 96.0 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.0.? - 100.0% [##########] 7.2 MiB (31.2 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 51.5% [##### ] 3.5 MiB (19.6 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 43.4% [#### ] 5.7 MiB (33.3 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 31.1% [### ] 619.7 KiB (9.9 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 21.1% [## ] 245.6 KiB (3.2 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 20.7% [## ] 656.0 KiB (7.4 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 0.5% [ ] 16.0 KiB (888.9 KiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 57.0% [##### ] 3.9 MiB (19.5 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 48.4% [#### ] 6.4 MiB (33.2 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 43.0% [#### ] 856.0 KiB (10.3 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 32.0% [### ] 373.6 KiB (3.8 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 27.6% [## ] 869.5 KiB (22.3 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 26.6% [## ] 841.2 KiB (7.8 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 62.5% [###### ] 4.3 MiB (19.5 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 55.4% [##### ] 1.1 MiB (10.7 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 53.1% [##### ] 7.0 MiB (33.0 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 49.7% [#### ] 1.5 MiB (26.4 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 43.5% [#### ] 507.7 KiB (4.3 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 32.8% [### ] 1.0 MiB (8.1 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 71.8% [####### ] 2.2 MiB (28.3 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 68.2% [###### ] 4.7 MiB (19.5 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 67.7% [###### ] 1.3 MiB (10.9 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 58.2% [##### ] 7.7 MiB (33.1 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 54.5% [##### ] 635.7 KiB (4.6 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 37.9% [### ] 1.2 MiB (8.0 MiB / s) - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 92.0% [######### ] 2.8 MiB (28.9 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 80.1% [######## ] 1.6 MiB (11.0 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 73.6% [####### ] 5.0 MiB (19.4 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 64.7% [###### ] 753.9 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 63.3% [###### ] 8.3 MiB (33.1 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 43.9% [#### ] 1.4 MiB (8.2 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/cats-kernel_2.12/2.? - 100.0% [##########] 3.1 MiB (26.1 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 94.9% [######### ] 1.8 MiB (11.5 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 80.9% [######## ] 5.5 MiB (19.8 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 78.9% [####### ] 920.0 KiB (5.1 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 69.6% [###### ] 9.2 MiB (33.7 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 51.7% [##### ] 1.6 MiB (8.6 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/ja? - 100.0% [##########] 87.9 KiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/apache/commons/commons-math3/? - 100.0% [##########] 1.9 MiB (10.7 MiB / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 95.9% [######### ] 1.1 MiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 89.4% [######## ] 6.1 MiB (20.4 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 77.2% [####### ] 10.2 MiB (34.8 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 61.3% [###### ] 1.9 MiB (9.2 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/net/sourceforge/f2j/arpack_combin? - 100.0% [##########] 1.1 MiB (5.3 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.1/? - 100.0% [##########] 82.0 KiB (2.5 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 96.0% [######### ] 6.6 MiB (20.6 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 83.7% [######## ] 11.0 MiB (35.4 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 68.4% [###### ] 2.1 MiB (9.4 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? - 51.8% [##### ] 591.4 KiB (17.0 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/com/github/scopt/scopt_2.12/3.7.0? - 100.0% [##########] 76.8 KiB (2.3 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/algebra_2.12/2.0.0-? - 100.0% [##########] 1.1 MiB (21.0 MiB / s) -https://repo1.maven.org/maven2/org/typelevel/spire_2.12/0.17.0-M? - 100.0% [##########] 6.9 MiB (20.2 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 90.8% [######### ] 12.0 MiB (36.1 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 76.4% [####### ] 2.4 MiB (9.6 MiB / s) -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 60.7% [###### ] 192.0 KiB (5.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s -https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackso? - 100.0% [##########] 316.3 KiB (5.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/modules/scala-jlin? - 100.0% [##########] 118.2 KiB (4.1 MiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.10/? - 100.0% [##########] 144.8 KiB (5.2 MiB / s) -https://repo1.maven.org/maven2/org/scalanlp/breeze_2.12/1.0/bree? - 100.0% [##########] 13.2 MiB (37.5 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 93.5% [######### ] 2.9 MiB (10.9 MiB / s) -https://repo1.maven.org/maven2/com/chuusai/shapeless_2.12/2.3.3/? - 100.0% [##########] 3.1 MiB (10.8 MiB / s) -[info] Fetched artifacts of  - - - - - - | => macros / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s - - - - - - | => macros / update 1s - | => rocketMacros / update 1s - | => rocketConfig / update 1s - - - - - - | => macros / update 1s - | => rocketMacros / update 1s - | => rocketConfig / update 1s -[info] Fetching artifacts of  - - - - - - | => macros / update 1s - | => rocketMacros / update 1s - | => rocketConfig / update 1s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - | => macros / update 1s - | => rocketConfig / update 1s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.11/? - 100.0% [##########] 144.8 KiB (916.3 KiB / s) -[info] Fetched artifacts of  - - - - - - | => macros / update 1s - | => rocketConfig / update 1s - - - - - - | => macros / update 1s - | => rocketConfig / update 1s - - - - - - - | => core / update 0s - - - - - - - | => chisel / update 0s -[info] Updating  - - - - - - | => chisel / update 0s -https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.pom - 100.0% [##########] 24.5 KiB (1.3 MiB / s) -https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/ha? - 0.0% [ ] 0 B (0 B / s) -[info] Resolved dependencies - - - - - - | => chisel / update 0s -[info] Fetching artifacts of  - - - - - - | => chisel / update 0s -https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/ha? - 100.0% [##########] 44.0 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.jar - 0.0% [ ] 0 B (0 B / s) - - - - - - | => chisel / update 0s -https://repo1.maven.org/maven2/junit/junit/4.13/junit-4.13.jar - 100.0% [##########] 372.8 KiB (13.0 MiB / s) -[info] Fetched artifacts of  - - - - - - | => chisel / update 0s -[info] Updating  - - - - - - | => chisel / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 1.6 KiB (97.3 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 1.8 KiB (110.1 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => targetutils / update 0s - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 1.8 KiB (8.3 KiB / s) -[info] Resolved dependencies - - - - - - | => targetutils / update 0s - - - - - - | => targetutils / update 0s -[info] Updating  - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? - 100.0% [##########] 2.0 KiB (115.8 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 2.2 KiB (18.4 KiB / s) -[info] Resolved dependencies - - - - - - | => targetutils / update 0s -[info] Updating  - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.p? - 100.0% [##########] 19.4 KiB (1.3 MiB / s) -[info] Resolved dependencies - - - - - - | => targetutils / update 0s -[info] Fetching artifacts of  - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 91.2 KiB (7.4 MiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? - 100.0% [##########] 145.6 KiB (14.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 6.2% [ ] 319.0 KiB (18.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 3.0% [ ] 282.3 KiB (19.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.j? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/jline/jline/2.14.5/jline-2.14.5.j? - 100.0% [##########] 262.3 KiB (11.1 MiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.4/2? - 100.0% [##########] 145.6 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 28.0% [## ] 980.3 KiB (25.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 16.5% [# ] 845.5 KiB (22.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 8.1% [ ] 774.4 KiB (22.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 71.7% [####### ] 2.5 MiB (43.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 25.0% [## ] 1.3 MiB (21.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 11.3% [# ] 1.1 MiB (19.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 3.4 MiB (45.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 39.4% [### ] 2.0 MiB (25.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 17.0% [# ] 1.6 MiB (21.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 65.6% [###### ] 3.3 MiB (34.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 26.8% [## ] 2.5 MiB (26.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 92.7% [######### ] 4.6 MiB (40.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 36.0% [### ] 3.4 MiB (29.5 MiB / s) - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (36.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 55.6% [##### ] 5.2 MiB (39.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 79.6% [####### ] 7.4 MiB (48.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 9.3 MiB (54.0 MiB / s) -[info] Fetched artifacts of  - - - - - - | => targetutils / update 0s - - - - - - | => targetutils / update 0s -[info] Updating  - - - - - - | => targetutils / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 1.6 KiB (111.4 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 1.8 KiB (126.0 KiB / s) - - - - - - | => hardfloat / update 0s -[info] Resolved dependencies - - - - - - | => hardfloat / update 0s -[info] Updating  - - - - - - | => hardfloat / update 0s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? - 100.0% [##########] 2.0 KiB (103.6 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -[info] Resolved dependencies - - - - - - | => hardfloat / update 0s - - - - - - | => hardfloat / update 0s -[info] Fetching artifacts of  - - - - - - | => hardfloat / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 7.9% [ ] 404.8 KiB (32.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.8/2? - 100.0% [##########] 144.8 KiB (5.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 20.9% [## ] 1.1 MiB (33.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 19.3% [# ] 688.0 KiB (22.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 8.3% [ ] 848.0 KiB (34.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 41.4% [#### ] 1.4 MiB (28.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 31.8% [### ] 1.6 MiB (31.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 17.3% [# ] 1.7 MiB (39.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 61.7% [###### ] 2.1 MiB (30.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 42.4% [#### ] 2.1 MiB (30.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 27.3% [## ] 2.7 MiB (42.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 83.5% [######## ] 2.9 MiB (32.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 52.6% [##### ] 2.6 MiB (29.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 37.1% [### ] 3.7 MiB (44.3 MiB / s) - - - - - - | => hardfloat / update 0s -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 3.5 MiB (31.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 62.9% [###### ] 3.2 MiB (28.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 48.8% [#### ] 4.9 MiB (47.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 75.9% [####### ] 3.8 MiB (29.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 64.5% [###### ] 6.5 MiB (52.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 88.7% [######## ] 4.5 MiB (29.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 80.5% [######## ] 8.1 MiB (56.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (29.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 97.1% [######### ] 9.7 MiB (59.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 10.0 MiB (54.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (26.3 MiB / s) - - - - - - | => hardfloat / update 0s -[info] Fetched artifacts of  - - - - - - | => hardfloat / update 0s - - - - - - | => rocketchip / update 0s - - - - - - | => rocketchip / update 0s - - - - - - | => rocketchip / update 0s - - - - - - | => sifive_blocks / update 0s - - - - - - | => sifive_blocks / update 0s - - - - - - | => sifive_blocks / update 0s - - - - - - | => testchipip / update 0s - - - - - - | => testchipip / update 0s - - - - - - | => utilities / update 0s - - - - - - | => utilities / update 0s - - - - - - - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s -[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/rocket-chip/api-config-chipsalliance/build-rules/sbt/target/scala-2.12/classes ... - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s -[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/rocket-chip/macros/target/scala-2.12/classes ... - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s -[info] Compiling 5 Scala sources to /home/riscvuser/chipyard/tools/chisel3/macros/target/scala-2.12/classes ... - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s -https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.1? - 0.0% [ ] 0 B (0 B / s) - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.10. Compiling... - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 1s - | => rocketConfig / Compile / compileIncremental 1s - | => macros / Compile / compileIncremental 1s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 2s - | => rocketConfig / Compile / compileIncremental 2s - | => macros / Compile / compileIncremental 2s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 3s - | => rocketConfig / Compile / compileIncremental 3s - | => macros / Compile / compileIncremental 3s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s -[info]  Compilation completed in 4.734s. - - - - - - | => rocketMacros / Compile / compileIncremental 4s - | => rocketConfig / Compile / compileIncremental 4s - | => macros / Compile / compileIncremental 4s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.11. Compiling... - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 5s - | => rocketConfig / Compile / compileIncremental 5s - | => macros / Compile / compileIncremental 5s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 6s - | => rocketConfig / Compile / compileIncremental 6s - | => macros / Compile / compileIncremental 6s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 7s - | => rocketConfig / Compile / compileIncremental 7s - | => macros / Compile / compileIncremental 7s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 8s - | => rocketConfig / Compile / compileIncremental 8s - | => macros / Compile / compileIncremental 8s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 9s - | => rocketConfig / Compile / compileIncremental 9s - | => macros / Compile / compileIncremental 9s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 10s - | => rocketConfig / Compile / compileIncremental 10s - | => macros / Compile / compileIncremental 10s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 11s - | => rocketConfig / Compile / compileIncremental 11s - | => macros / Compile / compileIncremental 11s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 12s - | => rocketConfig / Compile / compileIncremental 12s - | => macros / Compile / compileIncremental 12s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 13s - | => rocketConfig / Compile / compileIncremental 13s - | => macros / Compile / compileIncremental 13s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s -[info]  Compilation completed in 9.786s. - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 14s - | => rocketConfig / Compile / compileIncremental 14s - | => macros / Compile / compileIncremental 14s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compileIncremental 15s - | => rocketConfig / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketConfig / Compile / compile 0s - | => rocketMacros / Compile / compileIncremental 15s - | => macros / Compile / compileIncremental 15s - - - - - - | => rocketMacros / Compile / compile 0s - | => rocketConfig / Compile / compile 0s - | => macros / Compile / compileIncremental 16s - - - - - - | => rocketConfig / Compile / packageBin 0s - | => rocketMacros / Compile / packageBin 0s - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 16s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 17s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compileIncremental 18s - - - - - - - - | => macros / Compile / compile 0s -[info] Compiling 41 Scala sources to /home/riscvuser/chipyard/tools/chisel3/core/target/scala-2.12/classes ... - - - - - - - | => macros / Compile / compile 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 1s - - - - - - - | => core / Compile / compileIncremental 2s - - - - - - - | => core / Compile / compileIncremental 2s - - - - - - - | => core / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Num.scala:5:25: imported `ChiselException' is permanently hidden by definition of type ChiselException in package chisel3 - - - - - - | => core / Compile / compileIncremental 2s -[warn] import chisel3.internal.ChiselException - - - - - - | => core / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 2s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 3s - - - - - - | => core / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/StrongEnum.scala:185:27: inferred existential type Option[chisel3.Vec[_]]( forSome { type _ <: chisel3.Data }), which cannot be expressed by wildcards, should be enabled - - - - - - | => core / Compile / compileIncremental 4s -[warn] by making the implicit value scala.language.existentials visible. - - - - - - | => core / Compile / compileIncremental 4s -[warn] This can be achieved by adding the import clause 'import scala.language.existentials' - - - - - - | => core / Compile / compileIncremental 4s -[warn] or by setting the compiler option -language:existentials. - - - - - - | => core / Compile / compileIncremental 4s -[warn] See the Scaladoc for value scala.language.existentials for a discussion - - - - - - | => core / Compile / compileIncremental 4s -[warn] why the feature should be explicitly enabled. - - - - - - | => core / Compile / compileIncremental 4s -[warn]  val currentVecOpt = d match { - - - - - - | => core / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 4s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:231:42: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following input: Empty - - - - - - | => core / Compile / compileIncremental 5s -[warn]  val reconstructedResolvedDirection = direction match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:333:15: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following input: Empty - - - - - - | => core / Compile / compileIncremental 5s -[warn]  elts.head.direction match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:510:65: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following inputs: (Data(), _), (Element(), Record()), (Element(), _), (Record(), Element()), (Record(), _), (_, Data()), (_, Element()), (_, Record()), (_, _) - - - - - - | => core / Compile / compileIncremental 5s -[warn]  def getMatchedFields(x: Data, y: Data): Seq[(Data, Data)] = (x, y) match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:561:24: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following input: BundleLitBinding(_) - - - - - - | => core / Compile / compileIncremental 5s -[warn]  val litArg = valueBinding match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Bits.scala:2183:21: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following inputs: (??, _), (Closed(_), _), (Open(_), _), (_, ??), (_, Closed(_)), (_, Open(_)), (_, _) - - - - - - | => core / Compile / compileIncremental 5s -[warn]  val inRange = (range.lowerBound, range.upperBound) match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/StrongEnum.scala:171:60: match may not be exhaustive. - - - - - - | => core / Compile / compileIncremental 5s -[warn] It would fail on the following input: Record() - - - - - - | => core / Compile / compileIncremental 5s -[warn]  private def enumFields(d: Aggregate): Seq[Seq[String]] = d match { - - - - - - | => core / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 5s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 6s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:64:24: method flatten in class Data is deprecated (since chisel3): pending removal once all instances replaced - - - - - - | => core / Compile / compileIncremental 7s -[warn]  SeqUtils.do_asUInt(flatten.map(_.asUInt())) - - - - - - | => core / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Aggregate.scala:70:15: method flatten in class Data is deprecated (since chisel3): pending removal once all instances replaced - - - - - - | => core / Compile / compileIncremental 7s -[warn]  for (x <- flatten) { - - - - - - | => core / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Annotation.scala:38:30: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => core / Compile / compileIncremental 7s -[warn]  def toFirrtl: Annotation = Annotation(component.toNamed, transformClass, value) - - - - - - | => core / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Assert.scala:41:57: method lineContent in trait Position is deprecated (since 2.11.0): removed from the public API - - - - - - | => core / Compile / compileIncremental 7s -[warn]  val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}" - - - - - - | => core / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/Assert.scala:49:57: method lineContent in trait Position is deprecated (since 2.11.0): removed from the public API - - - - - - | => core / Compile / compileIncremental 7s -[warn]  val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}" - - - - - - | => core / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 7s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/internal/Namer.scala:84:9: object JavaConversions in package collection is deprecated (since 2.12.0): use JavaConverters - - - - - - | => core / Compile / compileIncremental 8s -[warn]  descendants.getOrElseUpdate(ref, ListBuffer[NamingContext]()) += descendant - - - - - - | => core / Compile / compileIncremental 8s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 8s -[warn] /home/riscvuser/chipyard/tools/chisel3/core/src/main/scala/chisel3/internal/Namer.scala:114:42: object JavaConversions in package collection is deprecated (since 2.12.0): use JavaConverters - - - - - - | => core / Compile / compileIncremental 8s -[warn]  for (descendant <- descendants.values().flatten) { - - - - - - | => core / Compile / compileIncremental 8s -[warn]  ^ - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 8s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 9s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 10s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 11s - - - - - - | => core / Compile / compileIncremental 12s - - - - - - | => core / Compile / compileIncremental 12s -[warn] 15 warnings found - - - - - - | => core / Compile / compileIncremental 12s - - - - - - | => core / Compile / compileIncremental 12s - - - - - - | => core / Compile / compile 0s - - - - - - | => core / Compile / compile 0s - - - - - - | => core / Compile / compile 0s -[info] Compiling 57 Scala sources to /home/riscvuser/chipyard/tools/chisel3/target/scala-2.12/classes ... - - - - - - | => core / Compile / compile 0s - - - - - - | => core / Compile / packageBin 0s - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:24:9: inferred existential type (chisel3.internal.firrtl.Circuit, chisel3.stage.DesignAnnotation[_]) forSome { type _ <: chisel3.RawModule }, which cannot be expressed by wildcards, should be enabled - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] by making the implicit value scala.language.existentials visible. - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] This can be achieved by adding the import clause 'import scala.language.existentials' - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] or by setting the compiler option -language:existentials. - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] See the Scaladoc for value scala.language.existentials for a discussion - - - - - - | => chisel / Compile / compileIncremental 1s -[warn] why the feature should be explicitly enabled. - - - - - - | => chisel / Compile / compileIncremental 1s -[warn]  val (circuit, dut) = new chisel3.stage.ChiselGeneratorAnnotation(finishWrapper(t)).elaborate.toSeq match { - - - - - - | => chisel / Compile / compileIncremental 1s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 1s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 2s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 3s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/ChiselExecutionOptions.scala:21:44: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ) extends ComposableOptions { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/ChiselExecutionOptions.scala:30:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  self: ExecutionOptionsManager => - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:49:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:49:101: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:50:23: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  commonOptions = CommonOptions(topName = prefix, targetDirName = dir.getAbsolutePath) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:51:23: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  firrtlOptions = FirrtlExecutionOptions(compilerName = "verilog") - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:54:12: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  firrtl.Driver.execute(optionsManager) match { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:75:55: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  firrtlResultOption: Option[FirrtlExecutionResult] - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/Driver.scala:72:12: trait FirrtlExecutionResult in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] case class ChiselExecutionSuccess( - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/AspectLibrary.scala:21:11: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  x.newInstance() - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:14:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:14:41: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:15:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  override def outputForm: CircuitForm = ChirrtlForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/aop/injecting/InjectingTransform.scala:15:42: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  override def outputForm: CircuitForm = ChirrtlForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:396:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val Driver = chisel3.Driver - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:407:28: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val circuit = Driver.elaborate(gen) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:408:14: method parseArgs in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage with '--target-directory'. This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Driver.parseArgs(args) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:409:41: method targetDir in object Driver is deprecated (since 3.2.2): This has no effect on Chisel3 Driver! This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val output_file = new File(Driver.targetDir + "/" + circuit.name + ".fir") - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:410:14: method dumpFirrtl in object Driver is deprecated (since 3.2.4): Migrate to chisel3.stage.ChiselStage. This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Driver.dumpFirrtl(circuit, Option(output_file)) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:475:29: object unless in package util is deprecated (since 3.2): The unless conditional is deprecated, use when(!condition){...} instead - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val unless = chisel3.util.unless - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/compatibility.scala:564:29: object LFSR16 in package util is deprecated (since 3.2): LFSR16 is deprecated in favor of the parameterized chisel3.util.random.LFSR - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val LFSR16 = chisel3.util.LFSR16 - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/internal/firrtl/Emitter.scala:189:16: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  res ++= s";${Driver.chiselVersionString}\n" - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/ChiselAnnotations.scala:70:63: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Class.forName(name).asInstanceOf[Class[_ <: RawModule]].newInstance() - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/package.scala:45:61: method firrtlResultView in object DriverCompatibility is deprecated (since 1.2): FirrtlExecutionResult is deprecated as part of the Stage/Phase refactor. Migrate to FirrtlStage. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val fResult = firrtl.stage.phases.DriverCompatibility.firrtlResultView(options) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/Convert.scala:37:75: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  .map { c: Class[_ <: Transform] => RunFirrtlTransformAnnotation(c.newInstance()) } - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:102:14: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  manager: ExecutionOptionsManager with HasChiselExecutionOptions with HasFirrtlOptions) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:101:31: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  private[chisel3] case class OptionsManagerAnnotation( - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:118:22: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  .collectFirst{ case OptionsManagerAnnotation(a) => a } - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:145:56: class AddImplicitOutputFile in object DriverCompatibility is deprecated (since 1.2): AddImplicitOutputFile should only be used to build Driver compatibility wrappers. Switch to Stage. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Seq( new firrtl.stage.phases.DriverCompatibility.AddImplicitOutputFile, - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/stage/phases/DriverCompatibility.scala:146:56: class AddImplicitEmitter in object DriverCompatibility is deprecated (since 1.2): AddImplicitEmitter should only be used to build Driver compatibility wrappers. Switch to Stage. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  new firrtl.stage.phases.DriverCompatibility.AddImplicitEmitter ) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:36:12: method dumpFirrtl in object Driver is deprecated (since 3.2.4): Migrate to chisel3.stage.ChiselStage. This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Driver.dumpFirrtl(circuit, Some(new File(fname.toString + ".fir"))) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:36:5: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  Driver.dumpFirrtl(circuit, Some(new File(fname.toString + ".fir"))) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:37:32: method toFirrtl in object Driver is deprecated (since 3.2.4): Use ChiselStage.convert or use a ChiselStage class. This will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val firrtlCircuit = Driver.toFirrtl(circuit) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:37:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val firrtlCircuit = Driver.toFirrtl(circuit) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:55:69: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  .map { transformClass: Class[_ <: Transform] => transformClass.newInstance() } - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:58:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:58:101: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  val optionsManager = new ExecutionOptionsManager("chisel3") with HasChiselExecutionOptions with HasFirrtlOptions { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:59:23: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  commonOptions = CommonOptions(topName = target, targetDirName = path.getAbsolutePath) - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:60:23: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  firrtlOptions = FirrtlExecutionOptions(compilerName = "verilog", annotations = resolvedAnnotations, - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/testers/TesterDriver.scala:64:12: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  firrtl.Driver.execute(optionsManager) match { - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:128:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:128:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:129:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/chisel3/src/main/scala/chisel3/util/experimental/LoadMemoryTransform.scala:129:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => chisel / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 4s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 5s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 6s - - - - - - | => chisel / Compile / compileIncremental 7s - - - - - - | => chisel / Compile / compileIncremental 7s -[warn] 45 warnings found - - - - - - | => chisel / Compile / compileIncremental 7s - - - - - - | => chisel / Compile / compile 0s - - - - - - | => chisel / Compile / compile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => chisel / Compile / compile 0s -[info] Compiling 1 Scala source to /home/riscvuser/chipyard/sims/firesim/sim/midas/targetutils/target/scala-2.12/classes ... - - - - - - | => chisel / Compile / compile 0s - - - - - - | => chisel / Compile / packageBin 0s - | => targetutils / Compile / compileIncremental 0s -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.4. Compiling... - - - - - - | => chisel / Compile / packageBin 0s - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 0s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 1s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 2s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 3s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 4s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 5s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 6s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 7s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 8s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 9s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 10s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 11s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 12s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - - | => targetutils / Compile / compileIncremental 13s -[info]  Compilation completed in 13.551s. - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - | => targetutils / Compile / compileIncremental 13s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 14s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 15s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / compileIncremental 16s - - - - - - | => targetutils / Compile / packageBin 0s -[info] Compiling 27 Scala sources to /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/target/scala-2.12/classes ... - - - - - - | => targetutils / Compile / packageBin 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.8. Compiling... - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 0s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 1s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 2s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 3s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 4s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 5s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 6s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 7s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 8s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 9s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 10s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 11s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 12s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 13s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s -[info]  Compilation completed in 14.398s. - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 14s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 15s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 16s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 17s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 18s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 19s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 20s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 21s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 22s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 23s - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:62:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f16FromRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:62:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f16FromRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:64:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f32FromRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:64:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f32FromRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:66:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f64FromRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:66:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_f64FromRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:68:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:68:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:70:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:70:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:72:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:72:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:74:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:74:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:76:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:76:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:78:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:78:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_UI64ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:80:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:80:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:82:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:82:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:84:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:84:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:86:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:86:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:88:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:88:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:90:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:90:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_I64ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:92:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:92:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:94:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:94:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:96:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:96:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:98:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:98:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:100:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:100:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:102:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:102:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToUI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:104:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:104:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:106:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:106:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:108:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:108:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:110:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:110:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:112:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:112:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:114:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:114:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToI64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:116:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:116:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:118:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:118:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF16ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:120:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:120:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:122:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:122:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF32ToRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:124:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:124:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:126:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:126:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_RecF64ToRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:128:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:128:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:131:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:131:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:134:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:134:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF16) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:136:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:136:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:139:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:139:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:142:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:142:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF32) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:144:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:144:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:147:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:147:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:150:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:150:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute(testArgs, () => new ValExec_MulAddRecF64) - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:152:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:152:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:156:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:156:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:161:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:161:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:165:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:165:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:170:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:170:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:174:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:174:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:179:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:179:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:182:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:182:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:185:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:185:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:188:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:188:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:191:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:191:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:194:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:194:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:197:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:197:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:200:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:200:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:203:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:203:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:206:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:206:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:209:32: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/hardfloat/src/main/scala/tests.scala:209:25: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  chisel3.Driver.execute( - - - - - - | => hardfloat / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 24s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 25s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 26s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 27s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compileIncremental 28s -[warn] there were 890 feature warnings; re-run with -feature for details - - - - - - | => hardfloat / Compile / compileIncremental 28s -[warn] 119 warnings found - - - - - - | => hardfloat / Compile / compileIncremental 28s - - - - - - | => hardfloat / Compile / compile 0s - - - - - - | => hardfloat / Compile / packageBin 0s -[info] Compiling 345 Scala sources to /home/riscvuser/chipyard/generators/rocket-chip/src/target/scala-2.12/classes ... - - - - - - | => hardfloat / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 0s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 1s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 2s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 3s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 4s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 5s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 6s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 7s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 8s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 9s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 10s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 11s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 12s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 13s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 14s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 15s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 16s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 17s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 18s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 19s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 20s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 21s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 22s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 23s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 24s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 25s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 26s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 27s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 28s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 29s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 30s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 31s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 32s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 33s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 34s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 35s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 36s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 37s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 38s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 39s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 40s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 41s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 42s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 43s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/subsystem/InterruptBus.scala:16:36: class IntXing in package interrupts is deprecated (since rocket-chip 1.2): IntXing does not ensure interrupt source is glitch free. Use IntSyncSource and IntSyncSink - - - - - - | => rocketchip / Compile / compileIncremental 44s -[warn]  val asyncXing = LazyModule(new IntXing(sync)) - - - - - - | => rocketchip / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 44s - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/tilelink/Monitor.scala:726:11: method legalizeADSourceOld in class TLMonitor is deprecated: Use legalizeADSource instead if possible - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn]  legalizeADSourceOld(bundle, edge) - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn]  ^ - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn] /home/riscvuser/chipyard/generators/rocket-chip/src/main/scala/util/GeneratorUtils.scala:16:36: method newInstance in class Class is deprecated: see corresponding Javadoc for more information. - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn]  Class.forName(currentName).newInstance.asInstanceOf[Config] - - - - - - | => rocketchip / Compile / compileIncremental 45s -[warn]  ^ - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 45s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 46s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 47s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 48s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 49s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 50s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 51s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 52s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 53s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 54s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 55s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 56s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 57s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 58s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 59s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 60s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 61s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 62s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 63s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 64s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 65s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 66s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 67s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 68s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s -[warn] there were 2471 feature warnings; re-run with -feature for details - - - - - - | => rocketchip / Compile / compileIncremental 69s -[warn] four warnings found - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compileIncremental 69s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / compile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => rocketchip / Compile / compile 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => rocketchip / Compile / packageBin 0s -[info] Compiling 78 Scala sources to /home/riscvuser/chipyard/generators/sifive-blocks/target/scala-2.12/classes ... - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 1s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 2s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 3s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 4s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 5s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 6s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 7s - - - - - - | => sifive_blocks / Compile / compileIncremental 8s - - - - - - | => sifive_blocks / Compile / compileIncremental 8s - - - - - - | => sifive_blocks / Compile / compileIncremental 8s - - - - - - | => sifive_blocks / Compile / compileIncremental 8s -[warn] there were 758 feature warnings; re-run with -feature for details - - - - - - | => sifive_blocks / Compile / compileIncremental 8s -[warn] one warning found - - - - - - | => sifive_blocks / Compile / compileIncremental 8s - - - - - - | => sifive_blocks / Compile / compileIncremental 8s - - - - - - | => sifive_blocks / Compile / compile 0s - - - - - - | => sifive_blocks / Compile / compile 0s - - - - - - | => sifive_blocks / Compile / packageBin 0s -[info] Compiling 19 Scala sources to /home/riscvuser/chipyard/generators/testchipip/target/scala-2.12/classes ... - - - - - - | => sifive_blocks / Compile / packageBin 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 0s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 1s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 2s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 3s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 4s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 5s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:420:23: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  Map("TAG_BITS" -> IntParam(log2Up(config.get.nTrackers))) - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:432:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  setResource("/testchipip/vsrc/SimBlockDevice.v") - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:433:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  setResource("/testchipip/csrc/SimBlockDevice.cc") - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:434:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  setResource("/testchipip/csrc/blkdev.cc") - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/BlockDevice.scala:435:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  setResource("/testchipip/csrc/blkdev.h") - - - - - - | => testchipip / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 6s - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtil.scala:103:132: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  syncs.zipWithIndex.foreach { case (s, i) => s.io.d := (io.sel === i.U) && !(syncs.zipWithIndex.filter(_._2 != i).map(_._1.io.q.toBool).reduce(_||_)) } - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:28:17: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  val state = withClockAndReset(clocks(0), syncReset) { RegInit(sReset) } - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:30:5: value withClock in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  withClock(mux.io.clockOut) { - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:34:5: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  withClockAndReset(clocks(0), syncReset) { - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:73:19: value withClock in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  val divider = withClock(myClock) { Module(new ClockDivider(log2Ceil(divs.max))) } - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:77:17: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  val state = withClockAndReset(myClock, syncReset) { RegInit(sReset) } - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:79:5: value withClockAndReset in package experimental is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  withClockAndReset(myClock, syncReset) { - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:107:22: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  "minperiodps" -> IntParam(minperiodps), - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:108:22: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  "maxperiodps" -> IntParam(maxperiodps.getOrElse(BigInt(0))) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/ClockUtilTests.scala:118:72: value IntParam in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] class ClockGenerator(periodps: Int) extends BlackBox(Map("periodps" -> IntParam(periodps))) { - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/NoDebug.scala:17:14: type Reset in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  val reset: Reset - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:126:47: method copy in class TLMasterParameters is deprecated: Use v1copy instead of copy - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  port.clients map { client => client.copy( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:123:14: method copy in class TLMasterPortParameters is deprecated: Use v1copy instead of copy - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  seq(0).copy( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:140:50: method copy in class TLSlaveParameters is deprecated: Use v1copy instead of copy - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  port.managers map { manager => manager.copy( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Ring.scala:133:14: method copy in class TLSlavePortParameters is deprecated: Use v1copy instead of copy - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  seq(0).copy( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:490:7: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLManagerPortParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:532:7: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLClientPortParameters(Seq(client)))) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:580:9: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  Seq(TLClientPortParameters(Seq(clientParams)))) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Serdes.scala:583:9: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  Seq(TLManagerPortParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:107:5: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLManagerPortParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:108:11: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  Seq(TLManagerParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:122:7: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Switcher.scala:122:34: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:138:18: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  params = Seq(TLManagerParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:147:18: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  params = Seq(TLClientParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:194:20: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  clientParams = TLClientParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Unittests.scala:197:21: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  managerParams = TLManagerParameters( - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:132:20: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  makeClientNode(TLClientParameters(name, sourceId)) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:136:22: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLClientNode(Seq(TLClientPortParameters(Seq(params)))) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn] /home/riscvuser/chipyard/generators/testchipip/src/main/scala/Util.scala:140:23: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  TLManagerNode(Seq(TLManagerPortParameters(Seq(params), beatBytes))) - - - - - - | => testchipip / Compile / compileIncremental 7s -[warn]  ^ - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 7s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 8s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 9s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 10s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compileIncremental 11s -[warn] there were 403 feature warnings; re-run with -feature for details - - - - - - | => testchipip / Compile / compileIncremental 11s -[warn] 36 warnings found - - - - - - | => testchipip / Compile / compileIncremental 11s - - - - - - | => testchipip / Compile / compile 0s - - - - - - | => testchipip / Compile / packageBin 0s -[info] Compiling 1 Scala source to /home/riscvuser/chipyard/generators/utilities/target/scala-2.12/classes ... - - - - - - | => testchipip / Compile / packageBin 0s - - - - - - | => utilities / Compile / compileIncremental 0s - - - - - - | => utilities / Compile / compileIncremental 0s - - - - - - | => utilities / Compile / compileIncremental 0s - - - - - - | => utilities / Compile / compileIncremental 0s - - - - - - | => utilities / Compile / bgRunMain 0s - - - - - - | => utilities / Compile / bgRunMain 0s - - - - - - | => utilities / Compile / bgRunMain 0s - - - - - - | => utilities / Compile / bgRunMain 0s - - - - - - | => utilities / Compile / bgRunMain 0s -[info] running utilities.GenerateSimFiles -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -sim verilator - - - - - - | => utilities / Compile / runMain 0s - - - - - - | => utilities / Compile / runMain 0s - - - - - - -[success] Total time: 182 s (03:02), completed Dec 23, 2020, 3:44:40 AM -mkdir -p /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project chipyard" "runMain chipyard.Generator \ - --target-dir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig \ - --name chipyard.TestHarness.RocketConfig \ - --top-module chipyard.TestHarness \ - --legacy-configs chipyard.RocketConfig" -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -[info] Loading settings for project chipyard-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/project - - - - - - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project chipyardRoot from build.sbt ... -[info] Loading settings for project barstoolsMacros from build.sbt ... -[info] Loading settings for project mdf from build.sbt ... -[info] Loading settings for project gemmini from build.sbt ... -[info] Loading settings for project ariane from build.sbt ... -[info] Loading settings for project boom from build.sbt ... -[info] Loading settings for project hwacha from build.sbt ... -[info] Loading settings for project icenet from build.sbt ... -[info] Loading settings for project testchipip from build.sbt ... -[info] Loading settings for project rocketConfig from build.sbt ... -[info] Loading settings for project hardfloat from build.sbt ... -[info] Loading settings for project chisel_testers from build.sbt ... -[info] Loading settings for project treadle from build.sbt ... -[info] Loading settings for project firrtl_interpreter from build.sbt ... -[info] Loading settings for project chisel from build.sbt ... -[info] Loading settings for project sim-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project - - - - - - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project firesim from build.sbt ... -[info] Loading settings for project midas from build.sbt ... -[info] Loading settings for project targetutils from build.sbt ... -[info] Resolving key references (32007 settings) ... -[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - | => Global / checkBuildSources 0s - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[info] Set current project to chipyard (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - - - - - - - - - - - | => gemmini / dependencyPositions 0s - | => sifive_cache / dependencyPositions 0s - | => tracegen / dependencyPositions 0s - | => nvdla / dependencyPositions 0s - | => icenet / dependencyPositions 0s - | => boom / dependencyPositions 0s - | => utilities / dependencyPositions 0s - | => testchipip / dependencyPositions 0s - | => sha3 / dependencyPositions 0s - | => hwacha / dependencyPositions 0s - | => dsptools / dependencyPositions 0s - | => sifive_blocks / dependencyPositions 0s - | => rocketConfig / dependencyPositions 0s - | => rocketchip / dependencyPositions 0s - | => rocketMacros / dependencyPositions 0s - | => chisel_testers / dependencyPositions 0s - | => firrtl_interpreter / dependencyPositions 0s - | => rocket-dsptools / dependencyPositions 0s - | => targetutils / dependencyPositions 0s - | => treadle / dependencyPositions 0s - | => macros / dependencyPositions 0s - | => chisel / dependencyPositions 0s - | => core / dependencyPositions 0s - | => hardfloat / dependencyPositions 0s - - - - - - - - - - - - - - - - - - - - - - - - - | => sha3 / csrConfiguration 0s - | => utilities / csrConfiguration 0s - | => sifive_blocks / csrConfiguration 0s - | => dsptools / csrConfiguration 0s - | => chipyard / Compile / unmanagedSources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - | => core / projectDescriptors 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - | => core / projectDescriptors 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - - - - - | => dsptools / projectDescriptors 0s - | => hardfloat / update 0s - | => rocketchip / projectDescriptors 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - - | => ariane / update 0s - | => hwacha / update 0s - | => sifive_cache / update 0s - | => nvdla / update 0s - | => sifive_blocks / update 0s - | => chipyard / projectDescriptors 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - - - | => testchipip / update 0s - | => ariane / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => sifive_cache / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s -[info] Updating  - - - - - - - - - - - - - - - - - - - - - | => testchipip / update 0s - | => ariane / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => sifive_cache / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 86.1% [######## ] 1.3 KiB (4.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 86.0% [######## ] 1.3 KiB (4.5 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 76.0% [####### ] 1.3 KiB (4.5 KiB / s) -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom - 5.8% [ ] 1.3 KiB (4.5 KiB / s) -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.pom - 100.0% [##########] 23.1 KiB (72.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 1.6 KiB (4.9 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 1.8 KiB (5.5 KiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 100.0% [##########] 1.6 KiB (4.9 KiB / s) - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 0s - | => treadle / update 0s - - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 1s - | => treadle / update 1s -[info] Resolved dependencies - - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 1s - | => treadle / update 1s -[info] Updating  - - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 1s - | => treadle / update 1s -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? - 100.0% [##########] 2.0 KiB (59.7 KiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -[info] Resolved dependencies - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 0s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 0s - | => boom / update 0s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 1s - | => treadle / update 1s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 2s - | => treadle / update 2s -[info] Updating  - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 1s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 1s - | => sifive_cache / update 1s -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 1.8 KiB (127.4 KiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) - | => hwacha / update 1s - | => nvdla / update 1s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 100.0% [##########] 3.6 KiB (108.1 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? - 100.0% [##########] 2.1 KiB (101.4 KiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 100.0% [##########] 2.2 KiB (104.1 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? - 100.0% [##########] 1.6 KiB (61.7 KiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 1.6 KiB (62.0 KiB / s) -[info] Resolved dependencies - - - - - - - - - - - - - - - | => icenet / update 1s - | => boom / update 1s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => hwacha / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 2s - | => treadle / update 2s - - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => ariane / update 2s - | => sifive_cache / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => sifive_cache / update 2s - | => nvdla / update 2s - | => iocell / update 2s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => sifive_cache / update 2s - | => nvdla / update 2s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - - - | => icenet / update 2s - | => boom / update 2s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - - - | => icenet / update 3s - | => boom / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s -[info] Fetching artifacts of  - - - - - - - - - - - - - - - - - | => icenet / update 3s - | => boom / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar - 39.5% [### ] 121.4 KiB (4.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 4.2% [ ] 148.5 KiB (5.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 0.1% [ ] 2.7 KiB (111.6 KiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar - 75.6% [####### ] 232.5 KiB (4.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 8.7% [ ] 305.3 KiB (6.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 2.3% [ ] 116.6 KiB (2.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 1.5% [ ] 151.3 KiB (3.5 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 0.8% [ ] 9.4 KiB (208.3 KiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar - 100.0% [##########] 307.6 KiB (4.5 MiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? - 25.9% [## ] 37.5 KiB (1.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 18.7% [# ] 657.3 KiB (9.6 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 17.1% [# ] 196.8 KiB (3.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 6.1% [ ] 312.0 KiB (4.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 4.2% [ ] 432.0 KiB (6.8 MiB / s) -https://repo1.maven.org/maven2/org/scalamacros/paradise_2.12.6/2? - 100.0% [##########] 144.9 KiB (3.1 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 56.1% [##### ] 645.6 KiB (7.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 44.5% [#### ] 1.5 MiB (17.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 16.5% [# ] 851.0 KiB (9.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 11.8% [# ] 1.2 MiB (14.5 MiB / s) -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 92.2% [######### ] 1.0 MiB (10.0 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 67.7% [###### ] 2.3 MiB (21.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 24.6% [## ] 1.2 MiB (11.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 18.1% [# ] 1.8 MiB (17.8 MiB / s) - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s -https://repo1.maven.org/maven2/org/scalacheck/scalacheck_2.12/1.? - 100.0% [##########] 1.1 MiB (9.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 93.1% [######### ] 3.2 MiB (25.2 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 34.0% [### ] 1.7 MiB (13.8 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 26.1% [## ] 2.6 MiB (21.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12? - 100.0% [##########] 3.4 MiB (23.6 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 48.9% [#### ] 2.5 MiB (17.1 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 37.9% [### ] 3.8 MiB (26.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 66.3% [###### ] 3.3 MiB (20.4 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 51.8% [##### ] 5.1 MiB (31.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 82.5% [######## ] 4.1 MiB (22.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 66.1% [###### ] 6.6 MiB (36.3 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (24.7 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 79.8% [####### ] 7.9 MiB (39.4 MiB / s) - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s -https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12? - 100.0% [##########] 5.0 MiB (22.5 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 9.9 MiB (44.9 MiB / s) -https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.1? - 100.0% [##########] 9.9 MiB (41.4 MiB / s) -[info] Fetched artifacts of  - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => firrtl_interpreter / update 3s - | => treadle / update 3s - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => treadle / update 4s - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => icenet / update 3s - | => nvdla / update 3s - | => iocell / update 3s - | => treadle / update 4s - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => nvdla / update 3s - | => iocell / update 4s - | => treadle / update 4s - - - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => treadle / update 4s -[info] Fetching artifacts of  - - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => treadle / update 4s -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-ast_2.12/3.6.8/? - 100.0% [##########] 81.6 KiB (5.0 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-native_2.12/3.6? - 100.0% [##########] 91.1 KiB (3.2 MiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 69.4% [###### ] 1.0 MiB (37.3 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? - 41.0% [#### ] 196.8 KiB (10.1 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 6.7% [ ] 447.9 KiB (18.2 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/org/json4s/json4s-core_2.12/3.6.8? - 100.0% [##########] 479.5 KiB (12.3 MiB / s) -https://repo1.maven.org/maven2/org/json4s/json4s-scalap_2.12/3.6? - 100.0% [##########] 340.8 KiB (12.8 MiB / s) -https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.1.? - 100.0% [##########] 1.5 MiB (31.4 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 16.9% [# ] 1.1 MiB (25.1 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 35.1% [### ] 2.3 MiB (36.4 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 59.8% [##### ] 3.9 MiB (47.0 MiB / s) - - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => treadle / update 4s -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 87.1% [######## ] 5.7 MiB (55.2 MiB / s) -https://repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.1.? - 100.0% [##########] 6.5 MiB (53.0 MiB / s) -[info] Fetched artifacts of  - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => treadle / update 4s - - - - - - - - - - - - - - - - - - | => tracegen / update 0s - | => treadle / update 4s - - - - - - - - - - - - - - - - - - | => chisel_testers / update 0s - | => tracegen / update 1s - - - - - - - - - - - - - - - - - - | => chisel_testers / update 0s - | => tracegen / update 1s - - - - - - - - - - - - - - - - - - - | => chisel_testers / update 0s - - - - - - - - - - - - - - - - - - - | => chisel_testers / update 0s - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - | => sha3 / update 0s - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - | => sha3 / update 0s - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - | => sha3 / update 0s - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - | => sha3 / update 0s - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - | => sha3 / update 0s - - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - - - - - - - - - - - - - - - - - - | => gemmini / update 0s - | => dsptools / update 0s - - - - - - - - - - - - - - - - - - - | => rocket-dsptools / update 0s - - - - - - - - - - - - - - - - - - - | => rocket-dsptools / update 0s - - - - - - - - - - - - - - - - - - - | => rocket-dsptools / update 0s - - - - - - - - - - - - - - - - - - - | => chipyard / update 0s - - - - - - - - - - - - - - - - - - - | => chipyard / update 0s - - - - - - - - - - - - - - - - - - - | => chipyard / update 0s - - - - - - - - - - - - - - - - - - | => core / Compile / unmanagedSources / allInputPathsAndAttributes 0s - | => rocketchip / Compile / unmanagedSources / allInputPathsAndAttributes 0s - - - - - - | => icenet / scalaCompilerBridgeScope / csrConfiguration 0s - | => icenet / scalaCompilerBridgeScope / csrConfiguration 0s - | => iocell / Compile / unmanagedClasspath 0s - | => testchipip / Compile / unmanagedClasspath 0s - | => iocell / scalaCompilerBridgeScope / csrConfiguration 0s - | => iocell / scalaCompilerBridgeScope / csrConfiguration 0s - | => testchipip / scalaCompilerBridgeScope / csrConfiguration 0s - | => testchipip / scalaCompilerBridgeScope / csrConfiguration 0s - | => gemmini / Compile / unmanagedClasspath 0s - | => treadle / scalaCompilerBridgeScope / csrConfiguration 0s - | => treadle / scalaCompilerBridgeScope / csrConfiguration 0s - | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s - | => dsptools / Compile / scalacOptions 0s - | => rocket-dsptools / Compile / scalacOptions 0s - | => ariane / Compile / scalacOptions 0s - | => hwacha / Compile / scalacOptions 0s - | => hardfloat / Compile / scalacOptions 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - | => ariane / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - | => macros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => rocketMacros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - | => ariane / Compile / unmanagedResources / inputFileStamps 0s -[info] Compiling 59 Scala sources to /home/riscvuser/chipyard/tools/treadle/target/scala-2.12/classes ... - - - - - - - - - - - - - - - - - | => macros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => rocketMacros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - | => ariane / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - | => ariane / Compile / copyResources 0s - | => macros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => rocketMacros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[info] Compiling 23 Scala sources to /home/riscvuser/chipyard/tools/firrtl-interpreter/target/scala-2.12/classes ... - - - - - - - - - - - - - - - - | => ariane / Compile / copyResources 0s - | => macros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => rocketMacros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.6. Compiling... - - - - - - - - - - - - - - - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - | => core / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - | => core / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - | => chisel / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - | => chisel / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - | => chisel / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 0s - | => targetutils / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[info] Compiling 2 Scala sources to /home/riscvuser/chipyard/tools/barstools/iocell/target/scala-2.12/classes ... - - - - - - - - - - - - - | => chisel / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 0s - | => targetutils / Compile / previousCompile 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - | => hardfloat / Compile / compileIncremental 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => ariane / Compile / copyResources 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => treadle / Compile / compileIncremental 0s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - | => rocketchip / Compile / mainClass 0s - | => rocketchip / Compile / packageBin / mappings 0s - | => nvdla / Compile / copyResources 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s -[info] Compiling 53 Scala sources to /home/riscvuser/chipyard/generators/hwacha/target/scala-2.12/classes ... - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s -[info] Compiling 3 Scala sources to /home/riscvuser/chipyard/generators/ariane/target/scala-2.12/classes ... - - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s -[info] Compiling 23 Scala sources to /home/riscvuser/chipyard/generators/sifive-cache/target/scala-2.12/classes ... - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => sifive_blocks / Compile / previousCompile 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s -[info] Compiling 4 Scala sources to /home/riscvuser/chipyard/generators/nvdla/target/scala-2.12/classes ... - - - - - - - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => sifive_blocks / Compile / previousCompile 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 1s - | => treadle / Compile / compileIncremental 1s - - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - - | => testchipip / Compile / previousCompile 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - - | => testchipip / Compile / packageBin 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s -[info] Compiling 55 Scala sources to /home/riscvuser/chipyard/generators/boom/target/scala-2.12/classes ... - - - - - - | => testchipip / Compile / packageBin 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s -[info] Compiling 15 Scala sources to /home/riscvuser/chipyard/generators/icenet/target/scala-2.12/classes ... - - - - - - | => testchipip / Compile / packageBin 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 1s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / compileIncremental 0s - | => sifive_cache / Compile / compileIncremental 0s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 2s - | => treadle / Compile / compileIncremental 2s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 2s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 1s - | => ariane / Compile / compileIncremental 1s - | => hwacha / Compile / compileIncremental 1s - | => sifive_cache / Compile / compileIncremental 1s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 3s - | => treadle / Compile / compileIncremental 3s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 1s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 3s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 2s - | => ariane / Compile / compileIncremental 2s - | => hwacha / Compile / compileIncremental 2s - | => sifive_cache / Compile / compileIncremental 2s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 4s - | => treadle / Compile / compileIncremental 4s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 2s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 4s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 3s - | => sifive_cache / Compile / compileIncremental 3s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 3s - | => ariane / Compile / compileIncremental 3s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 5s - | => treadle / Compile / compileIncremental 5s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 3s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 5s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 4s - | => hwacha / Compile / compileIncremental 4s - | => sifive_cache / Compile / compileIncremental 4s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 4s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 6s - | => treadle / Compile / compileIncremental 6s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 4s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 6s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 5s - | => ariane / Compile / compileIncremental 5s - | => hwacha / Compile / compileIncremental 5s - | => sifive_cache / Compile / compileIncremental 5s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 7s - | => treadle / Compile / compileIncremental 7s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 5s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 7s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 6s - | => ariane / Compile / compileIncremental 6s - | => hwacha / Compile / compileIncremental 6s - | => sifive_cache / Compile / compileIncremental 6s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 8s - | => treadle / Compile / compileIncremental 8s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 6s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 8s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 7s - | => ariane / Compile / compileIncremental 7s - | => hwacha / Compile / compileIncremental 7s - | => sifive_cache / Compile / compileIncremental 7s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 9s - | => treadle / Compile / compileIncremental 9s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 7s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 9s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s -[info]  Compilation completed in 10.612s. - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 8s - | => ariane / Compile / compileIncremental 8s - | => hwacha / Compile / compileIncremental 8s - | => sifive_cache / Compile / compileIncremental 8s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 10s - | => treadle / Compile / compileIncremental 10s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 8s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 10s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 9s - | => ariane / Compile / compileIncremental 9s - | => hwacha / Compile / compileIncremental 9s - | => sifive_cache / Compile / compileIncremental 9s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 11s - | => treadle / Compile / compileIncremental 11s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 9s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 11s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 10s - | => ariane / Compile / compileIncremental 10s - | => hwacha / Compile / compileIncremental 10s - | => sifive_cache / Compile / compileIncremental 10s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 12s - | => treadle / Compile / compileIncremental 12s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:270:4: @deprecated now takes two arguments; see the scaladoc. - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn]  @deprecated(s"Use toBinaryString instead") - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 10s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 12s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ExternalModule.scala:41:4: @deprecated now takes two arguments; see the scaladoc. - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn]  @deprecated("Do not use. This was formerly used to add BlackBox name to io, just use un-prefixed input names") - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 11s - | => ariane / Compile / compileIncremental 11s - | => hwacha / Compile / compileIncremental 11s - | => sifive_cache / Compile / compileIncremental 11s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 13s - | => treadle / Compile / compileIncremental 13s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 11s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 12s - | => ariane / Compile / compileIncremental 12s - | => hwacha / Compile / compileIncremental 12s - | => sifive_cache / Compile / compileIncremental 12s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 14s - | => treadle / Compile / compileIncremental 14s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s -[warn] there was one feature warning; re-run with -feature for details - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s -[warn] one warning found - - - - - - | => icenet / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 12s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => iocell / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - | => iocell / Compile / compile 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - | => iocell / Compile / compile 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s -[warn] there were 62 feature warnings; re-run with -feature for details - - - - - - | => iocell / Compile / compile 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s -[warn] one warning found - - - - - - | => iocell / Compile / compile 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => nvdla / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => nvdla / Compile / compile 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 13s - | => hwacha / Compile / compileIncremental 13s - | => sifive_cache / Compile / compileIncremental 13s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 15s - | => treadle / Compile / compileIncremental 15s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 13s - | => boom / Compile / compileIncremental 13s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 14s - | => sifive_cache / Compile / compileIncremental 14s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 14s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 16s - | => treadle / Compile / compileIncremental 16s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 14s - | => boom / Compile / compileIncremental 14s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:17:5: match may not be exhaustive. - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  (this, that) match { - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  ^ - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:29:5: match may not be exhaustive. - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  (this, that) match { - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  ^ - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:43:5: match may not be exhaustive. - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  (this, that) match { - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  ^ - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:51:5: match may not be exhaustive. - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  (this, that) match { - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  ^ - - - - - - | => nvdla / Compile / packageBin 1s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 15s - | => hwacha / Compile / compileIncremental 15s - | => sifive_cache / Compile / compileIncremental 15s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Concrete.scala:67:5: match may not be exhaustive. - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn] It would fail on the following inputs: (Concrete(), _), (ConcreteSInt(_, _, _), _), (ConcreteUInt(_, _, _), _), (_, Concrete()), (_, ConcreteSInt(_, _, _)), (_, ConcreteUInt(_, _, _)), (_, _) - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  (this, that) match { - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s -[warn]  ^ - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 17s - | => treadle / Compile / compileIncremental 17s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 15s - | => boom / Compile / compileIncremental 15s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 2s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 16s - | => hwacha / Compile / compileIncremental 16s - | => sifive_cache / Compile / compileIncremental 16s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 18s - | => treadle / Compile / compileIncremental 18s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 16s - | => boom / Compile / compileIncremental 16s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - | => nvdla / Compile / packageBin 3s - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 17s - | => hwacha / Compile / compileIncremental 17s - | => sifive_cache / Compile / compileIncremental 17s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 19s - | => treadle / Compile / compileIncremental 19s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - - | => icenet / Compile / compileIncremental 17s - | => boom / Compile / compileIncremental 17s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/Directory.scala:113:20: method apply in object LFSR16 is deprecated (since 3.2): Use chisel3.util.random.LFSR(16) for a 16-bit LFSR - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  val victimLFSR = LFSR16(params.dirReg(ren))(InclusiveCacheParameters.lfsrBits-1, 0) - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:77:24: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  clientFn = { _ => TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:77:51: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  clientFn = { _ => TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:82:24: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  managerFn = { m => TLManagerPortParameters( - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/generators/sifive-cache/design/craft/inclusivecache/src/InclusiveCache.scala:83:42: method copy in class TLSlaveParameters is deprecated: Use v1copy instead of copy - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  managers = m.managers.map { m => m.copy( - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:18:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  extends firrtl.ComposableOptions { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:20:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  def vcdOutputFileName(optionsManager: ExecutionOptionsManager): String = { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:31:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:121:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] class InterpreterOptionsManager extends ExecutionOptionsManager("interpreter") with HasInterpreterSuite - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:123:35: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] trait HasInterpreterSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:123:64: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] trait HasInterpreterSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/Driver.scala:124:10: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  self : ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/InterpretiveTester.scala:24:29: class CommonOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView, LoggerOptionsView, or construct your own view of an AnnotationSeq - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  val commonOptions: firrtl.CommonOptions = optionsManager.commonOptions - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ReplConfig.scala:14:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  extends firrtl.ComposableOptions - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ReplConfig.scala:17:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:10:29: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  optionsManager: ExecutionOptionsManager with HasFirrtlOptions with HasInterpreterOptions): Circuit = { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:11:24: class LowFirrtlCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[LowFirrtlEmitter]) - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  val compiler = new LowFirrtlCompiler - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/ToLoFirrtl.scala:14:72: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  val compileResult = compiler.compileAndEmit(firrtl.CircuitState(c, ChirrtlForm, annotations)) - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/VcdReplayTester.scala:215:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  extends firrtl.ComposableOptions - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/VcdReplayTester.scala:218:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 18s - | => hwacha / Compile / compileIncremental 18s - | => sifive_cache / Compile / compileIncremental 18s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:14:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  extends firrtl.ComposableOptions { - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:18:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] /home/riscvuser/chipyard/tools/firrtl-interpreter/src/main/scala/firrtl_interpreter/vcd/VCDConfig.scala:55:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn] class VCDOptionsManager extends ExecutionOptionsManager("vcd") with HasVCDConfig - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 20s - | => treadle / Compile / compileIncremental 20s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => icenet / Compile / compileIncremental 18s - | => boom / Compile / compileIncremental 18s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s -[warn] there were 61 feature warnings; re-run with -feature for details - - - - - - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s -[warn] one warning found - - - - - - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => ariane / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / compile 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 19s - | => sifive_cache / Compile / compileIncremental 19s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 21s - | => treadle / Compile / compileIncremental 21s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 19s - | => boom / Compile / compileIncremental 19s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - | => ariane / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 20s - | => sifive_cache / Compile / compileIncremental 20s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 22s - | => treadle / Compile / compileIncremental 22s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 20s - | => boom / Compile / compileIncremental 20s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 21s - | => sifive_cache / Compile / compileIncremental 21s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 23s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 21s - | => boom / Compile / compileIncremental 21s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:43:18: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] ) extends firrtl.ComposableOptions { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:45:41: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  def vcdOutputFileName(optionsManager: ExecutionOptionsManager): String = { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:79:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:219:18: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  val tester = TreadleTester(firrtlInput, optionsManager) - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:234:37: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] class TreadleOptionsManager extends ExecutionOptionsManager("engine") with HasTreadleSuite - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:236:31: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] trait HasTreadleSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:236:60: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] trait HasTreadleSuite extends ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Driver.scala:237:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Regression.scala:85:18: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  val tester = TreadleTester(gcdFirrtl, manager) - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/Regression.scala:180:43: method apply in object TreadleTester is deprecated (since since ): Use TreadleTester(annotationSeq) instead - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  val tester = timer("tester assembly")(TreadleTester(input, optionsManager)) - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:267:40: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] case class TreadleFirrtlFormHint(form: CircuitForm) extends NoTargetAnnotation - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:275:29: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  case "low" => LowForm - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:276:29: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  case "high" => HighForm - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:277:29: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  case "chirrtl" => ChirrtlForm - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleOptions.scala:278:29: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  case "unknown" => UnknownForm - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 22s - | => sifive_cache / Compile / compileIncremental 22s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleTester.scala:48:73: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  def this(input: String, optionsManager: HasTreadleSuite, circuitForm: CircuitForm = ChirrtlForm) = { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/TreadleTester.scala:48:87: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  def this(input: String, optionsManager: HasTreadleSuite, circuitForm: CircuitForm = ChirrtlForm) = { - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 24s - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 22s - | => boom / Compile / compileIncremental 22s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 25s -[warn] 25 warnings found - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => firrtl_interpreter / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 25s - - - - - - | => firrtl_interpreter / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => firrtl_interpreter / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/repl/ReplConfig.scala:74:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => firrtl_interpreter / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  self: ExecutionOptionsManager => - - - - - - | => firrtl_interpreter / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/TreadleStage.scala:42:39: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def checkFormTransform(circuitForm: CircuitForm, annotations: AnnotationSeq): AnnotationSeq = { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/TreadleStage.scala:44:12: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  case ChirrtlForm => chirrtlPhases - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:45:43: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  val form = annotationSeq.collectFirst { case TreadleFirrtlFormHint(form) => form }.getOrElse(UnknownForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:45:98: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  val form = annotationSeq.collectFirst { case TreadleFirrtlFormHint(form) => form }.getOrElse(UnknownForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:65:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:65:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:66:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:66:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:81:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:81:41: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:83:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:83:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:86:23: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  if (state.form == ChirrtlForm || state.form == UnknownForm) { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:86:52: object UnknownForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  if (state.form == ChirrtlForm || state.form == UnknownForm) { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:88:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:88:48: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = ChirrtlForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:89:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:89:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:51: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:73: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:91:86: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def transforms: Seq[Transform] = getLoweringTransforms(ChirrtlForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:101:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:101:41: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:103:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:103:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:106:23: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  if (state.form == HighForm) { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:108:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:108:48: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:109:34: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:109:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:49: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:71: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:112:81: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  Seq(new ReplSeqMem, RemoveCHIRRTL) ++ getLoweringTransforms(HighForm, LowForm) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/stage/phases/PrepareAst.scala:136:11: class LowFirrtlOptimization in package firrtl is deprecated (since FIRRTL 1.3): Use 'new TransformManager(Forms.LowFormOptimized, Forms.LowForm)'. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  new LowFirrtlOptimization, - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:67:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:67:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:69:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/AugmentPrintf.scala:69:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:27:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:27:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:28:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/RemoveTempWires.scala:28:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:30:27: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] object ToLoFirrtl extends Compiler { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:5: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:27: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:33:40: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  getLoweringTransforms(ChirrtlForm, LowForm) ++ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:34:15: class LowFirrtlOptimization in package firrtl is deprecated (since FIRRTL 1.3): Use 'new TransformManager(Forms.LowFormOptimized, Forms.LowForm)'. This will be removed in 1.4. - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  Seq(new LowFirrtlOptimization, new BlackBoxSourceHelper, new FixupOps) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:38:29: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  optionsManager: ExecutionOptionsManager with HasFirrtlOptions with HasTreadleOptions): Circuit = { - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:41:63: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  val compileResult = compileAndEmit(firrtl.CircuitState(c, ChirrtlForm, annotations)) - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:51:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:51:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:52:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def outputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/utils/ToLoFirrtl.scala:52:33: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  def outputForm: CircuitForm = HighForm - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => firrtl_interpreter / Compile / packageBin 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s - - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/generators/icenet/src/main/scala/TCAM.scala:27:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:28:20: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  extends firrtl.ComposableOptions {} - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:31:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  self: ExecutionOptionsManager => - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] /home/riscvuser/chipyard/tools/treadle/src/main/scala/treadle/vcd/VCDConfig.scala:95:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn] class VCDOptionsManager extends ExecutionOptionsManager("vcd") with HasVCDConfig - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s -[warn]  ^ - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 23s - | => sifive_cache / Compile / compileIncremental 23s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => sifive_cache / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 25s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => sifive_cache / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => sifive_cache / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s -[warn] there were 650 feature warnings; re-run with -feature for details - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => sifive_cache / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s -[warn] 6 warnings found - - - - - - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => sifive_cache / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - | => sifive_cache / Compile / compile 0s - | => icenet / Compile / compileIncremental 23s - | => boom / Compile / compileIncremental 23s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - | => sifive_cache / Compile / compile 0s - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 24s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 26s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 24s - | => boom / Compile / compileIncremental 24s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 25s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 27s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 25s - | => boom / Compile / compileIncremental 25s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 26s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 28s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 26s - | => boom / Compile / compileIncremental 26s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 27s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 29s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 27s - | => boom / Compile / compileIncremental 27s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 28s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 30s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 28s - | => boom / Compile / compileIncremental 28s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s -[warn] there were 642 feature warnings; re-run with -feature for details - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s -[warn] two warnings found - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 29s - | => treadle / Compile / compileIncremental 31s - - - - - - | => icenet / Compile / compileIncremental 29s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 31s - - - - - - | => icenet / Compile / compile 0s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - | => icenet / Compile / compile 0s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - | => icenet / Compile / packageBin 0s - | => boom / Compile / compileIncremental 29s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 30s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 31s - | => treadle / Compile / compileIncremental 32s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 31s - | => treadle / Compile / compileIncremental 33s - - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 31s - | => treadle / Compile / compileIncremental 33s -[warn] 74 warnings found - - - - - - | => boom / Compile / compileIncremental 30s - | => hwacha / Compile / compileIncremental 31s - | => treadle / Compile / compileIncremental 33s - - - - - - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - | => treadle / Compile / compileIncremental 33s - - - - - - | => treadle / Compile / compile 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - - - - - - | => treadle / Compile / compile 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => treadle / Compile / compile 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - - - - - - | => treadle / Compile / packageBin 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s -[info] Compiling 24 Scala sources to /home/riscvuser/chipyard/tools/chisel-testers/target/scala-2.12/classes ... - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 31s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 31s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 32s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 32s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 33s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 33s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 34s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 34s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 35s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:59:87: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  harness.write(VerilatorCppHarnessGenerator.codeGen(dut, CircuitState(chirrtl, ChirrtlForm), waveform)) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:81:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  assert(chisel3.Driver.verilogToCpp( - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:87:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  assert(chisel3.Driver.cppToExe(dutName, dir).! == 0) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:106:34: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val circuit = chisel3.Driver.elaborate(dutGen) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:106:27: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val circuit = chisel3.Driver.elaborate(dutGen) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:112:54: method emit in object Driver is deprecated (since 3.2.2): Use (new chisel3.stage.ChiselStage).emitChirrtl - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val chirrtl = firrtl.Parser.parse(chisel3.Driver.emit(circuit)) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:112:47: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val chirrtl = firrtl.Parser.parse(chisel3.Driver.emit(circuit)) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:118:80: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  (new firrtl.LowFirrtlEmitter).emit(firrtl.CircuitState(chirrtl, firrtl.ChirrtlForm), writer) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:123:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselMain.scala:124:47: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  firrtl.CircuitState(chirrtl, firrtl.ChirrtlForm, annotations), - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:22:54: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def elaborate(t: => Module): Unit = chisel3.Driver.elaborate(() => t) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:22:47: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def elaborate(t: => Module): Unit = chisel3.Driver.elaborate(() => t) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/ChiselSpec.scala:29:63: trait PropertyChecks in package prop is deprecated: PropertyChecks has been moved from org.scalatest.prop to org.scalatestplus.scalacheck and renamed as ScalaCheckPropertyChecks. Please update your imports, as this deprecated type alias will be removed in a future version of ScalaTest. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] class ChiselPropSpec extends PropSpec with ChiselRunners with PropertyChecks { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:38:14: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  Logger.makeScope(optionsManager) { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:140:12: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  Logger.makeScope(optionsManager) { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:141:64: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:141:57: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:243:34: method elaborate in object Driver is deprecated (since 3.2.4): Use ChiselStage.elaborate or use a ChiselStage class. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val circuit = chisel3.Driver.elaborate(dutGen) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Driver.scala:243:27: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val circuit = chisel3.Driver.elaborate(dutGen) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:133:49: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val annos = Driver.filterAnnotations(firrtl.Driver.getAnnotations(optionsManager)) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:135:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:135:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/FirrtlTerpBackend.scala:139:16: object FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case FirrtlExecutionSuccess(_, compiledFirrtl) => - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:43:18: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case ActualDirection.Input => dut_inputs += port - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:44:18: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case ActualDirection.Output => dut_outputs += port - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:108:23: type ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def show_dir(dir: ActualDirection) = dir match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:109:12: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case ActualDirection.Input => "I" - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IOAccessor.scala:110:12: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case ActualDirection.Output => "O" - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:130:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:130:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:149:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/IVLBackend.scala:150:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/PeekPokeTesterUtils.scala:37:90: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  getDataNames(dut, separator) partition { case (e, _) => DataMirror.directionOf(e) == ActualDirection.Input } - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/PeekPokeTesterUtils.scala:101:74: method fileListName in object BlackBoxSourceHelper is deprecated (since 1.2): Renamed to defaultFileListName, as the file list name may now be changed with an annotation - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val list_file = new File(dir, firrtl.transforms.BlackBoxSourceHelper.fileListName) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:13:40: type EnumType in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  implicit object EnumPokeable extends Pokeable[EnumType] - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:18:21: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def unapply(elem: Element): Option[Element with IsRuntimePokeable] = elem match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:18:31: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def unapply(elem: Element): Option[Element with IsRuntimePokeable] = elem match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/Pokeable.scala:19:58: type Element in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case _: Bits | _: EnumType => Some(elem.asInstanceOf[Element with IsRuntimePokeable]) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:51:26: type ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  def dir(target: Data): ActualDirection = { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:53:26: value DataMirror in package core is deprecated (since 3.2): Use the version in chisel3.experimental._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case e: Element => DataMirror.directionOf(e) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:54:17: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  case _ => ActualDirection.Unspecified - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:59:29: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  require(dir(io_port) == ActualDirection.Input, s"poke error: $io_port not an input") - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/SteppedHWIOTester.scala:68:29: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  require(dir(io_port) == ActualDirection.Output, s"expect error: $io_port not an output") - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:33:11: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] ) extends ComposableOptions - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:41:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  self: ExecutionOptionsManager => - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:147:11: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  extends ExecutionOptionsManager("chisel-testers") - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TesterOptions.scala:151:10: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  with HasFirrtlOptions - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:17:67: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val treadleTester = new TreadleTester(firrtlIR, optionsManager, LowForm) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:130:49: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val annos = Driver.filterAnnotations(firrtl.Driver.getAnnotations(optionsManager)) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:138:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/TreadleBackend.scala:138:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:136:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:136:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:155:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VCSBackend.scala:156:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:220:20: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:220:13: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  chisel3.Driver.execute(optionsManager, dutGen) match { - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:229:42: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val externalAnnotations = firrtl.Driver.getAnnotations(optionsManager) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:245:41: class VerilogCompiler in package firrtl is deprecated (since FIRRTL 1.3): Use stage.{FirrtlStage, FirrtlMain} stage.transforms.Compiler(Dependency[VerilogEmitter]) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  val compileResult = (new firrtl.VerilogCompiler).compileAndEmit( - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:246:33: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  CircuitState(chirrtl, ChirrtlForm, annotations), - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:259:38: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  dut, CircuitState(chirrtl, ChirrtlForm, annotations), vcdFile.toString - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/tools/chisel-testers/src/main/scala/chisel3/iotesters/VerilatorBackend.scala:275:24: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  assert(chisel3.Driver.cppToExe(circuit.name, dir).! == 0) - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 35s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:75:83: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s -[warn]  pred_rf.write(waddr, Vec(((wdata & wmask) | (pred_rf(waddr).asUInt & ~wmask)).toBools)) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 36s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:122:44: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  val wmask = sram_warb.io.out.bits.mask.toBools - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:171:32: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ff_warb.io.out.bits.mask.toBools) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:189:62: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  (io.op.opl.global(i).bits.pred & s1_gpred.pred)(1,0).toBools) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/bank-rf.scala:199:61: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  (io.op.opl.local(i).bits.pred & s1_gpred.pred)(1,0).toBools) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:303:72: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  val deq_idivs_resp = (0 until nSlices).map { tagq.io.deq.bits.fusel.toBool && tagq.io.deq.bits.pred(_) } - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:304:72: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  val deq_fdivs_resp = (0 until nSlices).map { !tagq.io.deq.bits.fusel.toBool && tagq.io.deq.bits.pred(_) } - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:328:43: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  wraw.data := Mux(tagq.io.deq.bits.fusel.toBool, - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:340:62: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  io.idiv.ack.valid := fire_bwq(null, tagq.io.deq.bits.fusel.toBool) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:342:63: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  io.fdiv.ack.valid := fire_bwq(null, !tagq.io.deq.bits.fusel.toBool) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:350:64: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  icntr.io.inc.update := fire_bwq(null, tagq.io.deq.bits.fusel.toBool) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-fu.scala:356:65: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  fcntr.io.inc.update := fire_bwq(null, !tagq.io.deq.bits.fusel.toBool) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-mem.scala:256:29: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  val brqs_pred = pred.bits.toBools.grouped(nSlices).map( - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/dcc-mem.scala:588:39: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  val mask = rotate(Bool(), mask_base.toBools) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 36s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/rocc-unit.scala:373:50: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val vru_switch_on = io.rocc.cmd.bits.rs1(63).toBool - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/smu.scala:58:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaSMU", sourceId = IdRange(0, p(HwachaNSMUEntries))))))) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/smu.scala:58:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaSMU", sourceId = IdRange(0, p(HwachaNSMUEntries))))))) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vector-unit.scala:11:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vector-unit.scala:12:9: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  Seq(TLClientParameters(name = "HwachaVMU", sourceId = IdRange(0, p(HwachaNVMTEntries))))))) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vfu-rfirst.scala:38:72: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val pred = PriorityEncoderOH((io.req.bits.active & io.req.bits.pred).toBools) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vfu-rfirst.scala:115:11: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  (m._1.toBools zip io.lane.map(_.bits.first)) map { case (v, f) => dgate(v, f) } reduce(_ | _) - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:513:12: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val f3 = withReset(reset.toBool || f3_clear) { - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:518:21: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val f3_bpd_resp = withReset(reset.toBool || f3_clear) { - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/frontend.scala:854:12: value withReset in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val f4 = withReset(reset.toBool || f4_clear) { - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:47:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:47:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/ifu/icache.scala:177:37: method apply in object LFSR16 is deprecated (since 3.2): Use chisel3.util.random.LFSR(16) for a 16-bit LFSR - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val repl_way = if (isDM) 0.U else LFSR16(refill_fire)(log2Ceil(nWays)-1,0) - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:379:83: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  protected def cacheClientParameters = cfg.scratch.map(x => Seq()).getOrElse(Seq(TLClientParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:384:44: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  protected def mmioClientParameters = Seq(TLClientParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/lsu/dcache.scala:389:31: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val node = TLClientNode(Seq(TLClientPortParameters( - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vru.scala:402:37: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaVRU", sourceId = IdRange(0,5)))))) - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn] /home/riscvuser/chipyard/generators/hwacha/src/main/scala/vru.scala:402:64: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  val masterNode = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters(name = "HwachaVRU", sourceId = IdRange(0,5)))))) - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 37s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/util/util.scala:393:31: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn]  def apply[T <: chisel3.core.Data](in: Vec[Vec[T]]) = { - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn] /home/riscvuser/chipyard/generators/boom/src/main/scala/util/util.scala:420:35: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn] class Compactor[T <: chisel3.core.Data](n: Int, k: Int, gen: T) extends Module - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s -[warn]  ^ - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 37s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s -[warn] there were 11 feature warnings; re-run with -feature for details - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s -[warn] 63 warnings found - - - - - - | => chisel_testers / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / compile 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => chisel_testers / Compile / packageBin 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s -[info] Compiling 34 Scala sources to /home/riscvuser/chipyard/generators/gemmini/target/scala-2.12/classes ... - - - - - - | => chisel_testers / Compile / packageBin 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s -[info] Compiling 43 Scala sources to /home/riscvuser/chipyard/tools/dsptools/src/target/scala-2.12/classes ... - - - - - - | => chisel_testers / Compile / packageBin 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s -[info] Compiling 10 Scala sources to /home/riscvuser/chipyard/generators/sha3/target/scala-2.12/classes ... - - - - - - | => chisel_testers / Compile / packageBin 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 38s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 38s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 0s - | => sha3 / Compile / compileIncremental 0s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 39s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 39s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 1s - | => sha3 / Compile / compileIncremental 1s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 40s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 40s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:95:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(buffer_wen) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:97:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(buffer_waddr) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:99:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(buffer_wdata) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:101:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(buffer_rdata) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:161:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(words_filled) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/ctrl.scala:164:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(byte_offset) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/dmem.scala:17:31: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  val node = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters("SHA3"))))) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/dmem.scala:17:58: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  val node = TLClientNode(Seq(TLClientPortParameters(Seq(TLClientParameters("SHA3"))))) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn] /home/riscvuser/chipyard/generators/sha3/src/main/scala/iota.scala:27:3: object debug in package Chisel is deprecated (since chisel3): debug doesn't do anything in Chisel3 as no pruning happens in the frontend - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  debug(const) - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 2s - | => sha3 / Compile / compileIncremental 2s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 41s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 41s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 3s - | => sha3 / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 42s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 42s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s -[warn] there were 217 feature warnings; re-run with -feature for details - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s -[warn] 10 warnings found - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => sha3 / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - | => sha3 / Compile / packageBin 0s - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - - | => dsptools / Compile / compileIncremental 4s - | => gemmini / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 43s - - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 44s - - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 44s - - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 43s - | => hwacha / Compile / compileIncremental 44s - - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:70:19: method makeScope in object Logger is deprecated (since 1.2): Use makeScope(opts: FirrtlOptions) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  logger.Logger.makeScope(optionsManager) { - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:71:64: method execute in object Driver is deprecated (since 3.2.2): Use chisel3.stage.ChiselStage.execute. This will be removed in 3.4. - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:71:57: object Driver in package chisel3 is deprecated (since 3.2.4): Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4. - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val chiselResult: ChiselExecutionResult = chisel3.Driver.execute(optionsManager, dutGenerator) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/Driver.scala:90:10: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  with HasFirrtlOptions - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/algebra_types/helpers/Sign.scala:51:24: method litArg in class Data is deprecated (since 3.2): litArg is deprecated, use litOption or litTo*Option - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val zeroLit = zero.litArg.map{_.num != BigInt(0)} - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/algebra_types/helpers/Sign.scala:52:23: method litArg in class Data is deprecated (since 3.2): litArg is deprecated, use litOption or litTo*Option - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val negLit = neg.litArg.map{_.num != BigInt(0)} - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/numbers/blackbox_compatibility/DspRealVerilatorBB.scala:12:3: method setResource in trait HasBlackBoxResource is deprecated (since 3.2): Use addResource instead - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  setResource("/" + this.getClass.getSimpleName + ".v") - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/DspTesterOptions.scala:24:38: trait ComposableOptions in package firrtl is deprecated (since 1.2): Use firrtl.options.HasScoptOptions and/or library/transform registration - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  initClkPeriods: Int = 5) extends ComposableOptions { - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/DspTesterOptions.scala:38:9: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  self: ExecutionOptionsManager => - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/dsptools/tester/VerilogTbDump.scala:33:38: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  DataMirror.directionOf(dat) == ActualDirection.Input - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:18:22: type Data in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] class gainOffCorr[T<:Data:Ring](genIn: => T,genGain: => T,genOff: => T,genOut: => T, numLanes: Int) extends Module { - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:20:24: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val inputVal = Input(Vec(numLanes, genIn)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:20:30: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val inputVal = Input(Vec(numLanes, genIn)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:21:24: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val gainCorr = Input(Vec(numLanes, genGain)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:21:30: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val gainCorr = Input(Vec(numLanes, genGain)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:22:25: value Input in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val offsetCorr = Input(Vec(numLanes, genOff)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:22:31: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val offsetCorr = Input(Vec(numLanes, genOff)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:23:24: value Output in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val outputVal = Output(Vec(numLanes, genOut)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn] /home/riscvuser/chipyard/tools/dsptools/src/main/scala/examples/gainOffCorr.scala:23:31: value Vec in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  val outputVal = Output(Vec(numLanes, genOut)) - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - | => dsptools / Compile / compileIncremental 5s - | => gemmini / Compile / compileIncremental 5s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 44s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 44s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 6s - | => gemmini / Compile / compileIncremental 6s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 45s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 45s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Controller.scala:50:54: method do_toBool in class Bits is deprecated (since 3.2): Use asBool instead - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  (if (garbage_bit.getWidth > 0) garbage_bit.toBool() else true.B) - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/ROB.scala:164:107: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  Cat(is_st_and_must_wait_for_prior_ex_config) | Cat(is_ex_config_and_must_wait_for_prior_st)).toBools().reverse - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Util.scala:51:24: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  val exp = u.toBools().zipWithIndex.map { case (b, i) => - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn] /home/riscvuser/chipyard/generators/gemmini/src/main/scala/gemmini/Util.scala:62:24: method do_toBools in class Bits is deprecated (since 3.2): Use asBools instead - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  val exp = u.toBools().zipWithIndex.map { case (b, i) => - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s -[warn]  ^ - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 7s - | => gemmini / Compile / compileIncremental 7s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 46s - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 46s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s -[warn] there were 31 feature warnings; re-run with -feature for details - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s -[warn] 20 warnings found - - - - - - | => dsptools / Compile / compileIncremental 8s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compile 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / compile 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => dsptools / Compile / packageBin 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s -[info] Compiling 33 Scala sources to /home/riscvuser/chipyard/tools/dsptools/rocket/src/target/scala-2.12/classes ... - - - - - - | => dsptools / Compile / packageBin 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 8s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 47s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 47s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 0s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 9s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 48s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 48s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 1s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:46: imported `AXI4StreamMasterPortParameters' is permanently hidden by definition of object AXI4StreamMasterPortParameters in package axi4stream - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:78: imported `AXI4StreamNexusNode' is permanently hidden by definition of object AXI4StreamNexusNode in package axi4stream - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/SimpleSplitter.scala:4:99: imported `AXI4StreamSlavePortParameters' is permanently hidden by definition of object AXI4StreamSlavePortParameters in package axi4stream - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn] import freechips.rocketchip.amba.axi4stream.{AXI4StreamMasterPortParameters, AXI4StreamNexusNode, AXI4StreamSlavePortParameters} - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 10s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 49s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 49s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 2s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 11s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 50s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 50s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/amba/axi4stream/MMAPFIFO.scala:1:1:  - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] Found names but no class, trait or object is defined in the compilation unit. - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] The incremental compiler cannot record the dependency information in such case. - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] Some errors like unused import referring to a non-existent class might not be reported. - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn]   - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] package freechips.rocketchip.amba.axi4stream - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] there were 1208 feature warnings; re-run with -feature for details - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s -[warn] 5 warnings found - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => rocket-dsptools / Compile / compileIncremental 3s - | => gemmini / Compile / compileIncremental 12s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => gemmini / Compile / compile 0s - | => rocket-dsptools / Compile / compileIncremental 3s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - | => gemmini / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 51s - - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/dspblocks/DspBlock.scala:117:24: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  BundleBridgeToTL(TLClientPortParameters(Seq(TLClientParameters("bundleBridgeToTL")))) := - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/dspblocks/DspBlock.scala:117:51: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  BundleBridgeToTL(TLClientPortParameters(Seq(TLClientParameters("bundleBridgeToTL")))) := - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:20:30: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  new TLToBundleBridgeNode(TLManagerPortParameters(Seq(managerParams), beatBytes)) - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:38:11: method apply in object TLManagerPortParameters is deprecated: Use TLSlavePortParameters.v1 instead of TLManagerPortParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  apply(TLManagerPortParameters(Seq(managerParams), beatBytes)) - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:52:26: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  BundleBridgeToTLNode(TLClientPortParameters(Seq(clientParams), beatBytes)) - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn] /home/riscvuser/chipyard/tools/dsptools/rocket/src/main/scala/tl/Node.scala:71:11: method apply in object TLClientPortParameters is deprecated: Use TLMasterPortParameters.v1 instead of TLClientPortParameters - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  apply(TLClientPortParameters(Seq(clientParams), beatBytes)) - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s -[warn]  ^ - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 51s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s -[warn] there were 2643 feature warnings; re-run with -feature for details - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s -[warn] 12 warnings found - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s -[warn] there were 3031 feature warnings; re-run with -feature for details - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s -[warn] 24 warnings found - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => rocket-dsptools / Compile / compileIncremental 4s - | => boom / Compile / compileIncremental 52s - | => hwacha / Compile / compileIncremental 52s - - - - - - | => hwacha / Compile / compile 0s - | => boom / Compile / compile 0s - | => rocket-dsptools / Compile / compileIncremental 4s - - - - - - | => hwacha / Compile / compile 0s - | => boom / Compile / compile 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - | => boom / Compile / packageBin / mappings 0s - | => hwacha / Compile / compile 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - | => boom / Compile / packageBin 0s - | => hwacha / Compile / compile 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - | => hwacha / Compile / packageBin 0s - | => boom / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 5s -[info] Compiling 3 Scala sources to /home/riscvuser/chipyard/generators/tracegen/target/scala-2.12/classes ... - - - - - - | => hwacha / Compile / packageBin 0s - | => boom / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - | => tracegen / Compile / compileIncremental 0s - | => hwacha / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - | => tracegen / Compile / compileIncremental 0s - | => hwacha / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 5s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s -[warn] there were 50 feature warnings; re-run with -feature for details - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s -[warn] 11 warnings found - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s -[warn] there were 101 feature warnings; re-run with -feature for details - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s -[warn] one warning found - - - - - - | => tracegen / Compile / compileIncremental 1s - | => rocket-dsptools / Compile / compileIncremental 6s - - - - - - - | => rocket-dsptools / Compile / compile 0s - - - - - - - | => rocket-dsptools / Compile / compile 0s - - - - - - - | => chipyard / Compile / compileIncremental 0s -[info] Compiling 29 Scala sources to /home/riscvuser/chipyard/generators/chipyard/target/scala-2.12/classes ... - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 1s - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/IOBinders.scala:402:13: match may not be exhaustive. - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] It would fail on the following input: None - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  system.traceIO match { case Some(t) => t.traces.map(tileTrace => SimDromajoBridge(tileTrace)(system.p)) } - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:14:38: method apply in object TLClientParameters is deprecated: Use TLMasterParameters.v1 instead of TLClientParameters - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  val node = TLHelper.makeClientNode(TLClientParameters( - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:32:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:86:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn] /home/riscvuser/chipyard/generators/chipyard/src/main/scala/example/NodeTypes.scala:95:50: method apply in object TLManagerParameters is deprecated: Use TLSlaveParameters.v1 instead of TLManagerParameters - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  val node = TLHelper.makeManagerNode(beatBytes, TLManagerParameters( - - - - - - | => chipyard / Compile / compileIncremental 2s -[warn]  ^ - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 2s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 3s - - - - - - | => chipyard / Compile / compileIncremental 4s - - - - - - | => chipyard / Compile / compileIncremental 4s -[warn] there were 8 feature warnings; re-run with -feature for details - - - - - - | => chipyard / Compile / compileIncremental 4s -[warn] 6 warnings found - - - - - - | => chipyard / Compile / compileIncremental 4s - - - - - - | => chipyard / Compile / compileIncremental 4s - - - - - - | => chipyard / Compile / compile 0s - - - - - - | => chipyard / Compile / packageBin 0s - - - - - - | => chipyard / Compile / bgRunMain 0s - - - - - - | => chipyard / Compile / bgRunMain 0s - - - - - - | => chipyard / Compile / bgRunMain 0s - - - - - - | => chipyard / Compile / bgRunMain 0s - - - - - - | => chipyard / Compile / bgRunMain 0s - - - - - - | => chipyard / Compile / bgRunMain 0s -[info] running chipyard.Generator --target-dir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig --name chipyard.TestHarness.RocketConfig --top-module chipyard.TestHarness --legacy-configs chipyard.RocketConfig - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 0s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s -[info] [0.001] Elaborating design... - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 1s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 2s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 3s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 4s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 5s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 6s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 7s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s -L2 InclusiveCache Client Map: - 0 <= serial - 1 <= Core 0 DCache - 2 <= Core 0 ICache - - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 8s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 9s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s -Interrupt map (2 harts 1 interrupts): - [1, 1] => uart_0 - - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 10s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 11s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 12s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 13s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 14s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 15s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 16s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s - - - - - - | => chipyard / Compile / runMain 17s -: Warning (simple_bus_reg): Node /soc/subsystem_pbus_clock missing or empty reg/ranges property - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s -/dts-v1/; - -/ { - #address-cells = <1>; - #size-cells = <1>; - compatible = "freechips,rocketchip-unknown-dev"; - model = "freechips,rocketchip-unknown"; - L18: aliases { - serial0 = &L14; - }; - L17: cpus { - #address-cells = <1>; - #size-cells = <0>; - L9: cpu@0 { - clock-frequency = <0>; - compatible = "sifive,rocket0", "riscv"; - d-cache-block-size = <64>; - d-cache-sets = <64>; - d-cache-size = <16384>; - d-tlb-sets = <1>; - d-tlb-size = <32>; - device_type = "cpu"; - hardware-exec-breakpoint-count = <1>; - i-cache-block-size = <64>; - i-cache-sets = <64>; - i-cache-size = <16384>; - i-tlb-sets = <1>; - i-tlb-size = <32>; - mmu-type = "riscv,sv39"; - next-level-cache = <&L2>; - reg = <0x0>; - riscv,isa = "rv64imafdc"; - riscv,pmpregions = <8>; - status = "okay"; - timebase-frequency = <1000000>; - tlb-split; - L7: interrupt-controller { - #interrupt-cells = <1>; - compatible = "riscv,cpu-intc"; - interrupt-controller; - }; - }; - }; - L11: memory@80000000 { - device_type = "memory"; - reg = <0x80000000 0x10000000>; - }; - L16: soc { - #address-cells = <1>; - #size-cells = <1>; - compatible = "freechips,rocketchip-unknown-soc", "simple-bus"; - ranges; - L2: cache-controller@2010000 { - cache-block-size = <64>; - cache-level = <2>; - cache-sets = <1024>; - cache-size = <524288>; - cache-unified; - compatible = "sifive,inclusivecache0", "cache"; - next-level-cache = <&L11>; - reg = <0x2010000 0x1000>; - reg-names = "control"; - sifive,mshr-count = <7>; - }; - L4: clint@2000000 { - compatible = "riscv,clint0"; - interrupts-extended = <&L7 3 &L7 7>; - reg = <0x2000000 0x10000>; - reg-names = "control"; - }; - L5: debug-controller@0 { - compatible = "sifive,debug-013", "riscv,debug-013"; - debug-attach = "dmi"; - interrupts-extended = <&L7 65535>; - reg = <0x0 0x1000>; - reg-names = "control"; - }; - L1: error-device@3000 { - compatible = "sifive,error0"; - reg = <0x3000 0x1000>; - }; - L3: interrupt-controller@c000000 { - #interrupt-cells = <1>; - compatible = "riscv,plic0"; - interrupt-controller; - interrupts-extended = <&L7 11 &L7 9>; - reg = <0xc000000 0x4000000>; - reg-names = "control"; - riscv,max-priority = <1>; - riscv,ndev = <1>; - }; - L13: rom@10000 { - compatible = "sifive,rom0"; - reg = <0x10000 0x10000>; - reg-names = "mem"; - }; - L14: serial@54000000 { - clocks = <&L0>; - compatible = "sifive,uart0"; - interrupt-parent = <&L3>; - interrupts = <1>; - reg = <0x54000000 0x1000>; - reg-names = "control"; - }; - L0: subsystem_pbus_clock { - #clock-cells = <0>; - clock-frequency = <100000000>; - clock-output-names = "subsystem_pbus_clock"; - compatible = "fixed-clock"; - }; - }; -}; - -Generated Address Map - 0 - 1000 ARWX debug-controller@0 - 3000 - 4000 ARWX error-device@3000 - 10000 - 20000 R X rom@10000 - 2000000 - 2010000 ARW clint@2000000 - 2010000 - 2011000 ARW cache-controller@2010000 - c000000 - 10000000 ARW interrupt-controller@c000000 - 54000000 - 54001000 ARW serial@54000000 - 80000000 - 90000000 ARWXC memory@80000000 - - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s -[deprecated] Bits.scala:373 (29 calls): do_toBool is deprecated: "Use asBool instead" -[warn] There were 1 deprecated function(s) used. These may stop compiling in a future release - you are encouraged to fix these issues. -[warn] Line numbers for deprecations reported by Chisel may be inaccurate; enable scalac compiler deprecation warnings via either of the following methods: -[warn] In the sbt interactive console, enter: -[warn] set scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation") -[warn] or, in your build.sbt, add the line: -[warn] scalacOptions := Seq("-unchecked", "-deprecation") -[info] [17.408] Done elaborating. - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 18s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 19s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 20s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 21s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 22s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 23s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 24s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 25s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 26s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 27s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 28s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 29s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 30s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 31s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 32s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 33s - - - - - - | => chipyard / Compile / runMain 34s - - - - - - | => chipyard / Compile / runMain 34s - - - - - - | => chipyard / Compile / runMain 34s - - - - - - -[success] Total time: 103 s (01:43), completed Dec 23, 2020, 3:46:47 AM -cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project tapeout" "runMain barstools.tapeout.transforms.GenerateTopAndHarness -o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v -tho /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v -i /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.fir --syn-top ChipTop --harness-top TestHarness -faf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.anno.json -tsaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.anno.json -tdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f -tsf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.fir -thaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.anno.json -hdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f -thf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.fir --infer-rw --repl-seq-mem -c:TestHarness:-o:/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -thconf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig" && touch /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -[info] Loading settings for project chipyard-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/project - - - - - - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / Compile / previousCompile 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project chipyardRoot from build.sbt ... -[info] Loading settings for project barstoolsMacros from build.sbt ... -[info] Loading settings for project mdf from build.sbt ... -[info] Loading settings for project gemmini from build.sbt ... -[info] Loading settings for project ariane from build.sbt ... -[info] Loading settings for project boom from build.sbt ... -[info] Loading settings for project hwacha from build.sbt ... -[info] Loading settings for project icenet from build.sbt ... -[info] Loading settings for project testchipip from build.sbt ... -[info] Loading settings for project rocketConfig from build.sbt ... -[info] Loading settings for project hardfloat from build.sbt ... -[info] Loading settings for project chisel_testers from build.sbt ... -[info] Loading settings for project treadle from build.sbt ... -[info] Loading settings for project firrtl_interpreter from build.sbt ... -[info] Loading settings for project chisel from build.sbt ... -[info] Loading settings for project sim-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project - - - - - - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / Compile / compileIncSetup 0s - - - - - - -[info] Loading settings for project firesim from build.sbt ... -[info] Loading settings for project midas from build.sbt ... -[info] Loading settings for project targetutils from build.sbt ... -[info] Resolving key references (32007 settings) ... -[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[info] Set current project to tapeout (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - - - - - - - - - - - | => chisel / Compile / unmanagedClasspath 0s - | => sha3 / dependencyPositions 0s - | => tracegen / dependencyPositions 0s - | => sifive_cache / dependencyPositions 0s - | => boom / dependencyPositions 0s - | => utilities / dependencyPositions 0s - | => rocket-dsptools / dependencyPositions 0s - | => chipyard / dependencyPositions 0s - | => hwacha / dependencyPositions 0s - | => gemmini / dependencyPositions 0s - | => treadle / dependencyPositions 0s - | => firrtl_interpreter / dependencyPositions 0s - | => chisel_testers / dependencyPositions 0s - | => iocell / dependencyPositions 0s - - - - - - - | => icenet / csrFallbackDependencies 0s - | => sha3 / csrFallbackDependencies 0s - | => tracegen / csrFallbackDependencies 0s - | => rocket-dsptools / csrFallbackDependencies 0s - | => sifive_cache / csrFallbackDependencies 0s - | => core / csrProject 0s - | => gemmini / csrFallbackDependencies 0s - | => tapeout / csrFallbackDependencies 0s - | => core / moduleSettings 0s - | => chisel / csrProject 0s - | => treadle / update 0s - | => rocketConfig / update 0s - | => tapeout / Compile / copyResources 0s - - - - - - - - - - - - - - - - - - - | => core / projectDescriptors 0s - - - - - - - - - - - - - - - - | => rocketchip / projectDescriptors 0s - | => hardfloat / update 0s - | => chisel_testers / update 0s - | => iocell / update 0s - - - - - - - - - - - - | => rocket-dsptools / update 0s - | => ariane / update 0s - | => sha3 / update 0s - | => sifive_cache / update 0s - | => hwacha / update 0s - | => nvdla / update 0s - | => sifive_blocks / update 0s - | => chipyard / projectDescriptors 0s - - - - - - - - - - - - - - - - | => utilities / update 0s - | => boom / update 0s - | => icenet / update 0s - | => gemmini / update 0s - - - - - - - - - - - - - - - - - - - | => chipyard / update 0s - - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - - | => tapeout / update 0s -[info] Updating  - - - - - - - - - - - - - - - - - - | => tapeout / update 0s -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 0.0% [ ] 0 B (0 B / s) - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - | => tapeout / update 0s -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 100.0% [##########] 3.8 KiB (14.5 KiB / s) - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - - | => tapeout / update 0s -[info] Resolved dependencies - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - | => tapeout / update 0s - - - - - - - - - - - - - - - - - | => tapeout / update 1s -[info] Fetching artifacts of  - - - - - - - - - - - - - - - - | => tapeout / update 1s -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 0.0% [ ] 0 B (0 B / s) -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 28.2% [## ] 53.6 KiB (1.7 MiB / s) -https://repo1.maven.org/maven2/io/github/daviddenton/handlebars-? - 100.0% [##########] 189.7 KiB (3.6 MiB / s) -[info] Fetched artifacts of  - - - - - - - - - - - - - - - | => tapeout / update 1s - - - - - - - - - - - - - - - | => tapeout / update 1s - - - - - - - - - - - - - - - | => tapeout / update 1s - - - - - - - - - - - - - - - | => tapeout / update 1s - - - - - - - - - - - - - - - - - - - - - | => utilities / Compile / managedResources 0s - | => utilities / Compile / scalacOptions 0s - | => targetutils / Compile / scalacOptions 0s - | => treadle / Compile / scalacOptions 0s - | => hwacha / Compile / scalacOptions 0s - | => ariane / Compile / scalacOptions 0s - | => boom / Compile / scalacOptions 0s - | => testchipip / Compile / scalacOptions 0s - | => dsptools / Compile / scalacOptions 0s - | => rocketMacros / Compile / scalacOptions 0s - | => sifive_blocks / Compile / scalacOptions 0s - | => rocket-dsptools / Compile / scalacOptions 0s - | => core / Compile / scalacOptions 0s - | => hardfloat / Compile / scalacOptions 0s - | => sha3 / Compile / scalacOptions 0s - | => firrtl_interpreter / Compile / scalacOptions 0s - | => tracegen / Compile / scalacOptions 0s - | => macros / Compile / scalacOptions 0s - | => icenet / Compile / scalacOptions 0s - | => chisel / Compile / buildInfo 0s - | => ariane / Compile / unmanagedResources / inputFileStamps 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - | => treadle / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => ariane / Compile / unmanagedResources / inputFileStamps 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / copyResources 0s - | => treadle / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / copyResources 0s - | => treadle / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - | => firrtl_interpreter / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => ariane / Compile / copyResources 0s - | => treadle / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - | => macros / Compile / packageBin / packageOptions 0s - | => core / Compile / externalHooks 0s - | => treadle / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - - - - - | => macros / Compile / packageBin / packageOptions 0s - | => core / Compile / externalHooks 0s - | => treadle / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - - - - | => macros / Compile / packageBin / packageOptions 0s - | => core / Compile / externalHooks 0s - | => treadle / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - - - - | => core / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - - - - - | => chisel / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - - - - - - - - | => chisel / Compile / previousCompile 0s - | => nvdla / Compile / unmanagedResources / inputFileStamps 0s - - - - - - - - - - - - - - - - - - - - | => iocell / Compile / compileIncremental 0s - | => targetutils / Compile / compileIncremental 0s - | => chisel / Compile / packageBin 0s - | => chisel_testers / Compile / previousCompile 0s - | => nvdla / Compile / copyResources 0s - - - - - - - - - - - - - - - - - - - - - - | => dsptools / Compile / previousCompile 0s - | => hardfloat / Compile / compileIncremental 0s - | => nvdla / Compile / copyResources 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - - - - - - - - - - - - - - - - - | => sha3 / Compile / compileIncremental 0s - | => nvdla / Compile / compileIncremental 0s - | => ariane / Compile / previousCompile 0s - | => hwacha / Compile / previousCompile 0s - | => sifive_blocks / Compile / previousCompile 0s - | => rocket-dsptools / Compile / previousCompile 0s - | => sifive_cache / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - | => sifive_blocks / Compile / compileIncremental 0s - | => nvdla / Compile / packageBin 0s - | => rocket-dsptools / Compile / compileIncremental 0s - | => ariane / Compile / compileIncremental 0s - | => hwacha / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - | => hwacha / Compile / packageBin 0s - | => testchipip / Compile / previousCompile 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - | => testchipip / Compile / mainClass 0s - | => testchipip / Compile / packageBin / mappings 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - | => boom / Compile / previousCompile 0s - | => gemmini / Compile / previousCompile 0s - | => icenet / Compile / previousCompile 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - | => boom / Compile / previousCompile 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - | => boom / Compile / compileIncremental 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - | => tracegen / Compile / compileIncremental 0s - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / packageBin 0s - - - - - - - - - - - - - - - - - - - - - - - | => ariane / Compile / packageBin 1s - - - - - - - - - - - - - - - - - - - - - - - | => chipyard / Compile / previousCompile 0s - - - - - - - - - - - - - - - - - - - - - - - | => chipyard / Compile / compileIncremental 0s -[info] Compiling 27 Scala sources to /home/riscvuser/chipyard/tools/barstools/tapeout/target/scala-2.12/classes ... - - - - - - - - - - - - - - - - - - - - - - | => chipyard / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:97:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  def getAnno = Annotation(target, classOf[ClkSrcTransform], anno.serialize) - - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:113:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  def getAnno = Annotation(target, classOf[ClkSrcTransform], anno.serialize) - - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:136:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  case Annotation(f, t, s) if t == classOf[ClkSrcTransform] => f match { - - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:232:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  case chisel3.core.ActualDirection.Input => - - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkAnnotations.scala:236:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  case chisel3.core.ActualDirection.Output => - - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:12:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:12:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:13:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:13:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:19:43: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  val collectedAnnos = HasClkAnnotation(getMyAnnotations(state)) - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.clkgen/ClkSrcTransform.scala:22:48: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  case None => CircuitState(state.circuit, LowForm) - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:16:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:16:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:17:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:17:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/AddIOPadsTransform.scala:23:43: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  val collectedAnnos = HasPadAnnotation(getMyAnnotations(state)) - - - - - - | => tapeout / Compile / compileIncremental 5s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 5s - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/ChiselTopModule.scala:30:25: value ActualDirection in package core is deprecated (since 3.2): Use the version in chisel3._ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case chisel3.core.ActualDirection.Input => - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:39:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def getAnno = Annotation(target, classOf[AddIOPadsTransform], anno.serialize) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:69:17: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def getAnno = Annotation(target, classOf[AddIOPadsTransform], anno.serialize) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/.pads/PadAnnotations.scala:99:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case Annotation(f, t, s) if t == classOf[AddIOPadsTransform] => f match { - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AddSuffixToModuleNames.scala:26:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AddSuffixToModuleNames.scala:27:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AvoidExtModuleCollisions.scala:12:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/AvoidExtModuleCollisions.scala:13:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ConvertToExtModPass.scala:19:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ConvertToExtModPass.scala:20:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/EnumerateModules.scala:24:19: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/EnumerateModules.scala:25:20: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:16:33: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] trait HasTapeoutOptions { self: ExecutionOptionsManager with HasFirrtlOptions => - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:150:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  val optionsManager = new ExecutionOptionsManager("tapeout") with HasFirrtlOptions with HasTapeoutOptions - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:150:70: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  val optionsManager = new ExecutionOptionsManager("tapeout") with HasFirrtlOptions with HasTapeoutOptions - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:187:27: class FirrtlExecutionSuccess in package firrtl is deprecated (since 1.2): Use FirrtlStage and examine the output AnnotationSeq directly - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  protected def dump(res: FirrtlExecutionSuccess, firFile: Option[String], annoFile: Option[String]): Unit = { - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:209:25: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  val result = firrtl.Driver.execute(optionsManager) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/Generate.scala:245:32: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  val harnessResult = firrtl.Driver.execute(optionsManager) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ReParentCircuit.scala:16:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ReParentCircuit.scala:17:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/RemoveUnusedModules.scala:14:19: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/RemoveUnusedModules.scala:15:20: object HighForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm = HighForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:13:47: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def apply(target: ModuleName): Annotation = Annotation(target, classOf[ResetInverterTransform], "invert") - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:15:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case Annotation(m, t, "invert") if t == classOf[ResetInverterTransform] => Some(m) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:46:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:46:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:47:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:47:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/ResetInverter.scala:50:5: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  getMyAnnotations(state) match { - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:13:47: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def apply(target: ModuleName): Annotation = Annotation(target, classOf[RetimeTransform], "retime") - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:15:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case Annotation(m, t, "retime") if t == classOf[RetimeTransform] => Some(m) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:21:27: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:21:41: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:22:28: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:22:42: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  override def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/retime/Retime.scala:25:5: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  getMyAnnotations(state) match { - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:20:12: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case Annotation(f, t, s) if t == classOf[firrtl.transforms.BlackBoxTargetDirAnno] => - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:37:5: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  Annotation(CircuitName("All"), classOf[TechnologyLocation], dir) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:41:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:41:32: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:42:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:42:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/tapeout/src/main/scala/transforms/utils/FileUtils.scala:47:12: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  case Annotation(f, t, s) if t == classOf[TechnologyLocation] => Some(s) - - - - - - | => tapeout / Compile / compileIncremental 6s -[warn]  ^ - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 6s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 7s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 8s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 9s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s -[warn] there were 8 feature warnings; re-run with -feature for details - - - - - - | => tapeout / Compile / compileIncremental 10s -[warn] 60 warnings found - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compileIncremental 10s - - - - - - | => tapeout / Compile / compile 0s - - - - - - | => tapeout / Compile / compile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => tapeout / Compile / compile 0s - - - - - - | => tapeout / Compile / packageBin 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s - - - - - - | => tapeout / Compile / bgRunMain 0s -[info] running barstools.tapeout.transforms.GenerateTopAndHarness -o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v -tho /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v -i /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.fir --syn-top ChipTop --harness-top TestHarness -faf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.anno.json -tsaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.anno.json -tdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f -tsf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.fir -thaof /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.anno.json -hdf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f -thf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.fir --infer-rw --repl-seq-mem -c:TestHarness:-o:/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -thconf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -td /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig - - - - - - | => tapeout / Compile / runMain 0s ------------------------------------------------------------------------------- -Warning: firrtl.Driver is deprecated since 1.2! -Please switch to firrtl.stage.FirrtlMain ------------------------------------------------------------------------------- - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 0s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 1s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 2s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 3s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 4s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 5s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 6s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 7s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 8s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 9s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 10s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 11s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 12s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 13s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s -Computed transform order in: 491.4 ms - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 14s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 15s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 16s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 17s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 18s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 19s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 20s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 21s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 22s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 23s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 24s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 25s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 26s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 27s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 28s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 29s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 30s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 31s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 32s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 33s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 34s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 35s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 36s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 37s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 38s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 39s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 40s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 41s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 42s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 43s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 44s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 45s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 46s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 47s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 48s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 49s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 50s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 51s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 52s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 53s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 54s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 55s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 56s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 57s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 58s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 59s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 60s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 61s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 62s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 63s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 64s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 65s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 66s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 67s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 68s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 69s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 70s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 71s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 72s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 73s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 74s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 75s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 76s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 77s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 78s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 79s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 80s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 81s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 82s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 83s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 84s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 85s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 86s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 87s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 88s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 89s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 90s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 91s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 92s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 93s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 94s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s -Total FIRRTL Compile Time: 81583.1 ms - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 95s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 96s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s ------------------------------------------------------------------------------- -Warning: firrtl.Driver is deprecated since 1.2! -Please switch to firrtl.stage.FirrtlMain ------------------------------------------------------------------------------- - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 97s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 98s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 99s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 100s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 101s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 102s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 103s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 104s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 105s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 106s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s -Computed transform order in: 233.4 ms - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 107s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 108s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 109s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 110s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 111s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 112s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 113s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 114s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 115s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 116s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 117s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 118s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 119s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 120s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 121s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 122s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 123s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 124s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 125s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 126s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 127s - - - - - - | => tapeout / Compile / runMain 128s -Total FIRRTL Compile Time: 20561.7 ms - - - - - - -[success] Total time: 146 s (02:26), completed Dec 23, 2020, 3:49:36 AM -cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project barstoolsMacros" "runMain barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.fir --mode synflops" -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -[info] Loading settings for project chipyard-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/project - - - - - - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / Compile / externalHooks 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project chipyardRoot from build.sbt ... -[info] Loading settings for project barstoolsMacros from build.sbt ... -[info] Loading settings for project mdf from build.sbt ... -[info] Loading settings for project gemmini from build.sbt ... -[info] Loading settings for project ariane from build.sbt ... -[info] Loading settings for project boom from build.sbt ... -[info] Loading settings for project hwacha from build.sbt ... -[info] Loading settings for project icenet from build.sbt ... -[info] Loading settings for project testchipip from build.sbt ... -[info] Loading settings for project rocketConfig from build.sbt ... -[info] Loading settings for project hardfloat from build.sbt ... -[info] Loading settings for project chisel_testers from build.sbt ... -[info] Loading settings for project treadle from build.sbt ... -[info] Loading settings for project firrtl_interpreter from build.sbt ... -[info] Loading settings for project chisel from build.sbt ... -[info] Loading settings for project sim-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project - - - - - - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project firesim from build.sbt ... -[info] Loading settings for project midas from build.sbt ... -[info] Loading settings for project targetutils from build.sbt ... -[info] Resolving key references (32007 settings) ... -[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[info] Set current project to barstoolsMacros (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - - - - - - - - - - - | => core / projectDescriptors 0s - | => mdf / update 0s - | => rocketMacros / update 0s - | => firrtl_interpreter / update 0s - | => rocketConfig / update 0s - - - - - - - - - | => core / projectDescriptors 0s - | => mdf / update 0s - - - - - - - - | => hardfloat / projectDescriptors 0s - | => targetutils / update 0s - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => mdf / update 0s - - - - - - - - - - | => barstoolsMacros / update 0s - - - - - - - - - - | => barstoolsMacros / update 0s - - - - - - - - - - | => barstoolsMacros / update 0s - - - - - - - - - - | => barstoolsMacros / update 0s - - - - - - - - - - | => barstoolsMacros / update 0s - - - - - - | => mdf / scalaCompilerBridgeScope / csrConfiguration 0s - | => mdf / Compile / unmanagedClasspath 0s - | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s - | => firrtl_interpreter / scalaCompilerBridgeScope / csrConfiguration 0s - | => core / Compile / scalacOptions 0s - | => macros / Compile / scalacOptions 0s - | => rocketMacros / Compile / scalacOptions 0s - | => targetutils / Compile / scalacOptions 0s - | => hardfloat / Compile / scalacOptions 0s - | => rocketConfig / Compile / scalacOptions 0s - | => chisel / Compile / scalacOptions 0s - | => mdf / Compile / scalacOptions 0s - | => rocketchip / Compile / scalacOptions 0s - | => firrtl_interpreter / Compile / scalacOptions 0s - | => chisel / Compile / buildInfo 0s - | => rocketchip / Compile / unmanagedSources / inputFileStamps 0s - - - - - - - - - - - - - - - - - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s -[info] Compiling 7 Scala sources to /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/target/scala-2.12/classes ... - - - - - - - - - - - - - - - - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - - - - - - - - - - - - - - - - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - | => rocketConfig / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - - - - - - - - - - - - - - - - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - | => rocketConfig / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - | => core / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - | => core / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - - | => chisel / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - - | => chisel / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - | => targetutils / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - | => hardfloat / Compile / packageBin / mappings 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin / mappings 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin / mappings 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - | => rocketchip / Compile / packageBin 0s - | => mdf / Compile / compileIncremental 1s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 2s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 3s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/src/main/scala/SRAM.scala:55:75: This catches all Throwables. If this is really intended, use `case _ : Throwable` to clear this warning. - - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s -[warn]  case Some(x: JsString) => try { BigInt(x.as[String]) } catch { case _ => return None } - - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s -[warn]  ^ - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 4s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 5s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s -[warn] /home/riscvuser/chipyard/tools/barstools/mdf/scalalib/src/main/scala/SRAM.scala:45:66: catch block may intercept non-local return from method parseJSON - - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s -[warn]  def parseJSON(json: Map[String, JsValue]): Option[SRAMMacro] = { - - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s -[warn]  ^ - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - | => mdf / Compile / compileIncremental 6s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 7s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - - | => mdf / Compile / compileIncremental 8s -[warn] two warnings found - - - - - - - - - - | => mdf / Compile / compileIncremental 8s - - - - - - - - - - | => mdf / Compile / compile 0s - - - - - - - - - - | => mdf / Compile / compile 0s -[info] Compiling 4 Scala sources to /home/riscvuser/chipyard/tools/barstools/macros/target/scala-2.12/classes ... - - - - - - - - - | => mdf / Compile / compile 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 0s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 1s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 2s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 3s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:96:5: method apply in object Annotation is deprecated (since 1.1): This returns a LegacyAnnotation, use an explicit Annotation type - - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  Annotation(CircuitName(c), classOf[MacroCompilerTransform], MacroCompilerUtil.objToString(p)) - - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:99:10: method unapply in object Annotation is deprecated (since 1.1): This uses LegacyAnnotation, use an explicit Annotation type - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  case Annotation(CircuitName(c), t, serialized) if t == classOf[MacroCompilerTransform] => { - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:656:19: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def inputForm = MidForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:657:20: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def outputForm = MidForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:659:38: method getMyAnnotations in trait Transform is deprecated (since 1.1): Just collect the actual Annotation types the transform wants - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def execute(state: CircuitState) = getMyAnnotations(state) match { - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:722:18: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:722:32: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def inputForm: CircuitForm = LowForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:724:19: class CircuitForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:724:33: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  def outputForm: CircuitForm = LowForm - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:736:29: trait Compiler in package firrtl is deprecated (since FIRRTL 1.3): Migrate to firrtl.stage.transforms.Compiler. This will be removed in 1.4. - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] class MacroCompiler extends Compiler { - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:7: method getLoweringTransforms in object CompilerUtils is deprecated (since FIRRTL 1.3): Use a TransformManager requesting which transforms you want to run. This will be removed in 1.4. - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:36: object ChirrtlForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:741:56: object LowForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  getLoweringTransforms(firrtl.ChirrtlForm, firrtl.LowForm) ++ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:839:56: object MidForm in package firrtl is deprecated (since FIRRTL 1.3): Mix-in the DependencyAPIMigration trait into your Transform and specify its Dependency API dependencies. See: https://bit.ly/2Voppre - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  val macroCompilerInput = CircuitState(circuit, MidForm, annotations) - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:844:30: class ExecutionOptionsManager in package firrtl is deprecated (since 1.2): Use new FirrtlStage infrastructure - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  val firOptions = new ExecutionOptionsManager("macrocompiler") with HasFirrtlOptions { - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:844:76: trait HasFirrtlOptions in package firrtl is deprecated (since 1.2): Specify command line arguments in an Annotation mixing in HasScoptOptions - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  val firOptions = new ExecutionOptionsManager("macrocompiler") with HasFirrtlOptions { - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:845:27: class FirrtlExecutionOptions in package firrtl is deprecated (since 1.2): Use a FirrtlOptionsView or construct your own view of an AnnotationSeq - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  firrtlOptions = FirrtlExecutionOptions( - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn] /home/riscvuser/chipyard/tools/barstools/macros/src/main/scala/MacroCompiler.scala:853:9: object Driver in package firrtl is deprecated (since 1.2): Use firrtl.stage.FirrtlStage - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  Driver.execute(firOptions) - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s -[warn]  ^ - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 4s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 5s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 6s - - - - - - | => barstoolsMacros / Compile / compileIncremental 7s - - - - - - | => barstoolsMacros / Compile / compileIncremental 7s - - - - - - | => barstoolsMacros / Compile / compileIncremental 7s -[warn] 18 warnings found - - - - - - | => barstoolsMacros / Compile / compileIncremental 7s - - - - - - | => barstoolsMacros / Compile / compileIncremental 7s - - - - - - | => barstoolsMacros / Runtime / dependencyClasspathAsJars 0s - | => barstoolsMacros / Compile / run / runner 0s - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s -[info] running barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.fir --mode synflops - - - - - - - | => barstoolsMacros / Compile / runMain 0s ------------------------------------------------------------------------------- -Warning: getMyAnnotations is deprecated, use collect and match on concrete types ------------------------------------------------------------------------------- - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s ------------------------------------------------------------------------------- -Warning: firrtl.Driver is deprecated since 1.2! -Please switch to firrtl.stage.FirrtlMain ------------------------------------------------------------------------------- - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 0s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 1s -Computed transform order in: 317.7 ms - - - - - - - | => barstoolsMacros / Compile / runMain 1s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 2s - - - - - - - | => barstoolsMacros / Compile / runMain 3s - - - - - - - | => barstoolsMacros / Compile / runMain 3s -Total FIRRTL Compile Time: 1246.4 ms - - - - - - - -[success] Total time: 22 s, completed Dec 23, 2020, 3:50:22 AM -cd /home/riscvuser/chipyard && java -Xmx8G -Xss8M -XX:MaxPermSize=256M -jar /home/riscvuser/chipyard/generators/rocket-chip/sbt-launch.jar "project barstoolsMacros" "runMain barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.fir --mode synflops" -OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0 -[info] Loading settings for project chipyard-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/project - - - - - - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / update 0s - - - - - - | => chipyard-build / Compile / previousCompile 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - | => chipyard-build / Compile / compileIncremental 0s - - - - - - -[info] Loading settings for project chipyardRoot from build.sbt ... -[info] Loading settings for project barstoolsMacros from build.sbt ... -[info] Loading settings for project mdf from build.sbt ... -[info] Loading settings for project gemmini from build.sbt ... -[info] Loading settings for project ariane from build.sbt ... -[info] Loading settings for project boom from build.sbt ... -[info] Loading settings for project hwacha from build.sbt ... -[info] Loading settings for project icenet from build.sbt ... -[info] Loading settings for project testchipip from build.sbt ... -[info] Loading settings for project rocketConfig from build.sbt ... -[info] Loading settings for project hardfloat from build.sbt ... -[info] Loading settings for project chisel_testers from build.sbt ... -[info] Loading settings for project treadle from build.sbt ... -[info] Loading settings for project firrtl_interpreter from build.sbt ... -[info] Loading settings for project chisel from build.sbt ... -[info] Loading settings for project sim-build from plugins.sbt ... -[info] Loading project definition from /home/riscvuser/chipyard/sims/firesim/sim/project - - - - - - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / update 0s - - - - - - | => sim-build / Compile / compileIncSetup 0s - - - - - - -[info] Loading settings for project firesim from build.sbt ... -[info] Loading settings for project midas from build.sbt ... -[info] Loading settings for project targetutils from build.sbt ... -[info] Resolving key references (32007 settings) ... -[info] Set current project to chipyardRoot (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - | => Global / checkBuildSources 0s - - - - - - | => Global / checkBuildSources 0s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[info] Set current project to barstoolsMacros (in build file:/home/riscvuser/chipyard/) - - - - - - - - - - - - - - - - - - - - - | => core / projectDescriptors 0s - | => mdf / update 0s - | => firrtl_interpreter / update 0s - | => rocketMacros / update 0s - | => rocketConfig / update 0s - - - - - - - - - - | => core / projectDescriptors 0s - - - - - - - - - - | => hardfloat / update 0s - - - - - - - - - - - - - - - - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => mdf / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - - - - - - | => firrtl_interpreter / Compile / previousCompile 0s - | => macros / Compile / previousCompile 0s - | => mdf / Compile / previousCompile 0s - | => rocketMacros / Compile / previousCompile 0s - | => rocketConfig / Compile / previousCompile 0s - - - - - - | => mdf / Compile / compileIncremental 0s - | => rocketConfig / Compile / compileIncremental 0s - | => rocketMacros / Compile / compileIncremental 0s - | => macros / Compile / compileIncremental 0s - | => firrtl_interpreter / Compile / previousCompile 0s - - - - - - | => rocketMacros / Compile / packageBin 0s - | => rocketConfig / Compile / packageBin 0s - | => macros / Compile / packageBin 0s - | => core / Compile / externalHooks 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - | => rocketMacros / Compile / packageBin 0s - | => rocketConfig / Compile / packageBin 0s - | => macros / Compile / packageBin 0s - | => core / Compile / externalHooks 0s - | => firrtl_interpreter / Compile / compileIncremental 0s - | => mdf / Compile / compileIncremental 0s - - - - - - - - - - - | => core / Compile / compileIncremental 0s - - - - - - - - - - - | => chisel / Compile / compileIncremental 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - - | => chisel / Compile / compileIncremental 0s - - - - - - - - - - | => hardfloat / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - - | => rocketchip / Compile / previousCompile 0s -[warn] Multiple main classes detected. Run 'show discoveredMainClasses' to see the list - - - - - - - - - | => rocketchip / Compile / previousCompile 0s - - - - - - - - - | => rocketchip / Compile / packageBin / mappings 0s - - - - - - - - - | => barstoolsMacros / Compile / previousCompile 0s - - - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s - - - - - - - - - | => barstoolsMacros / Compile / bgRunMain 0s -[info] running barstools.macros.MacroCompiler -n /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.conf -v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.fir --mode synflops -WARNING: Empty *.mems.conf file. No memories generated. - - - - - - - - - -[success] Total time: 3 s, completed Dec 23, 2020, 3:50:47 AM -awk '{print ;}' /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.top.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/firrtl_black_box_resource_files.harness.f | sort -u | grep -v '.*\.\(svh\|h\)$' > /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.common.f -rm -rf /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -mkdir -p /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -verilator --cc --exe -O3 -CFLAGS " -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR" -CFLAGS "-I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h" -LDFLAGS " -L/home/riscvuser/chipyard/sims/verilator -lpthread" /home/riscvuser/chipyard/riscv-tools-install/lib/libfesvr.a /home/riscvuser/chipyard/tools/DRAMSim2/libdramsim.a --timescale 1ns/1ps --top-module TestHarness -Wno-fatal --assert --output-split 10000 --output-split-cfuncs 100 --max-num-width 1048576 -f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/sim_files.common.f /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.top.mems.v /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.harness.mems.v +define+PRINTF_COND=\$c\(\"verbose\",\"\&\&\"\,\"done_reset\"\) +define+STOP_COND=\$c\(\"done_reset\"\) -o /home/riscvuser/chipyard/sims/verilator/simulator-chipyard-RocketConfig -Mdir /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -CFLAGS "-include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h" -touch /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.mk -make -C /home/riscvuser/chipyard/tools/DRAMSim2 libdramsim.a -make[1]: Entering directory '/home/riscvuser/chipyard/tools/DRAMSim2' -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o PrintMacros.o -c PrintMacros.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Transaction.o -c Transaction.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o BusPacket.o -c BusPacket.cpp -BusPacket.cpp: In member function 'void DRAMSim::BusPacket::print(uint64_t, bool)': -BusPacket.cpp:63:2: warning: nonnull argument 'this' compared to NULL [-Wnonnull-compare] - if (this == NULL) - ^~ -BusPacket.cpp: In member function 'void DRAMSim::BusPacket::print()': -BusPacket.cpp:104:2: warning: nonnull argument 'this' compared to NULL [-Wnonnull-compare] - if (this == NULL) //pointer use makes this a necessary precaution - ^~ -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o BankState.o -c BankState.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o CommandQueue.o -c CommandQueue.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MemorySystem.o -c MemorySystem.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o SimulatorObject.o -c SimulatorObject.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o IniReader.o -c IniReader.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o AddressMapping.o -c AddressMapping.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o ClockDomain.o -c ClockDomain.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MultiChannelMemorySystem.o -c MultiChannelMemorySystem.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Rank.o -c Rank.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o MemoryController.o -c MemoryController.cpp -g++ -DNO_STORAGE -Wall -DDEBUG_BUILD -O3 -o Bank.o -c Bank.cpp -ar crs libdramsim.a PrintMacros.o Transaction.o BusPacket.o BankState.o CommandQueue.o MemorySystem.o SimulatorObject.o IniReader.o AddressMapping.o ClockDomain.o MultiChannelMemorySystem.o Rank.o MemoryController.o Bank.o -make[1]: Leaving directory '/home/riscvuser/chipyard/tools/DRAMSim2' -make VM_PARALLEL_BUILDS=1 -C /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig -f VTestHarness.mk -make[1]: Entering directory '/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig' -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimDRAM.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimDRAM.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimDTM.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimDTM.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimJTAG.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimJTAG.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimSerial.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimSerial.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o SimUART.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/SimUART.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o emulator.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/emulator.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o mm.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/mm.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o mm_dramsim2.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/mm_dramsim2.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o remote_bitbang.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/remote_bitbang.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o uart.o /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/uart.cc -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/uart.cc:7:0: warning: "_XOPEN_SOURCE" redefined - #define _XOPEN_SOURCE - -In file included from /usr/include/inttypes.h:25:0, - from /usr/local/share/verilator/include/verilatedos.h:305, - from /usr/local/share/verilator/include/verilated.h:27, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/include/features.h:202:0: note: this is the location of the previous definition - # define _XOPEN_SOURCE 700 - -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o verilated.o /usr/local/share/verilator/include/verilated.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o verilated_dpi.o /usr/local/share/verilator/include/verilated_dpi.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness.o VTestHarness.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__1.o VTestHarness__1.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__2.o VTestHarness__2.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__3.o VTestHarness__3.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__4.o VTestHarness__4.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__5.o VTestHarness__5.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__6.o VTestHarness__6.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__7.o VTestHarness__7.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__8.o VTestHarness__8.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__9.o VTestHarness__9.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__10.o VTestHarness__10.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__11.o VTestHarness__11.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__12.o VTestHarness__12.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__13.o VTestHarness__13.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__14.o VTestHarness__14.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__15.o VTestHarness__15.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__16.o VTestHarness__16.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__17.o VTestHarness__17.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__18.o VTestHarness__18.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__19.o VTestHarness__19.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__20.o VTestHarness__20.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__21.o VTestHarness__21.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__22.o VTestHarness__22.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__23.o VTestHarness__23.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__24.o VTestHarness__24.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__25.o VTestHarness__25.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__26.o VTestHarness__26.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__27.o VTestHarness__27.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__28.o VTestHarness__28.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__29.o VTestHarness__29.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__30.o VTestHarness__30.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__31.o VTestHarness__31.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__32.o VTestHarness__32.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__33.o VTestHarness__33.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__34.o VTestHarness__34.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__35.o VTestHarness__35.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__36.o VTestHarness__36.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__37.o VTestHarness__37.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__38.o VTestHarness__38.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__39.o VTestHarness__39.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__40.o VTestHarness__40.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__41.o VTestHarness__41.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__42.o VTestHarness__42.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__43.o VTestHarness__43.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__44.o VTestHarness__44.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__45.o VTestHarness__45.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__46.o VTestHarness__46.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__47.o VTestHarness__47.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__48.o VTestHarness__48.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__49.o VTestHarness__49.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__50.o VTestHarness__50.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__51.o VTestHarness__51.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__52.o VTestHarness__52.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__53.o VTestHarness__53.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__54.o VTestHarness__54.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__55.o VTestHarness__55.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__56.o VTestHarness__56.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__57.o VTestHarness__57.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__58.o VTestHarness__58.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__59.o VTestHarness__59.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__60.o VTestHarness__60.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__61.o VTestHarness__61.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__62.o VTestHarness__62.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness___024unit.o VTestHarness___024unit.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Slow.o VTestHarness__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__1__Slow.o VTestHarness__1__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__2__Slow.o VTestHarness__2__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__3__Slow.o VTestHarness__3__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__4__Slow.o VTestHarness__4__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__5__Slow.o VTestHarness__5__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__6__Slow.o VTestHarness__6__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__7__Slow.o VTestHarness__7__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__8__Slow.o VTestHarness__8__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__9__Slow.o VTestHarness__9__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__10__Slow.o VTestHarness__10__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__11__Slow.o VTestHarness__11__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__12__Slow.o VTestHarness__12__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__13__Slow.o VTestHarness__13__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__14__Slow.o VTestHarness__14__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__15__Slow.o VTestHarness__15__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__16__Slow.o VTestHarness__16__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__17__Slow.o VTestHarness__17__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__18__Slow.o VTestHarness__18__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__19__Slow.o VTestHarness__19__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__20__Slow.o VTestHarness__20__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__21__Slow.o VTestHarness__21__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__22__Slow.o VTestHarness__22__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__23__Slow.o VTestHarness__23__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__24__Slow.o VTestHarness__24__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__25__Slow.o VTestHarness__25__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness___024unit__Slow.o VTestHarness___024unit__Slow.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Dpi.o VTestHarness__Dpi.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Syms.o VTestHarness__Syms.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -g++ -I. -MMD -I/usr/local/share/verilator/include -I/usr/local/share/verilator/include/vltstd -DVM_COVERAGE=0 -DVM_SC=0 -DVM_TRACE=0 -faligned-new -Wno-bool-operation -Wno-sign-compare -Wno-uninitialized -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-variable -Wno-shadow -O1 -std=c++11 -I/home/riscvuser/chipyard/riscv-tools-install/include -I/home/riscvuser/chipyard/tools/DRAMSim2 -D__STDC_FORMAT_MACROS -DTEST_HARNESS=VTestHarness -DVERILATOR -I/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig.plusArgs -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h -include /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig/VTestHarness.h -c -o VTestHarness__Syms__1.o VTestHarness__Syms__1.cpp -In file included from /usr/local/share/verilator/include/verilated.h:27:0, - from /usr/local/share/verilator/include/verilated_vcd_c.h:23, - from /home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/verilator.h:4, - from :0: -/usr/local/share/verilator/include/verilatedos.h:252:0: warning: "__STDC_FORMAT_MACROS" redefined - #define __STDC_FORMAT_MACROS - -:0:0: note: this is the location of the previous definition -ar -cr VTestHarness__ALL.a VTestHarness.o VTestHarness__1.o VTestHarness__2.o VTestHarness__3.o VTestHarness__4.o VTestHarness__5.o VTestHarness__6.o VTestHarness__7.o VTestHarness__8.o VTestHarness__9.o VTestHarness__10.o VTestHarness__11.o VTestHarness__12.o VTestHarness__13.o VTestHarness__14.o VTestHarness__15.o VTestHarness__16.o VTestHarness__17.o VTestHarness__18.o VTestHarness__19.o VTestHarness__20.o VTestHarness__21.o VTestHarness__22.o VTestHarness__23.o VTestHarness__24.o VTestHarness__25.o VTestHarness__26.o VTestHarness__27.o VTestHarness__28.o VTestHarness__29.o VTestHarness__30.o VTestHarness__31.o VTestHarness__32.o VTestHarness__33.o VTestHarness__34.o VTestHarness__35.o VTestHarness__36.o VTestHarness__37.o VTestHarness__38.o VTestHarness__39.o VTestHarness__40.o VTestHarness__41.o VTestHarness__42.o VTestHarness__43.o VTestHarness__44.o VTestHarness__45.o VTestHarness__46.o VTestHarness__47.o VTestHarness__48.o VTestHarness__49.o VTestHarness__50.o VTestHarness__51.o VTestHarness__52.o VTestHarness__53.o VTestHarness__54.o VTestHarness__55.o VTestHarness__56.o VTestHarness__57.o VTestHarness__58.o VTestHarness__59.o VTestHarness__60.o VTestHarness__61.o VTestHarness__62.o VTestHarness___024unit.o VTestHarness__Slow.o VTestHarness__1__Slow.o VTestHarness__2__Slow.o VTestHarness__3__Slow.o VTestHarness__4__Slow.o VTestHarness__5__Slow.o VTestHarness__6__Slow.o VTestHarness__7__Slow.o VTestHarness__8__Slow.o VTestHarness__9__Slow.o VTestHarness__10__Slow.o VTestHarness__11__Slow.o VTestHarness__12__Slow.o VTestHarness__13__Slow.o VTestHarness__14__Slow.o VTestHarness__15__Slow.o VTestHarness__16__Slow.o VTestHarness__17__Slow.o VTestHarness__18__Slow.o VTestHarness__19__Slow.o VTestHarness__20__Slow.o VTestHarness__21__Slow.o VTestHarness__22__Slow.o VTestHarness__23__Slow.o VTestHarness__24__Slow.o VTestHarness__25__Slow.o VTestHarness___024unit__Slow.o VTestHarness__Dpi.o VTestHarness__Syms.o VTestHarness__Syms__1.o -ranlib VTestHarness__ALL.a -g++ SimDRAM.o SimDTM.o SimJTAG.o SimSerial.o SimUART.o emulator.o mm.o mm_dramsim2.o remote_bitbang.o uart.o verilated.o verilated_dpi.o VTestHarness__ALL.a -L/home/riscvuser/chipyard/sims/verilator -lpthread /home/riscvuser/chipyard/riscv-tools-install/lib/libfesvr.a /home/riscvuser/chipyard/tools/DRAMSim2/libdramsim.a -o /home/riscvuser/chipyard/sims/verilator/simulator-chipyard-RocketConfig -make[1]: Leaving directory '/home/riscvuser/chipyard/sims/verilator/generated-src/chipyard.TestHarness.RocketConfig/chipyard.TestHarness.RocketConfig' -]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ ls -Makefile generated-src -dramsim2_ini simulator-chipyard-RocketConfig -]0;riscvuser@dd954fd5a122: ~/chipyard/sims/verilatorriscvuser@dd954fd5a122:~/chipyard/sims/verilator$ exit -logout -[schwarzem@a6:/scratch/schwarzem/chipyard]$ exit -exit - -Script done on 2020-12-22 19:53:47-0800 From 9b84682a62fa169a454a03635346e32464532b5e Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 13 Jan 2021 19:41:48 -0800 Subject: [PATCH 17/40] Fixed comments and simplified entrypoint --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d95af552b..ccb4b1bbf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,11 @@ ### 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/ +# This is a full chipyard setup FROM ubuntu:18.04 -MAINTAINER jacobgadikian@gmail.com +MAINTAINER https://groups.google.com/forum/#!forum/chipyard -# man directory is missing in some base images -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 +# Install dependencies for ubuntu-req.sh RUN apt-get update && \ apt-get upgrade -y && \ apt-get install -y \ @@ -18,6 +17,7 @@ RUN apt-get update && \ RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup +# Adds a new user called riscvuser 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 \ @@ -31,7 +31,7 @@ RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ ./scripts/ubuntu-req.sh 1>/dev/null -# Install dependencies from ubuntu-req.sh +# Run ubuntu-req.sh to install necessary dependencies RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null @@ -46,7 +46,7 @@ RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/build-toolchains.sh esp-tools 1>/dev/null -ENTRYPOINT ["/home/riscvuser/chipyard/scripts/entrypoint.sh"] +ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] # END IMAGE CUSTOMIZATIONS From 49a76a606bd6b266b7a66eb651bc2e0d793ea1f6 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 20 Jan 2021 18:59:38 -0800 Subject: [PATCH 18/40] Updated ci dockerfile. Moved dockerfiles to outer directory. Updated comments for entrypoint.sh --- Dockerfiles/CI-Dockerfile | 38 +++++++++++++++++++++++++++ Dockerfiles/Dockerfile | 55 +++++++++++++++++++++++++++++++++++++++ scripts/entrypoint.sh | 1 + 3 files changed, 94 insertions(+) create mode 100644 Dockerfiles/CI-Dockerfile create mode 100644 Dockerfiles/Dockerfile diff --git a/Dockerfiles/CI-Dockerfile b/Dockerfiles/CI-Dockerfile new file mode 100644 index 0000000000..96df4ade7e --- /dev/null +++ b/Dockerfiles/CI-Dockerfile @@ -0,0 +1,38 @@ +### 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 chipyard setup for CI, no toolchains are initialized + +FROM ubuntu:18.04 +ARG CHIPYARD_HASH + +MAINTAINER https://groups.google.com/forum/#!forum/chipyard + +# Install dependencies for ubuntu-req.sh +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y \ + curl \ + git \ + sudo + +# Stopping docker keyboard-config from disrupting ubuntu-req.sh +RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ + sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + +# Adds a new user called riscvuser +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 + +WORKDIR /home/riscvuser +USER riscvuser + +# Install Chipyard +RUN git clone https://github.com/ucb-bar/chipyard.git && \ + cd chipyard && \ + git checkout $CHIPYARD_HASH && \ + ./scripts/ubuntu-req.sh 1>/dev/null + +# END IMAGE CUSTOMIZATIONS + +CMD ["/bin/sh"] diff --git a/Dockerfiles/Dockerfile b/Dockerfiles/Dockerfile new file mode 100644 index 0000000000..ffc8a81ae9 --- /dev/null +++ b/Dockerfiles/Dockerfile @@ -0,0 +1,55 @@ +### 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 + +FROM ubuntu:18.04 +ARG CHIPYARD_HASH + +MAINTAINER https://groups.google.com/forum/#!forum/chipyard + +# Install dependencies for ubuntu-req.sh +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y \ + curl \ + git \ + sudo + +# Stopping docker keyboard-config from disrupting ubuntu-req.sh +RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ + sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + +# Adds a new user called riscvuser +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 + +WORKDIR /home/riscvuser +USER riscvuser + +# Install Chipyard +RUN git clone https://github.com/ucb-bar/chipyard.git && \ + cd chipyard && \ + git checkout $CHIPYARD_HASH && \ + ./scripts/ubuntu-req.sh 1>/dev/null + +# Run ubuntu-req.sh to install necessary dependencies +RUN cd chipyard && \ + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null + +# Install riscv-tools +RUN cd chipyard && \ + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/build-toolchains.sh riscv-tools 1>/dev/null + +# Install esp-tools +RUN cd chipyard && \ + export MAKEFLAGS=-"j $(nproc)" && \ + ./scripts/build-toolchains.sh esp-tools 1>/dev/null + +ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] + +# END IMAGE CUSTOMIZATIONS + +CMD ["/bin/sh"] diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index c83661911b..41e5bda580 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -1,5 +1,6 @@ #!/bin/bash +# used with the dockerfile to set up enviroment variables by running env.sh # adapted from https://stackoverflow.com/questions/55921914/how-to-source-a-script-with-environment-variables-in-a-docker-build-process . /home/riscvuser/chipyard/env.sh From a46c4e6e3592727560117b85e65ab441761b6dd4 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 20 Jan 2021 19:00:39 -0800 Subject: [PATCH 19/40] moved Dockerfiles --- .circleci/images/Dockerfile | 216 ------------------------------------ Dockerfile | 53 --------- 2 files changed, 269 deletions(-) delete mode 100644 .circleci/images/Dockerfile delete mode 100644 Dockerfile diff --git a/.circleci/images/Dockerfile b/.circleci/images/Dockerfile deleted file mode 100644 index 7d03185026..0000000000 --- a/.circleci/images/Dockerfile +++ /dev/null @@ -1,216 +0,0 @@ -### Note: This DockerFile is adapted from https://github.com/CircleCI-Public/example-images/openjdk - -FROM openjdk:11.0.1-jdk-sid - -# man directory is missing in some base images -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 -RUN apt-get update \ - && mkdir -p /usr/share/man/man1 \ - && apt-get install -y \ - bzip2 \ - ca-certificates \ - curl \ - git \ - gnupg \ - gzip \ - libfl2 \ - libfl-dev \ - locales \ - mercurial \ - netcat \ - net-tools \ - openssh-client \ - parallel \ - sudo \ - tar \ - unzip \ - wget \ - xvfb \ - xxd \ - zip \ - ccache \ - libgoogle-perftools-dev \ - numactl \ - zlib1g - -# 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 \ - python \ - python-pexpect-doc \ - python3 \ - texinfo \ - zlib1g-dev \ - rsync - -# 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 - -# Update PATH for Java tools -ENV PATH="/opt/sbt/bin:/opt/apache-maven/bin:/opt/apache-ant/bin:/opt/gradle/bin:$PATH" - -# 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/ - -# END IMAGE CUSTOMIZATIONS - -CMD ["/bin/sh"] diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index ccb4b1bbf5..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,53 +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 - -FROM ubuntu:18.04 - -MAINTAINER https://groups.google.com/forum/#!forum/chipyard - -# Install dependencies for ubuntu-req.sh -RUN apt-get update && \ - apt-get upgrade -y && \ - apt-get install -y \ - curl \ - git \ - sudo - -# Stopping docker keyboard-config from disrupting ubuntu-req.sh -RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - -# Adds a new user called riscvuser -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 - -WORKDIR /home/riscvuser -USER riscvuser - -# Install Chipyard -RUN git clone https://github.com/ucb-bar/chipyard.git && \ - cd chipyard && \ - ./scripts/ubuntu-req.sh 1>/dev/null - -# Run ubuntu-req.sh to install necessary dependencies -RUN cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \ - ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null - -# Install riscv-tools -RUN cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \ - ./scripts/build-toolchains.sh riscv-tools 1>/dev/null - -# Install esp-tools -RUN cd chipyard && \ - export MAKEFLAGS=-"j $(nproc)" && \ - ./scripts/build-toolchains.sh esp-tools 1>/dev/null - -ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] - -# END IMAGE CUSTOMIZATIONS - -CMD ["/bin/sh"] From fa2da01421f641d6d0c5c5611fb0ddbaf16e5868 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 20 Jan 2021 20:51:59 -0800 Subject: [PATCH 20/40] Changed config.yml to use new docker image --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f18f0e629c..264d2e3316 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: ucbbar/chipyard-image:1.0.1 + - image: schwarzem/chipyard-test:1.0.0 environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit @@ -505,5 +505,3 @@ workflows: - install-riscv-toolchain - install-verilator - build-extra-tests - - From 58665ea172fd0d22e136eeeee8b7eabea70704f4 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 21 Jan 2021 20:46:01 -0800 Subject: [PATCH 21/40] Added hardcoded environment variables to CI-Dockerfile and updated config.yml with new docker image --- .circleci/config.yml | 2 +- Dockerfiles/CI-Dockerfile | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5bbaee63f3..3513794089 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: schwarzem/chipyard-test:1.0.0 + - image: schwarzem/chipyard-test:1.0.1 environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit diff --git a/Dockerfiles/CI-Dockerfile b/Dockerfiles/CI-Dockerfile index 96df4ade7e..11d064d288 100644 --- a/Dockerfiles/CI-Dockerfile +++ b/Dockerfiles/CI-Dockerfile @@ -27,6 +27,11 @@ RUN groupadd --gid 3434 riscvuser \ WORKDIR /home/riscvuser USER riscvuser +# Update PATH for RISCV toolchain (note: hardcoded for CircleCI) +ENV RISCV="/home/riscvuser/riscv-tools-install" +ENV LD_LIBRARY_PATH="$RISCV/lib" +ENV PATH="$RISCV/bin:$PATH" + # Install Chipyard RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ From 500d2b8b974c342bd250a728b9b9bd5a3fc3945f Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 27 Jan 2021 19:00:18 -0800 Subject: [PATCH 22/40] Build both CI and main images in one dockerfile. Updated README.md --- .circleci/images/README.md | 18 ------------------ {Dockerfiles => dockerfiles}/CI-Dockerfile | 4 ++-- {Dockerfiles => dockerfiles}/Dockerfile | 22 ++++++++++++++++++---- dockerfiles/README.md | 20 ++++++++++++++++++++ 4 files changed, 40 insertions(+), 24 deletions(-) delete mode 100644 .circleci/images/README.md rename {Dockerfiles => dockerfiles}/CI-Dockerfile (85%) rename {Dockerfiles => dockerfiles}/Dockerfile (78%) create mode 100644 dockerfiles/README.md diff --git a/.circleci/images/README.md b/.circleci/images/README.md deleted file mode 100644 index a2172ba27f..0000000000 --- a/.circleci/images/README.md +++ /dev/null @@ -1,18 +0,0 @@ -General -------- -This DockerFile contains the necessary steps to build a Docker container that can run -projects with riscv-tools, chisel3, firrtl, and verilator. It installs the necessary -apt-get packages and sets the environment variables needed in CircleCI. - -Build and Deploy the Container ------------------------------- - - sudo docker build . # to test build before building it with a tag - sudo docker build -t :tag . # to build with tag (ex. 0.0.3) - sudo docker login # login into the account to push to - sudo docker push :tag # to push to repo with tag - -Path Names ----------- -Older docker images (when this Dockerfile was in `riscv-boom/riscv-boom`) can be found in the `riscvboom/riscvboom-images`. -Current up-to-date images are located in `ucbbar/chipyard-image` diff --git a/Dockerfiles/CI-Dockerfile b/dockerfiles/CI-Dockerfile similarity index 85% rename from Dockerfiles/CI-Dockerfile rename to dockerfiles/CI-Dockerfile index 11d064d288..2ebf119cb8 100644 --- a/Dockerfiles/CI-Dockerfile +++ b/dockerfiles/CI-Dockerfile @@ -1,4 +1,4 @@ -### 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 +### Note: This DockerFile is adapted from: https://github.com/CircleCI-Public/example-images/openjdk # This is a chipyard setup for CI, no toolchains are initialized FROM ubuntu:18.04 @@ -32,7 +32,7 @@ ENV RISCV="/home/riscvuser/riscv-tools-install" ENV LD_LIBRARY_PATH="$RISCV/lib" ENV PATH="$RISCV/bin:$PATH" -# Install Chipyard +# Install Chipyard and run ubuntu-req.sh to install necessary dependencies RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ git checkout $CHIPYARD_HASH && \ diff --git a/Dockerfiles/Dockerfile b/dockerfiles/Dockerfile similarity index 78% rename from Dockerfiles/Dockerfile rename to dockerfiles/Dockerfile index ffc8a81ae9..ad111121df 100644 --- a/Dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,9 @@ ### 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 -FROM ubuntu:18.04 +# BUILD BASE FOR CI + +FROM ubuntu:18.04 as base ARG CHIPYARD_HASH MAINTAINER https://groups.google.com/forum/#!forum/chipyard @@ -27,13 +29,24 @@ RUN groupadd --gid 3434 riscvuser \ WORKDIR /home/riscvuser USER riscvuser -# Install Chipyard +# Update PATH for RISCV toolchain (note: hardcoded for CircleCI) +ENV RISCV="/home/riscvuser/riscv-tools-install" +ENV LD_LIBRARY_PATH="$RISCV/lib" +ENV PATH="$RISCV/bin:$PATH" + +# Install Chipyard and run ubuntu-req.sh to install necessary dependencies RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ git checkout $CHIPYARD_HASH && \ ./scripts/ubuntu-req.sh 1>/dev/null -# Run ubuntu-req.sh to install necessary dependencies + +# BUILD IMAGE WITH TOOLCHAINS + +# Use above build as base +FROM base as base-with-tools + +# Init submodules RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/init-submodules-no-riscv-tools.sh 1>/dev/null @@ -44,10 +57,11 @@ RUN cd chipyard && \ ./scripts/build-toolchains.sh riscv-tools 1>/dev/null # Install esp-tools -RUN cd chipyard && \ + RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/build-toolchains.sh esp-tools 1>/dev/null +# Run script to set environment variables on entry ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] # END IMAGE CUSTOMIZATIONS diff --git a/dockerfiles/README.md b/dockerfiles/README.md new file mode 100644 index 0000000000..12689704b7 --- /dev/null +++ b/dockerfiles/README.md @@ -0,0 +1,20 @@ +General +------- +This DockerFile contains the necessary steps to build a Docker container that can run +projects with riscv-tools, chisel3, firrtl, and verilator. When run up to the base stage, it installs the necessary +apt-get packages and sets the environment variables needed in CircleCI. When run up to the base-with-tools stage, it initializes and installs the necessary toolchains for running simulations and testing projects. + +Build and Deploy the Container +------------------------------ + + sudo docker build --target base -f Dockerfile . # to build the image for the CI + sudo docker build --target base-with-tools -f Dockerfile . # to build the full image + sudo docker tag :tag . # to tag the image after the build (ex. 0.0.3) + sudo docker login # login into the account to push to + sudo docker push :tag # to push to repo with tag + sudo docker run -it bash # to run an interactive version of the container + +Path Names +---------- +Older docker images (when this Dockerfile was in `riscv-boom/riscv-boom`) can be found in the `riscvboom/riscvboom-images`. +Current up-to-date images are located in `ucbbar/chipyard-image` From e13266bc8237577972e9a9dfbd7c45448f594706 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 27 Jan 2021 19:01:29 -0800 Subject: [PATCH 23/40] Install python --- scripts/ubuntu-req.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ubuntu-req.sh b/scripts/ubuntu-req.sh index 3bc22c7395..b33a6649e8 100755 --- a/scripts/ubuntu-req.sh +++ b/scripts/ubuntu-req.sh @@ -19,6 +19,7 @@ sudo apt-get install -y libgtk-3-dev gettext sudo apt-get install -y python3-pip python3.6-dev rsync libguestfs-tools expat ctags # install DTC sudo apt-get install -y device-tree-compiler +sudo apt-get install -y python # install verilator git clone http://git.veripool.org/git/verilator From 5e903723ed79ab289ecad97b613d7330b7281065 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Wed, 27 Jan 2021 21:35:55 -0800 Subject: [PATCH 24/40] Updated image for to 1.0.2 for config.yml. Fixed formatting in Dockerfile. --- .circleci/config.yml | 2 +- dockerfiles/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3513794089..949aed6bb1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: schwarzem/chipyard-test:1.0.1 + - image: schwarzem/chipyard-test:1.0.2 environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index ad111121df..2fad661b0d 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -57,7 +57,7 @@ RUN cd chipyard && \ ./scripts/build-toolchains.sh riscv-tools 1>/dev/null # Install esp-tools - RUN cd chipyard && \ +RUN cd chipyard && \ export MAKEFLAGS=-"j $(nproc)" && \ ./scripts/build-toolchains.sh esp-tools 1>/dev/null From e95e033e5e61cc2cc99ab444b31a5aa2913b2596 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 4 Feb 2021 00:29:43 -0800 Subject: [PATCH 25/40] Updated dockerfile comments and updated dockerfile readme. Removed ci-dockerfile Added python --- dockerfiles/CI-Dockerfile | 43 --------------------------------------- dockerfiles/Dockerfile | 4 ++-- dockerfiles/README.md | 10 +++++---- scripts/centos-req.sh | 1 + 4 files changed, 9 insertions(+), 49 deletions(-) delete mode 100644 dockerfiles/CI-Dockerfile diff --git a/dockerfiles/CI-Dockerfile b/dockerfiles/CI-Dockerfile deleted file mode 100644 index 2ebf119cb8..0000000000 --- a/dockerfiles/CI-Dockerfile +++ /dev/null @@ -1,43 +0,0 @@ -### Note: This DockerFile is adapted from: https://github.com/CircleCI-Public/example-images/openjdk -# This is a chipyard setup for CI, no toolchains are initialized - -FROM ubuntu:18.04 -ARG CHIPYARD_HASH - -MAINTAINER https://groups.google.com/forum/#!forum/chipyard - -# Install dependencies for ubuntu-req.sh -RUN apt-get update && \ - apt-get upgrade -y && \ - apt-get install -y \ - curl \ - git \ - sudo - -# Stopping docker keyboard-config from disrupting ubuntu-req.sh -RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup - -# Adds a new user called riscvuser -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 - -WORKDIR /home/riscvuser -USER riscvuser - -# Update PATH for RISCV toolchain (note: hardcoded for CircleCI) -ENV RISCV="/home/riscvuser/riscv-tools-install" -ENV LD_LIBRARY_PATH="$RISCV/lib" -ENV PATH="$RISCV/bin:$PATH" - -# Install Chipyard and run ubuntu-req.sh to install necessary dependencies -RUN git clone https://github.com/ucb-bar/chipyard.git && \ - cd chipyard && \ - git checkout $CHIPYARD_HASH && \ - ./scripts/ubuntu-req.sh 1>/dev/null - -# END IMAGE CUSTOMIZATIONS - -CMD ["/bin/sh"] diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 2fad661b0d..1a722a9cae 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,10 +1,10 @@ -### 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 # BUILD BASE FOR CI FROM ubuntu:18.04 as base -ARG CHIPYARD_HASH +# Default branch dev for experimental version +ARG CHIPYARD_HASH=dev MAINTAINER https://groups.google.com/forum/#!forum/chipyard diff --git a/dockerfiles/README.md b/dockerfiles/README.md index 12689704b7..be0e19171b 100644 --- a/dockerfiles/README.md +++ b/dockerfiles/README.md @@ -2,13 +2,14 @@ General ------- This DockerFile contains the necessary steps to build a Docker container that can run projects with riscv-tools, chisel3, firrtl, and verilator. When run up to the base stage, it installs the necessary -apt-get packages and sets the environment variables needed in CircleCI. When run up to the base-with-tools stage, it initializes and installs the necessary toolchains for running simulations and testing projects. +apt-get packages and sets the environment variables needed for CircleCI. When run up to the base-with-tools stage, it initializes and installs the necessary toolchains for running simulations and testing projects. Build and Deploy the Container ------------------------------ - sudo docker build --target base -f Dockerfile . # to build the image for the CI - sudo docker build --target base-with-tools -f Dockerfile . # to build the full image + sudo docker build --target base . # to build the image for the CI + sudo docker build --target base --build-args CHIPYARD_HASH= . # to build the image for the CI from a specific chipyard commit + sudo docker build --target base-with-tools . # to build the full image sudo docker tag :tag . # to tag the image after the build (ex. 0.0.3) sudo docker login # login into the account to push to sudo docker push :tag # to push to repo with tag @@ -17,4 +18,5 @@ Build and Deploy the Container Path Names ---------- Older docker images (when this Dockerfile was in `riscv-boom/riscv-boom`) can be found in the `riscvboom/riscvboom-images`. -Current up-to-date images are located in `ucbbar/chipyard-image` +Current up-to-date images are located in `ucbbar/chipyard-image`. NOTE: Less recent images in this path may not have toolchains initialized +Current up-to-date CI images are located in `ucbbar/chipyard-ci-image`. diff --git a/scripts/centos-req.sh b/scripts/centos-req.sh index 89e8644c36..1a1439d1d7 100755 --- a/scripts/centos-req.sh +++ b/scripts/centos-req.sh @@ -18,6 +18,7 @@ sudo yum install -y centos-release-scl sudo yum install -y devtoolset-8-make # install DTC sudo yum install -y dtc +sudo yum install -y python # install verilator git clone http://git.veripool.org/git/verilator From d2b3dca230977a041b8f1be1bf9d2751c84c4518 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 4 Feb 2021 00:54:00 -0800 Subject: [PATCH 26/40] Readme updated for main dockerfile --- dockerfiles/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/README.md b/dockerfiles/README.md index be0e19171b..09ede71513 100644 --- a/dockerfiles/README.md +++ b/dockerfiles/README.md @@ -8,7 +8,7 @@ Build and Deploy the Container ------------------------------ sudo docker build --target base . # to build the image for the CI - sudo docker build --target base --build-args CHIPYARD_HASH= . # to build the image for the CI from a specific chipyard commit + sudo docker build --target base --build-arg CHIPYARD_HASH= . # to build the image for the CI from a specific chipyard commit sudo docker build --target base-with-tools . # to build the full image sudo docker tag :tag . # to tag the image after the build (ex. 0.0.3) sudo docker login # login into the account to push to From 7eb8f39d6efe2dd04e32f037d35f029e440ace19 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 4 Feb 2021 22:42:57 -0800 Subject: [PATCH 27/40] Uses latest chipyard ci image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 949aed6bb1..aac8294029 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: schwarzem/chipyard-test:1.0.2 + - image: ucbbar/chipyard-ci-image:d2b3dca environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit From 34e56d52fca8797e2f0cde9a3bdfbbce71e9abe1 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Fri, 5 Feb 2021 18:04:34 -0800 Subject: [PATCH 28/40] Moved CMD command --- dockerfiles/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 1a722a9cae..5a505fd950 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -40,6 +40,8 @@ RUN git clone https://github.com/ucb-bar/chipyard.git && \ git checkout $CHIPYARD_HASH && \ ./scripts/ubuntu-req.sh 1>/dev/null +CMD ["/bin/sh"] + # BUILD IMAGE WITH TOOLCHAINS @@ -65,5 +67,3 @@ RUN cd chipyard && \ ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] # END IMAGE CUSTOMIZATIONS - -CMD ["/bin/sh"] From 1f8b59732d5cebc01c2b22f977593e7973c1c357 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Fri, 5 Feb 2021 22:04:01 -0800 Subject: [PATCH 29/40] Uses latest version of ci-image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aac8294029..f147d97225 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: ucbbar/chipyard-ci-image:d2b3dca + - image: ucbbar/chipyard-ci-image:34e56d5 environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit From 84cfc733de8be56ef81085bd576a33e8b5474cee Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 8 Feb 2021 14:16:27 -0800 Subject: [PATCH 30/40] Removed default argument --- dockerfiles/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 5a505fd950..7bb5e3cefc 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,10 +1,9 @@ -# This is a full chipyard setup +### This is a full chipyard setup # BUILD BASE FOR CI FROM ubuntu:18.04 as base -# Default branch dev for experimental version -ARG CHIPYARD_HASH=dev +ARG CHIPYARD_HASH MAINTAINER https://groups.google.com/forum/#!forum/chipyard @@ -40,8 +39,6 @@ RUN git clone https://github.com/ucb-bar/chipyard.git && \ git checkout $CHIPYARD_HASH && \ ./scripts/ubuntu-req.sh 1>/dev/null -CMD ["/bin/sh"] - # BUILD IMAGE WITH TOOLCHAINS @@ -67,3 +64,5 @@ RUN cd chipyard && \ ENTRYPOINT ["chipyard/scripts/entrypoint.sh"] # END IMAGE CUSTOMIZATIONS + +CMD ["/bin/sh"] From 75bc39ab5a34931aeed15ae83370a8f5538d112c Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 8 Feb 2021 14:22:38 -0800 Subject: [PATCH 31/40] Uses latest ci image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f147d97225..aedf6038db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: ucbbar/chipyard-ci-image:34e56d5 + - image: ucbbar/chipyard-ci-image:84cfc73 environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit From 323394f43743730bcbfedb60e056386d60df2197 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 8 Feb 2021 14:45:04 -0800 Subject: [PATCH 32/40] Increased timeout limit --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aedf6038db..500b774ac7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -112,7 +112,7 @@ commands: default: "run-tests.sh" timeout: type: string - default: "10m" + default: "15m" steps: - setup-tools: tools-version: "<< parameters.tools-version >>" From d7be658ca5766e8fbaee5fcca6f0cde268a6e3e0 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sat, 13 Feb 2021 23:39:09 -0800 Subject: [PATCH 33/40] Added information about docker image --- docs/Chipyard-Basics/Initial-Repo-Setup.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/Chipyard-Basics/Initial-Repo-Setup.rst b/docs/Chipyard-Basics/Initial-Repo-Setup.rst index 78301088d8..53bc12d4cb 100644 --- a/docs/Chipyard-Basics/Initial-Repo-Setup.rst +++ b/docs/Chipyard-Basics/Initial-Repo-Setup.rst @@ -66,6 +66,22 @@ You can put this in your ``.bashrc`` or equivalent environment setup file to get These variables need to be set for the ``make`` system to work properly. +Pre-built Docker Image +------------------------------------------- + +An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all necessary dependencies and toolchains installed. +First pull the Docker image. Run: + +.. code-block:: shell + + sudo docker pull ucbbar/chipyard-image + +To run the Docker container in an interactive shell, run: + +.. code-block:: shell + + sudo docker run -it ucbbar/chipyard-image bash + What's Next? ------------------------------------------- From 788b22a26218b02f3da373a19bc95746a6299421 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sun, 14 Feb 2021 18:32:41 -0800 Subject: [PATCH 34/40] Added more details on docker image --- docs/Chipyard-Basics/Initial-Repo-Setup.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Chipyard-Basics/Initial-Repo-Setup.rst b/docs/Chipyard-Basics/Initial-Repo-Setup.rst index 53bc12d4cb..eedb19595a 100644 --- a/docs/Chipyard-Basics/Initial-Repo-Setup.rst +++ b/docs/Chipyard-Basics/Initial-Repo-Setup.rst @@ -69,12 +69,12 @@ These variables need to be set for the ``make`` system to work properly. Pre-built Docker Image ------------------------------------------- -An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all necessary dependencies and toolchains installed. -First pull the Docker image. Run: +An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all dependencies installed, chipyard cloned, and toolchains initialized. Each image comes with a tag that corresponds to the version of Chipyard cloned/set-up in that image. Not including a tag during the pull will pull the image with the latest version of chipyard. +First, pull the Docker image. Run: .. code-block:: shell - sudo docker pull ucbbar/chipyard-image + sudo docker pull ucbbar/chipyard-image: To run the Docker container in an interactive shell, run: From 0f3a70306fab5890f1c430383a14d9848ba8d21f Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Sun, 14 Feb 2021 18:33:05 -0800 Subject: [PATCH 35/40] Increased timeout to 20m --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 500b774ac7..46c9f156f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -112,7 +112,7 @@ commands: default: "run-tests.sh" timeout: type: string - default: "15m" + default: "20m" steps: - setup-tools: tools-version: "<< parameters.tools-version >>" From f06afa2a750db1a895c1e5d394a51c6b7de9d3f3 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Mon, 15 Feb 2021 00:29:46 -0800 Subject: [PATCH 36/40] Increased timeout to 20m for chipyard-hetero tests --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 46c9f156f6..b3293e8d7c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -231,7 +231,7 @@ jobs: - run-tests: group-key: "group-cores" project-key: "chipyard-hetero" - timeout: "15m" + timeout: "20m" chipyard-boom-run-tests: executor: main-env steps: From 18aa600ae132dd2d4a440ada4ab76330dbd8f4eb Mon Sep 17 00:00:00 2001 From: Abraham Gonzalez Date: Mon, 15 Feb 2021 13:13:10 -0800 Subject: [PATCH 37/40] Fix Chipyard spelling in docs [ci skip] --- docs/Chipyard-Basics/Initial-Repo-Setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Chipyard-Basics/Initial-Repo-Setup.rst b/docs/Chipyard-Basics/Initial-Repo-Setup.rst index eedb19595a..10d50f7ad2 100644 --- a/docs/Chipyard-Basics/Initial-Repo-Setup.rst +++ b/docs/Chipyard-Basics/Initial-Repo-Setup.rst @@ -69,7 +69,7 @@ These variables need to be set for the ``make`` system to work properly. Pre-built Docker Image ------------------------------------------- -An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all dependencies installed, chipyard cloned, and toolchains initialized. Each image comes with a tag that corresponds to the version of Chipyard cloned/set-up in that image. Not including a tag during the pull will pull the image with the latest version of chipyard. +An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all dependencies installed, Chipyard cloned, and toolchains initialized. Each image comes with a tag that corresponds to the version of Chipyard cloned/set-up in that image. Not including a tag during the pull will pull the image with the latest version of Chipyard. First, pull the Docker image. Run: .. code-block:: shell From d6475349dd3bac2bdac2cf045e965e88b6233a3f Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 18 Feb 2021 18:56:47 -0800 Subject: [PATCH 38/40] Added more details on which tools are initialized in the docker image --- docs/Chipyard-Basics/Initial-Repo-Setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Chipyard-Basics/Initial-Repo-Setup.rst b/docs/Chipyard-Basics/Initial-Repo-Setup.rst index 10d50f7ad2..a3de22b880 100644 --- a/docs/Chipyard-Basics/Initial-Repo-Setup.rst +++ b/docs/Chipyard-Basics/Initial-Repo-Setup.rst @@ -69,7 +69,7 @@ These variables need to be set for the ``make`` system to work properly. Pre-built Docker Image ------------------------------------------- -An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all dependencies installed, Chipyard cloned, and toolchains initialized. Each image comes with a tag that corresponds to the version of Chipyard cloned/set-up in that image. Not including a tag during the pull will pull the image with the latest version of Chipyard. +An alternative to setting up the Chipyard repository locally is to pull the pre-built Docker image from Docker Hub. The image comes with all dependencies installed, Chipyard cloned, and toolchains initialized. This image sets up baseline Chipyard (not including FireMarshal, FireSim, and Hammer initializations). Each image comes with a tag that corresponds to the version of Chipyard cloned/set-up in that image. Not including a tag during the pull will pull the image with the latest version of Chipyard. First, pull the Docker image. Run: .. code-block:: shell From 9c650dea7c2e2b587a72d486bb3f1c462858c3b7 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 18 Feb 2021 18:58:11 -0800 Subject: [PATCH 39/40] Removed apt-get upgrade and edited for image size --- dockerfiles/Dockerfile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 7bb5e3cefc..d9fcfa0f47 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -9,15 +9,13 @@ MAINTAINER https://groups.google.com/forum/#!forum/chipyard # Install dependencies for ubuntu-req.sh RUN apt-get update && \ - apt-get upgrade -y && \ - apt-get install -y \ + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ curl \ git \ - sudo - -# Stopping docker keyboard-config from disrupting ubuntu-req.sh -RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration && \ - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y console-setup + sudo \ + ca-certificates \ + keyboard-configuration \ + console-setup # Adds a new user called riscvuser RUN groupadd --gid 3434 riscvuser \ @@ -37,7 +35,8 @@ ENV PATH="$RISCV/bin:$PATH" RUN git clone https://github.com/ucb-bar/chipyard.git && \ cd chipyard && \ git checkout $CHIPYARD_HASH && \ - ./scripts/ubuntu-req.sh 1>/dev/null + ./scripts/ubuntu-req.sh 1>/dev/null && \ + sudo rm -rf /var/lib/apt/lists/* # BUILD IMAGE WITH TOOLCHAINS From b12fa04dbb29d43bcd9ef897925ca3dea9eb1d51 Mon Sep 17 00:00:00 2001 From: Ella Schwarz Date: Thu, 18 Feb 2021 19:40:04 -0800 Subject: [PATCH 40/40] Updated docker image --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b3293e8d7c..7dcbc80957 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ parameters: executors: main-env: docker: - - image: ucbbar/chipyard-ci-image:84cfc73 + - image: ucbbar/chipyard-ci-image:9c650dea environment: JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit @@ -112,7 +112,7 @@ commands: default: "run-tests.sh" timeout: type: string - default: "20m" + default: "25m" steps: - setup-tools: tools-version: "<< parameters.tools-version >>"