https://github.com/aniketfuryrocks/dlopen_live_reload
Demonstration of live reloading libraries in c
https://github.com/aniketfuryrocks/dlopen_live_reload
c cpp dlopen hotreload livereload
Last synced: 6 months ago
JSON representation
Demonstration of live reloading libraries in c
- Host: GitHub
- URL: https://github.com/aniketfuryrocks/dlopen_live_reload
- Owner: aniketfuryrocks
- Created: 2021-02-20T18:06:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-20T18:12:51.000Z (over 4 years ago)
- Last Synced: 2025-04-01T14:17:48.826Z (7 months ago)
- Topics: c, cpp, dlopen, hotreload, livereload
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dlopen_live_reload
Demonstration of live reloading libraries in c**Run**
```bash
make all
```Open a new terminal side by side in the same directory.
Make changes in `src/lib.c`**Compile it**
```bash
make make_lib
```Press enter on the first terminal and see the output change before you.
This is just a simple demonstration. You can implement state management with hot reloading using the same idea.