From 5f0dc153dd317ed1eaf8bb7fdf6b37268f951eac Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 14 Mar 2021 21:38:36 -0700 Subject: [PATCH] debian-setup: include GCC and G++ in the basic list. At least on my just-now-installed Kubuntu 20.04 VM, G++ wasn't installed by default, and you need that to compile Wireshark (you can avoid it if you're not building the GUI code, but the GUI code is Qt-based, so it's in C++). Add both GCC and G++ to the basic list. --- tools/debian-setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/debian-setup.sh b/tools/debian-setup.sh index 3960f1f6a4..46d51b11bb 100755 --- a/tools/debian-setup.sh +++ b/tools/debian-setup.sh @@ -50,7 +50,9 @@ for arg; do esac done -BASIC_LIST="libglib2.0-dev \ +BASIC_LIST="gcc \ + g++\ + libglib2.0-dev \ qttools5-dev \ qttools5-dev-tools \ libqt5svg5-dev \