.travis.yml: default the --disable-system build to --static
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 17 Jun 2019 15:35:22 +0000 (16:35 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Thu, 4 Jul 2019 18:23:07 +0000 (19:23 +0100)
It's fairly common to build qemu-user binaries with --static linking
so the binary can be copied around without libraries. Enable --static
in the default qemu-user build to cover this.

There are other qemu-user builds that use dynamic linking so they
should catch any problems there.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
.travis.yml

index 279658b11615d2e2fd97dfce8a40595acac50789..66285554a1f12efef2d6bfaea0fcab2e0e3762fa 100644 (file)
@@ -80,7 +80,7 @@ script:
 matrix:
   include:
     - env:
-        - CONFIG="--disable-system"
+        - CONFIG="--disable-system --static"
 
 
     # we split the system builds as it takes a while to build them all