Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

[docs] 1.8.x update links and correct list of tools to show as a bullet list #1031

Merged
merged 5 commits into from
Jan 15, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions docs/02_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,46 @@ EOSIO.CDT currently supports Mac OS X brew, Linux x86_64 Debian packages, and Li
**If you have previously installed EOSIO.CDT, run the `uninstall` script (it is in the directory where you cloned EOSIO.CDT) before downloading and using the binary releases.**

## Mac OS X Brew Install

```sh
$ brew tap eosio/eosio.cdt
$ brew install eosio.cdt
```

## Mac OS X Brew Uninstall

```sh
$ brew remove eosio.cdt
```

## Debian Package Install

```sh
$ wget https://github.com/eosio/eosio.cdt/releases/download/v1.6.3/eosio.cdt_1.6.3-1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio.cdt_1.6.3-1-ubuntu-18.04_amd64.deb
$ wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
```

## Debian Package Uninstall

```sh
$ sudo apt remove eosio.cdt
```

## RPM Package Install

```sh
$ wget https://github.com/eosio/eosio.cdt/releases/download/v1.6.3/eosio.cdt-1.6.3-1.el7.x86_64.rpm
$ sudo yum install ./eosio.cdt-1.6.3-1.el7.x86_64.rpm
$ wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
$ sudo yum install ./eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
```

## RPM Package Uninstall

```sh
$ sudo yum remove eosio.cdt
```

# Guided Installation or Building from Scratch

```sh
$ git clone --recursive https://github.com/eosio/eosio.cdt
$ cd eosio.cdt
Expand All @@ -64,8 +71,8 @@ $ sudo rm -fr /usr/local/lib/cmake/eosio.cdt
$ sudo rm /usr/local/bin/eosio-*
```


# Installed Tools

* eosio-cpp
* eosio-cc
* eosio-ld
Expand All @@ -78,13 +85,13 @@ $ sudo rm /usr/local/bin/eosio-*
* eosio-objdump
* eosio-readelf

Below tools are not installed after brew install, you get them only by building the repository and installing from scracth, [see here](#guided_installation_or_building_from_scratch)
eosio-abidiff
eosio-ranlib
eosio-ar
eosio-objdump
eosio-readelf
The following tools are not installed after brew install, you get them when you build the repository and install it from scratch, [see here](#guided-installation-or-building-from-scratch):

* eosio-abidiff
* eosio-ranlib
* eosio-ar
* eosio-objdump
* eosio-readelf

License
[MIT](../LICENSE)
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ To modify data in the multi index table defined in the above tutorial, you will
}
```

[[Info | Full example location]
[[Info | Full example location]]
| A full example project demonstrating the instantiation and usage of multi index table can be found [here](https://github.com/EOSIO/eosio.cdt/tree/master/examples/multi_index_example).