summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-04-19 11:33:37 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-04-22 02:15:25 -0400
commit5ac9b32112facbf0630313c002f8c9b6ac1c986a (patch)
tree2f453fdd6821f6b82d306feeab7c293abd024b00 /mk
parent250f57c17f72ba11eda3655f553957f6f04c0399 (diff)
downloadhaskell-5ac9b32112facbf0630313c002f8c9b6ac1c986a.tar.gz
get-win32-tarballs: Drop i686 architecture
As of #18487 we no longer support 32-bit Windows. Fixes #21372.
Diffstat (limited to 'mk')
-rwxr-xr-xmk/get-win32-tarballs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/get-win32-tarballs.py b/mk/get-win32-tarballs.py
index 351212ba71..1ee0580051 100755
--- a/mk/get-win32-tarballs.py
+++ b/mk/get-win32-tarballs.py
@@ -11,7 +11,7 @@ from sys import stderr
TARBALL_VERSION = '0.7'
BASE_URL = "https://downloads.haskell.org/ghc/mingw/{}".format(TARBALL_VERSION)
DEST = Path('ghc-tarballs/mingw-w64')
-ARCHS = ['i686', 'x86_64', 'sources']
+ARCHS = ['x86_64', 'sources']
def file_url(arch: str, fname: str) -> str:
return "{base}/{arch}/{fname}".format(
@@ -61,7 +61,7 @@ def main() -> None:
parser.add_argument(
'arch',
choices=ARCHS + ['all'],
- help="Architecture to fetch (either i686, x86_64, sources, or all)")
+ help="Architecture to fetch (either x86_64, sources, or all)")
args = parser.parse_args()
action = { 'download' : fetch_arch, 'verify' : verify, 'list' : list_arch }[args.mode]