Skip to content

Commit

Permalink
Remove the "mini" variant
Browse files Browse the repository at this point in the history
After the growth of various dependencies, the added weight of a C++
toolchain has become relatively small. I no longer feel it's worth
including as a separate variant.
  • Loading branch information
skeeto committed Jul 27, 2023
1 parent 0814c80 commit 1de55df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
6 changes: 2 additions & 4 deletions multibuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ suffix="$(git describe --exact-match 2>/dev/null | tr v - || true)"

usage() {
cat <<EOF
usage: multibuild.sh [-48abfhmnOs] [-s SUFFIX]
usage: multibuild.sh [-48abfhnOs] [-s SUFFIX]
-4 Enable i686 build (default: no)
-8 Enable x86_64 build (default: auto)
-a All: Enable all builds
-b Enable vanilla build (default: auto)
-f Enable Fortran build (default: no)
-h Print this help message
-m Enable mini build (default: no)
-n Dry run, print commands but do nothing
-O Compact with advzip (default: no, less compatible)
-s SUFFIX Append a version suffix (e.g. "-s -1.2.3", default:auto)
Expand All @@ -34,11 +33,10 @@ while getopts 48abfhmnOs: opt; do
case $opt in
4) arch="$arch w64devkit-i686";;
8) arch="$arch w64devkit";;
a) flavors="X -mini -fortran"; arch="w64devkit w64devkit-i686";;
a) flavors="X -fortran"; arch="w64devkit w64devkit-i686";;
b) flavors="$flavors X";;
f) flavors="$flavors -fortran";;
h) usage; exit 0;;
m) flavors="$flavors -mini";;
n) dryrun=echo;;
O) compact=yes;;
s) suffix="$OPTARG";;
Expand Down
21 changes: 0 additions & 21 deletions src/variant-mini.patch

This file was deleted.

0 comments on commit 1de55df

Please sign in to comment.