diff options
author | Thibault Charbonnier <thibaultCha@users.noreply.github.com> | 2016-01-29 12:28:06 -0800 |
---|---|---|
committer | Thibault Charbonnier <thibaultCha@users.noreply.github.com> | 2016-01-29 12:28:06 -0800 |
commit | 92be31204cc713afa0fe584ac86a8466ecce9ba9 (patch) | |
tree | 6498f461db89271334bc05bd648ab1e4373fbf21 | |
parent | 8a7ae27c5da39f518e371166a9f9a49875e89611 (diff) | |
parent | 3dc7389e17245796a1cc35555a22fb3567008dd7 (diff) | |
download | lua_uuid-92be31204cc713afa0fe584ac86a8466ecce9ba9.tar.gz lua_uuid-92be31204cc713afa0fe584ac86a8466ecce9ba9.tar.bz2 lua_uuid-92be31204cc713afa0fe584ac86a8466ecce9ba9.zip |
Merge pull request #4 from mars/patch-1
Explain the `libuuid` requirement.
-rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -2,6 +2,20 @@ Lua library that generate UUIDs leveraging [libuuid](http://linux.die.net/man/3/libuuid). +## Requirements + +The `uuid/uuid.h` header must be available in the system `INCLUDE_PATH`, otherwise you will hit an error like: + +> ld: library not found for -luuid +> … +> Failed compiling module lua_uuid.so + +* Mac OS X + * `brew install ossp-uuid` +* Debian Linux; Ubuntu + * `apt-get install uuid-dev` + + ## Usage To generate a new UUID string: |