mirror of
https://github.com/kevinnlsamuel/stdouterr.git
synced 2025-12-06 09:55:58 +05:30
docs (README): add compilation and installation instructions
This commit is contained in:
36
README.md
36
README.md
@@ -16,6 +16,42 @@ have a readily available tool i can use 🤓✨
|
|||||||
|
|
||||||
🥚 initialised
|
🥚 initialised
|
||||||
|
|
||||||
|
### how to use ?
|
||||||
|
|
||||||
|
not distributing compiled versions yet (it's not even released!)
|
||||||
|
|
||||||
|
so you can compile it yourself
|
||||||
|
|
||||||
|
#### dependencies
|
||||||
|
- `stdio.h`
|
||||||
|
- `stdlib.h`
|
||||||
|
both of which you most likely got when installing your compiler
|
||||||
|
|
||||||
|
if for some reason you don't have it and your compilation fails
|
||||||
|
#### Debian / Ubuntu / family
|
||||||
|
install the package named `libc6-dev`
|
||||||
|
#### RHEL / Fedora / CentOS family
|
||||||
|
install the package named `glibc-devel`
|
||||||
|
#### other
|
||||||
|
sorry no idea. Google will be your friend tho
|
||||||
|
|
||||||
|
#### compilation
|
||||||
|
```shell
|
||||||
|
gcc -o stdouterr src/main.c
|
||||||
|
```
|
||||||
|
|
||||||
|
#### installation
|
||||||
|
##### only for current user
|
||||||
|
```shell
|
||||||
|
cp ./stdouterr ~/.local/bin/
|
||||||
|
# OR
|
||||||
|
cp ./stdouterr ~/bin
|
||||||
|
```
|
||||||
|
##### for all users on the system
|
||||||
|
```
|
||||||
|
# as root or using sudo
|
||||||
|
cp ./stdouterr /usr/local/bin
|
||||||
|
```
|
||||||
|
|
||||||
### contributing
|
### contributing
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user