mirror of
https://github.com/codota/TabNine.git
synced 2024-11-23 08:43:13 +03:00
remove linux 32 bit support (#500)
* remove linux 32 bit support * add supported architectures to readme
This commit is contained in:
parent
41a7032936
commit
6e83bb75e6
@ -61,7 +61,6 @@ def get_tabnine_path(binary_dir):
|
||||
return os.path.join(binary_dir, *args)
|
||||
|
||||
translation = {
|
||||
("linux", "x32"): "i686-unknown-linux-musl/TabNine",
|
||||
("linux", "x64"): "x86_64-unknown-linux-musl/TabNine",
|
||||
("osx", "x64"): "x86_64-apple-darwin/TabNine",
|
||||
("osx", "arm64"): "aarch64-apple-darwin/TabNine",
|
||||
|
@ -24,6 +24,13 @@ You may be interested in these TabNine clients written by **third parties**:
|
||||
- [Eclipse](https://github.com/GitPopcorn/tabnine-eclipse)
|
||||
- Your client https://github.com/codota/TabNine/blob/master/HowToWriteAClient.md
|
||||
|
||||
# Supported Architectures
|
||||
- x86_64-unknown-linux-musl
|
||||
- x86_64-apple-darwin
|
||||
- aarch64-apple-darwin
|
||||
- i686-pc-windows-gnu
|
||||
- x86_64-pc-windows-gnu
|
||||
|
||||
# Changelogs
|
||||
|
||||
If new features don't work for you, check that you have the most recent version by typing `TabNine::version` into your text editor. If you don't have the most recent version, try restarting your editor.
|
||||
|
@ -5,7 +5,6 @@ set -e
|
||||
|
||||
version="$(curl -sS https://update.tabnine.com/bundles/version)"
|
||||
targets='i686-pc-windows-gnu
|
||||
i686-unknown-linux-musl
|
||||
x86_64-apple-darwin
|
||||
aarch64-apple-darwin
|
||||
x86_64-pc-windows-gnu
|
||||
|
Loading…
Reference in New Issue
Block a user