summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-04-19 11:33:37 -0400
committerBen Gamari <ben@smart-cactus.org>2022-04-19 11:35:10 -0400
commit98de2e42b7ae8460e4067747b225fc9ea6b8c170 (patch)
tree513daa914d0afd84c271d518676e9cda8b131ea1
parentd8392f6a714b5646d43ed54eee0d028f714da717 (diff)
downloadhaskell-wip/T21372.tar.gz
get-win32-tarballs: Drop i686 architecturewip/T21372
As of #18487 we no longer support 32-bit Windows. Fixes #21372.
-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]