Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trevnorris/libuv-examples
Simple examples of how to use libuv
https://github.com/trevnorris/libuv-examples
Last synced: 16 days ago
JSON representation
Simple examples of how to use libuv
- Host: GitHub
- URL: https://github.com/trevnorris/libuv-examples
- Owner: trevnorris
- License: mit
- Created: 2014-04-16T03:58:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-16T05:15:32.000Z (over 10 years ago)
- Last Synced: 2024-10-14T21:59:59.612Z (30 days ago)
- Language: C
- Size: 129 KB
- Stars: 63
- Watchers: 3
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
libuv examples
Each script here is a small example of how to use libuv. Each of these
were compiled against libuv v0.11.22.The Makefile is pretty shabby, but it has a few basics. First, to build
libuv just run:$ make libuv.a
Then you can run make against any given target file by doing:
$ BUILDFILE= make
This will compile the file to ./run. You can also specify the name of
the output file like so:$ OUTFILE= make
That about covers it. If you see any issues/improvements PRs are more
than welcome.