@@ -172,21 +172,22 @@ Each tool version may come in different build flavours for different OS. Each fl
172172array. The IDE will take care to install the right flavour for the user's OS by matching the ` host ` value with the
173173following table or fail if a needed flavour is missing.
174174
175- | OS flavour | ` host ` regexp | suggested ` host ` value |
176- | --------------- | ------------------------------------- | ----------------------------------- |
177- | Linux 32 | ` i[3456]86-.*linux-gnu ` | ` i686-linux-gnu ` |
178- | Linux 64 | ` x86_64-.*linux-gnu ` | ` x86_64-linux-gnu ` |
179- | Linux Arm | ` arm.*-linux-gnueabihf ` | ` arm-linux-gnueabihf ` |
180- | Linux Arm64 | ` (aarch64\|arm64)-linux-gnu ` | ` aarch64-linux-gnu ` |
181- | Linux RISC-V 64 | ` riscv64-linux-gnu ` | ` riscv64-linux-gnu ` |
182- | Windows 32 | ` i[3456]86-.*(mingw32\|cygwin) ` | ` i686-mingw32 ` or ` i686-cygwin ` |
183- | Windows 64 | ` (amd64\|x86_64)-.*(mingw32\|cygwin) ` | ` x86_64-mingw32 ` or ` x86_64-cygwin ` |
184- | MacOSX 32 | ` i[3456]86-apple-darwin.* ` | ` i686-apple-darwin ` |
185- | MacOSX 64 | ` x86_64-apple-darwin.* ` | ` x86_64-apple-darwin ` |
186- | MacOSX Arm64 | ` arm64-apple-darwin.* ` | ` arm64-apple-darwin ` |
187- | FreeBSD 32 | ` i?[3456]86-freebsd[0-9]* ` | ` i686-freebsd ` |
188- | FreeBSD 64 | ` amd64-freebsd[0-9]* ` | ` amd64-freebsd ` |
189- | FreeBSD Arm | ` arm.*-freebsd[0-9]* ` | ` arm-freebsd ` |
175+ | OS flavour | ` host ` regexp | suggested ` host ` value |
176+ | --------------- | -------------------------------------- | ----------------------------------- |
177+ | Linux 32 | ` i[3456]86-.*linux-gnu ` | ` i686-linux-gnu ` |
178+ | Linux 64 | ` x86_64-.*linux-gnu ` | ` x86_64-linux-gnu ` |
179+ | Linux Arm | ` arm.*-linux-gnueabihf ` | ` arm-linux-gnueabihf ` |
180+ | Linux Arm64 | ` (aarch64\|arm64)-linux-gnu ` | ` aarch64-linux-gnu ` |
181+ | Linux RISC-V 64 | ` riscv64-linux-gnu ` | ` riscv64-linux-gnu ` |
182+ | Windows 32 | ` i[3456]86-.*(mingw32\|cygwin) ` | ` i686-mingw32 ` or ` i686-cygwin ` |
183+ | Windows 64 | ` (amd64\|x86_64)-.*(mingw32\|cygwin) ` | ` x86_64-mingw32 ` or ` x86_64-cygwin ` |
184+ | Windows Arm64 | ` (aarch64\|arm64)-.*(mingw32\|cygwin) ` | ` arm64-mingw32 ` or ` arm64-cygwin ` |
185+ | MacOSX 32 | ` i[3456]86-apple-darwin.* ` | ` i686-apple-darwin ` |
186+ | MacOSX 64 | ` x86_64-apple-darwin.* ` | ` x86_64-apple-darwin ` |
187+ | MacOSX Arm64 | ` arm64-apple-darwin.* ` | ` arm64-apple-darwin ` |
188+ | FreeBSD 32 | ` i?[3456]86-freebsd[0-9]* ` | ` i686-freebsd ` |
189+ | FreeBSD 64 | ` amd64-freebsd[0-9]* ` | ` amd64-freebsd ` |
190+ | FreeBSD Arm | ` arm.*-freebsd[0-9]* ` | ` arm-freebsd ` |
190191
191192The ` host ` value is matched with the regexp, this means that a more specific value for the ` host ` field is allowed (for
192193example you may write ` x86_64-apple-darwin14.1 ` for MacOSX instead of the suggested ` x86_64-apple-darwin ` ), by the way,
0 commit comments