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

Commit aeed122

Browse files
author
ovi
authored
Merge pull request #1031 from EOSIO/docs/1.8.x-various-updates
[docs] 1.8.x update links and correct list of tools to show as a bullet list
2 parents 9bc79ec + 0004f35 commit aeed122

File tree

2 files changed

+33
-26
lines changed

2 files changed

+33
-26
lines changed

docs/02_installation.md

+32-25
Original file line numberDiff line numberDiff line change
@@ -7,46 +7,53 @@ EOSIO.CDT currently supports Mac OS X brew, Linux x86_64 Debian packages, and Li
77
**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.**
88

99
## Mac OS X Brew Install
10+
1011
```sh
11-
$ brew tap eosio/eosio.cdt
12-
$ brew install eosio.cdt
12+
brew tap eosio/eosio.cdt
13+
brew install eosio.cdt
1314
```
1415

1516
## Mac OS X Brew Uninstall
17+
1618
```sh
17-
$ brew remove eosio.cdt
19+
brew remove eosio.cdt
1820
```
1921

2022
## Debian Package Install
23+
2124
```sh
22-
$ wget https://github.com/eosio/eosio.cdt/releases/download/v1.6.3/eosio.cdt_1.6.3-1-ubuntu-18.04_amd64.deb
23-
$ sudo apt install ./eosio.cdt_1.6.3-1-ubuntu-18.04_amd64.deb
25+
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
26+
sudo apt install ./eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
2427
```
2528

2629
## Debian Package Uninstall
30+
2731
```sh
28-
$ sudo apt remove eosio.cdt
32+
sudo apt remove eosio.cdt
2933
```
3034

3135
## RPM Package Install
36+
3237
```sh
33-
$ wget https://github.com/eosio/eosio.cdt/releases/download/v1.6.3/eosio.cdt-1.6.3-1.el7.x86_64.rpm
34-
$ sudo yum install ./eosio.cdt-1.6.3-1.el7.x86_64.rpm
38+
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
39+
sudo yum install ./eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
3540
```
3641

3742
## RPM Package Uninstall
43+
3844
```sh
39-
$ sudo yum remove eosio.cdt
45+
sudo yum remove eosio.cdt
4046
```
4147

4248
# Guided Installation or Building from Scratch
49+
4350
```sh
44-
$ git clone --recursive https://github.com/eosio/eosio.cdt
45-
$ cd eosio.cdt
46-
$ mkdir build
47-
$ cd build
48-
$ cmake ..
49-
$ make -j8
51+
git clone --recursive https://github.com/eosio/eosio.cdt
52+
cd eosio.cdt
53+
mkdir build
54+
cd build
55+
cmake ..
56+
make -j8
5057
```
5158

5259
From here onward you can build your contracts code by simply exporting the `build` directory to your path, so you don't have to install globally (makes things cleaner).
@@ -59,13 +66,13 @@ sudo make install
5966
## Uninstall after manual installation
6067

6168
```sh
62-
$ sudo rm -fr /usr/local/eosio.cdt
63-
$ sudo rm -fr /usr/local/lib/cmake/eosio.cdt
64-
$ sudo rm /usr/local/bin/eosio-*
69+
sudo rm -fr /usr/local/eosio.cdt
70+
sudo rm -fr /usr/local/lib/cmake/eosio.cdt
71+
sudo rm /usr/local/bin/eosio-*
6572
```
6673

67-
6874
# Installed Tools
75+
6976
* eosio-cpp
7077
* eosio-cc
7178
* eosio-ld
@@ -78,13 +85,13 @@ $ sudo rm /usr/local/bin/eosio-*
7885
* eosio-objdump
7986
* eosio-readelf
8087

81-
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)
82-
eosio-abidiff
83-
eosio-ranlib
84-
eosio-ar
85-
eosio-objdump
86-
eosio-readelf
88+
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):
8789

90+
* eosio-abidiff
91+
* eosio-ranlib
92+
* eosio-ar
93+
* eosio-objdump
94+
* eosio-readelf
8895

8996
License
9097
[MIT](../LICENSE)

docs/06_how-to-guides/40_multi-index/how-to-modify-data-in-a-multi-index-table.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ To modify data in the multi index table defined in the above tutorial, you will
3737
}
3838
```
3939

40-
[[Info | Full example location]
40+
[[Info | Full example location]]
4141
| 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).

0 commit comments

Comments
 (0)