diff options
author | Thomas Huth <thuth@redhat.com> | 2020-07-15 19:47:07 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-09-03 12:46:56 +0200 |
commit | 91bedaaeb6e192a182cc51cdd7a7e61e74b8d525 (patch) | |
tree | 54f161d83ef1a55287f94722c0a99792fc529549 | |
parent | 5fe407656231ef3e34246fcfe32329d11887b6f9 (diff) | |
download | qemu-91bedaaeb6e192a182cc51cdd7a7e61e74b8d525.zip qemu-91bedaaeb6e192a182cc51cdd7a7e61e74b8d525.tar.gz qemu-91bedaaeb6e192a182cc51cdd7a7e61e74b8d525.tar.bz2 |
cirrus.yml: Compile FreeBSD with -Werror
Compiler warnings currently go unnoticed in our FreeBSD builds, since
-Werror is only enabled for Linux and MinGW builds by default. So let's
enable them here now, too.
Reviewed-by: Ed Maste <emaste@freebsd.org>
Message-Id: <20200728074405.13118-3-thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index f287d23..b50da72 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,7 +12,7 @@ freebsd_12_task: script: - mkdir build - cd build - - ../configure || { cat config.log; exit 1; } + - ../configure --enable-werror || { cat config.log; exit 1; } - gmake -j8 - gmake V=1 check |