Skip to content

Commit a71498e

Browse files
committed
README compile s. fixes
1 parent e06691d commit a71498e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ To generate `libpluto.a`, run:
77
```
88
$ make
99
```
10-
To install it so that gcc can use it directly, run:
10+
To install it so that your compiler can use it directly, run:
1111
```
1212
# make install
1313
```
1414
To compile some examples, run:
1515
```
1616
$ make exp
1717
```
18-
Pre-compiled library files are available in the releases tab
18+
Pre-compiled library files are available in the releases tab (only for Linux x86-64)
1919

2020
### Using the library
2121

@@ -55,7 +55,7 @@ int main()
5555

5656
3. Link the library generated, for example:
5757
```
58-
$ gcc -o program program.c -L<path to the FOLDER where libpluto.a is located> -lpluto # if you have installed the lib already, there is no need to use -L
58+
$ gcc -o program program.c -lpluto # install it before or use -L<lib_folder_path>
5959
```
6060

6161
4. You're done! Just run your program now!
@@ -90,7 +90,7 @@ Comments in the pluto.h file describe what each function/data structure does
9090

9191
### Troubleshooting
9292

93-
1. Check if proper fonts are installed. Pluto uses Unicode characters from `\u2800` to `\u28FF`. I recommend the `Cascadia Mono` font for best quality.
93+
1. Check if proper fonts are installed. Pluto uses Unicode characters from `U+10240(10)` to `U+10495(10)`. I recommend the `Cascadia Mono` font.
9494
2. Check if your terminal supports Unicode
9595
3. Check your locale, lang (pluto only supports UTF-8 currently). I have my locale set to `en_US.UTF-8`. On Arch Linux, which I use, I would use this command to set it:
9696
```

0 commit comments

Comments
 (0)