aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-06-17 16:35:22 +0100
committerAlex Bennée <alex.bennee@linaro.org>2019-07-04 19:23:07 +0100
commitc3c1874a9978bb993c4cdf86a020f936e9ad9c61 (patch)
treee39ac680583884d6ca564caecc0181a0c24e8739 /.travis.yml
parentc9b423d6d3fde0132ee6f31d69a1c1370a89ce1a (diff)
.travis.yml: default the --disable-system build to --static
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>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 279658b116..66285554a1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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