Skip to content

Commit 4a45281

Browse files
authored
Update README.md
1 parent 6408879 commit 4a45281

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ You can easily download them from Sourceforge:(_Links Below_)
2525
---
2626

2727
## Extracting & Linking: (Read & Execute Carefully)
28-
1. **Prerequisites (Native & Cross-Compiler):**
28+
**1. Prerequisites (Native & Cross-Compiler):**
2929
* Update your environment `sudo apt-get update && dist-upgrade`
3030
* Install Build-essential gawk, texinfo, git, bison `sudo apt install build-essential gawk git texinfo bison`
3131

32-
2. **Extracting (Native & Cross-Compiler):**
32+
**2. Extracting (Native & Cross-Compiler):**
3333
* Extract files using cmd: `tar xf <filename e.g gcc-8.2.0.tar.bz2>`
3434

35-
3. **Linking (Native & Cross-Compiler):**
35+
**3. Linking (Native & Cross-Compiler):**
3636
* Move files to its correct location (ie `/opt`) using cmd: `sudo mv <extracted folder-name e.g gcc-8.2.0> /opt`
3737
* Properly configure paths as below(Permanently by adding it to your `.bashrc`):
3838
`echo 'export PATH=/opt/<extracted folder-name e.g gcc-8.2.0>/bin:$PATH' >> .bashrc`
3939
`echo 'export LD_LIBRARY_PATH=/opt/<extracted folder-name e.g gcc-8.2.0>/lib:$LD_LIBRARY_PATH' >> .bashrc`
4040

41-
4. **Manage Links as below:(Native Compiler Only)**
41+
**4. Manage Links as below:(Native Compiler Only)**
4242
`source .bashrc`
4343
`sudo ln -s /usr/include/arm-linux-gnueabihf/sys /usr/include/sys`
4444
`sudo ln -s /usr/include/arm-linux-gnueabihf/bits /usr/include/bits`
@@ -48,7 +48,7 @@ You can easily download them from Sourceforge:(_Links Below_)
4848
`sudo ln -s /usr/lib/arm-linux-gnueabihf/crt1.o /usr/lib/crt1.o`
4949
`sudo ln -s /usr/lib/arm-linux-gnueabihf/crtn.o /usr/lib/crtn.o`
5050

51-
5. **Manage Links as below:(Cross-Compiler Only)**
51+
**5. Manage Links as below:(Cross-Compiler Only)**
5252

5353
Temporary fix Hardcoded paths in binaries: [#4](https://github.com/abhiTronix/raspberry-pi-cross-compilers/issues/4#issue-403285170)
5454

@@ -58,7 +58,7 @@ You can easily download them from Sourceforge:(_Links Below_)
5858
sudo ln -s /opt/<extracted folder-name e.g gcc-8.2.0>/arm-linux-gnueabihf/lib/libc.so /opt/cross-pi-gcc-8.2.0/arm-linux-gnueabihf/lib/libc.so
5959
```
6060

61-
6. **Extra step If you want to completely replace previous `gcc-6.3.0` with latest `gcc-8.2.0`[Proceed with caution!]: (Native Compiler Only)**
61+
**6. Extra step If you want to completely replace previous `gcc-6.3.0` with latest `gcc-8.2.0`[Proceed with caution!]: (Native Compiler Only)**
6262
* Download this script [experimental_6-3_w_8-2.sh](https://github.com/abhiTronix/raspberry-pi-cross-compilers/blob/master/Tools/experimental_6-3_w_8-2.sh)(_right click and "Save As"_) and execute following commands:
6363

6464
```
@@ -74,7 +74,7 @@ You can easily download them from Sourceforge:(_Links Below_)
7474
```
7575

7676

77-
7. **Extra step to use Cross-Compiler Binaries with Cmake: (Cross-Compiler Only)**
77+
**7. Extra step to use Cross-Compiler Binaries with Cmake: (Cross-Compiler Only)**
7878

7979

8080
Enable CMake's implicit directory feature by injecting the following lines into toolchain file: (Refer Issue:[#3](https://github.com/abhiTronix/raspberry-pi-cross-compilers/issues/3#issuecomment-453117354))

0 commit comments

Comments
 (0)