dcristoloveanu / azure-iothub-client-particleio

Other
1 stars 2 forks source link

azure_c_shared_utility/gballoc.h: No such file or directory #1

Open vladtamas opened 8 years ago

vladtamas commented 8 years ago

Hello,

I'm trying to use the example file for MQTT and when I compile the example I get this error:

Veryfing code using this library in Particle Build fails with this error:

azure_iothub_client/iothub_client_ll.c:9:44: fatal error: azure_c_shared_utility/gballoc.h: No such file or directory
 #include "azure_c_shared_utility/gballoc.h"
                                            ^
dcristoloveanu commented 8 years ago

Hi @vladtamas. There are 3 more libraries required to be included: azure_c_shared_utility - This is common code (vector, etc.) azure_umqtt_c - This is a C MQTT implementation httpsclient-particle - This is needed for the TLS layer (contains MatrixSSL).

Let me know if it works.