Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umrninside/mlogevo-stdlib
"Standard libraries" for MlogEvo.
https://github.com/umrninside/mlogevo-stdlib
Last synced: about 2 months ago
JSON representation
"Standard libraries" for MlogEvo.
- Host: GitHub
- URL: https://github.com/umrninside/mlogevo-stdlib
- Owner: UMRnInside
- License: mit
- Created: 2022-11-20T08:04:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-15T02:45:44.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T02:07:59.184Z (2 months ago)
- Language: C
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MlogEvo-stdlib
"Standard libraries" for MlogEvo.It's hard to distribute MlogEvo Standard Library with MlogEvo, for the `egg` format does NOT include those C header files, and `wheel` format drops its hierarchy.
## Install
1. Download the standard library. Of course, you can click Code -> Download ZIP (on GitHub) instead.
```bash
# Use git
git clone https://github.com/UMRnInside/MlogEvo-stdlib --depth 1
```
2. Install this into Python include directory.
```bash
cd MlogEvo-stdlib
python3 install_stdlib.py
```
Of course, you can literally copy-paste the whole `mlogevo` directory instead.## Uninstall
```bash
cd MlogEvo-stdlib
python3 uninstall_stdlib.py
```# Usage without installation
```bash
python3 -m mlogevo -I/path/to/MlogEvo-stdlib/include your-source-code.c
```