Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Azure SDK。在 SDK 中,我包含了 cJSON 功能,我知道我需要将 cJSON.h 链接到我的代码。但是在 azure makefile 中,我发现它很难。帮助链接 cJSON 头文件。
您可以将 json 库添加到 makefile以解决此问题。
添加
-ljson \
到app目录中makefile中的linkflags,然后能够成功编译。
这是类似的线程。