--
You received this message because you are subscribed to the Google Groups "Crystal" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crystal-lang...@googlegroups.com.
To post to this group, send email to crysta...@googlegroups.com.
Visit this group at https://groups.google.com/group/crystal-lang.
To view this discussion on the web visit https://groups.google.com/d/msgid/crystal-lang/a5cbe867-3b3a-4be5-833b-d4184003636f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,If you can provide a link to the code (is it in github?) we could try to help you, otherwise there's not much we can do.
--
You received this message because you are subscribed to the Google Groups "Crystal" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crystal-lang...@googlegroups.com.
To post to this group, send email to crysta...@googlegroups.com.
Visit this group at https://groups.google.com/group/crystal-lang.
To view this discussion on the web visit https://groups.google.com/d/msgid/crystal-lang/e5961ad5-0ed5-46f9-91f5-b313352c825c%40googlegroups.com.
Hi,
In Mac, I did `brew install mosquitto`, then ran this script:~~~@[Link("mosquitto")]lib LibMosquittoalias Int = LibC::Intfun init = mosquitto_lib_init : Intfun version = mosquitto_lib_version(major : Int*, minor : Int*, revision : Int*) : Int*endinit = LibMosquitto.initpp initLibMosquitto.version(out major, out minor, out revision)pp major, minor, revision~~~And got as output:~~~
init = 0
major = 1
minor = 4
revision = 8
~~~On what platform are you? You have to make sure libmosquitto in the system's library path.