No output from an executable when linked to a dll (both executable and dll build by me)

2016-01-15 Thread stavros vagionitis
Hi ppl, I have a problem when running an executable, it seems that is running fine, but I don't get any output in the console. I need to build the [Paho MQQT Client](https://eclipse.org/paho/clients/c/) in Cygwin. So I modified the Makefile in order to build .dll instead of .so files. I have atta

Re: No output from an executable when linked to a dll (both executable and dll build by me)

2016-01-18 Thread stavros vagionitis
tp://stackoverflow.com/a/27105757/619410), gave executable permissions to the library. During installation of the library, the makefile gave 0644(read/write) permissions only and not executable. Changing this to 755 (read/write/execute), I was able to run the ./MQTTAsync_publish.exe with no other problems. R