diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-05-19 23:18:21 -0600 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-05-19 23:18:53 -0600 |
commit | a76c8a5256c926f0a040b4c7085a631ef9b74aa8 (patch) | |
tree | 99838f5b57c99965e9ec444808776d3a7fd7048d | |
parent | d453c9c388b6d25d755d2683dbf3be52781feaff (diff) |
qemu: add -fcommon for compiling ping with gcc-10
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/tests/qemu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/qemu/Makefile b/src/tests/qemu/Makefile index 45728b1..a3b4a81 100644 --- a/src/tests/qemu/Makefile +++ b/src/tests/qemu/Makefile @@ -350,7 +350,7 @@ $(IPUTILS_PATH)/.installed: $(IPUTILS_TAR) touch $@ $(IPUTILS_PATH)/ping: | $(IPUTILS_PATH)/.installed $(USERSPACE_DEPS) - $(MAKE) -C $(IPUTILS_PATH) USE_CAP=no USE_IDN=no USE_NETTLE=no USE_CRYPTO=no ping + $(MAKE) -C $(IPUTILS_PATH) USE_CAP=no USE_IDN=no USE_NETTLE=no USE_CRYPTO=no CFLAGS="-fcommon $(CFLAGS)" ping $(STRIP) -s $@ $(BASH_PATH)/.installed: $(BASH_TAR) |