From 16c697b30e6e68d1dbdc0acabf3a70aab367cbf7 Mon Sep 17 00:00:00 2001 Message-Id: <16c697b30e6e68d1dbdc0acabf3a70aab367cbf7.1717881512.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 8 Aug 2017 13:28:08 +0200 Subject: [PATCH] setup-ubuntu.sh: Add g++-multilib Organization: Straylight/Edgeware From: Fredrik Fornwall The g++-multilib package is required for nodejs-current on 32-bit arm and i686 builds. --- scripts/setup-ubuntu.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 89dfe3fb..7a167870 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -10,6 +10,7 @@ PACKAGES+=" clang" # Used by golang, useful to have same compiler building. PACKAGES+=" curl" # Used for fetching sources. PACKAGES+=" ed" # Used by bc PACKAGES+=" flex" +PACKAGES+=" g++-multilib" # For building nodejs-current mkpeephole for 32-bit arm and i686. PACKAGES+=" gettext" # Provides 'msgfmt' which the apt build uses. PACKAGES+=" git" # Used by the neovim build. PACKAGES+=" gperf" # Used by the fontconfig build. -- [mdw]