···496496497497### Interpreters
498498499499-Versions 2.7, 3.5, 3.6 and 3.7 of the CPython interpreter are available as
500500-respectively `python27`, `python35`, `python36` and `python37`. The aliases
499499+Versions 2.7, 3.5, 3.6, 3.7 and 3.8 of the CPython interpreter are available as
500500+respectively `python27`, `python35`, `python36`, `python37` and `python38`. The aliases
501501`python2` and `python3` correspond to respectively `python27` and
502502-`python37`. The default interpreter, `python`, maps to `python2`. The PyPy
502502+`python38`. The default interpreter, `python`, maps to `python2`. The PyPy
503503interpreters compatible with Python 2.7 and 3 are available as `pypy27` and
504504`pypy3`, with aliases `pypy2` mapping to `pypy27` and `pypy` mapping to
505505`pypy2`. The Nix expressions for the interpreters can be
···7788, libiconv ? null, ncurses
991010-, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform)
1010+, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform) || stdenv.targetPlatform.isiOS
1111, # LLVM is conceptually a run-time-only depedendency, but for
1212 # non-x86, we need LLVM to bootstrap later stages, so it becomes a
1313 # build-time dependency too.
+1-1
pkgs/development/compilers/ghc/8.6.5.nix
···1010, # GHC can be built with system libffi or a bundled one.
1111 libffi ? null
12121313-, useLLVM ? !stdenv.targetPlatform.isx86
1313+, useLLVM ? !stdenv.targetPlatform.isx86 || stdenv.targetPlatform.isiOS
1414, # LLVM is conceptually a run-time-only depedendency, but for
1515 # non-x86, we need LLVM to bootstrap later stages, so it becomes a
1616 # build-time dependency too.
+1-1
pkgs/development/compilers/ghc/8.8.1.nix
···1010, # GHC can be built with system libffi or a bundled one.
1111 libffi ? null
12121313-, useLLVM ? !stdenv.targetPlatform.isx86
1313+, useLLVM ? !stdenv.targetPlatform.isx86 || stdenv.targetPlatform.isiOS
1414, # LLVM is conceptually a run-time-only depedendency, but for
1515 # non-x86, we need LLVM to bootstrap later stages, so it becomes a
1616 # build-time dependency too.
+1-1
pkgs/development/compilers/ghc/head.nix
···1010, enableDwarf ? !stdenv.targetPlatform.isDarwin &&
1111 !stdenv.targetPlatform.isWindows, elfutils # for DWARF support
12121313-, useLLVM ? !stdenv.targetPlatform.isx86
1313+, useLLVM ? !stdenv.targetPlatform.isx86 || stdenv.targetPlatform.isiOS
1414, # LLVM is conceptually a run-time-only depedendency, but for
1515 # non-x86, we need LLVM to bootstrap later stages, so it becomes a
1616 # build-time dependency too.