本文介绍了ShareKit编译问题-找不到JSONKit的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已按照以下说明设置和配置ShareKit: https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit

I have followed the following instructions in order to setup and configure ShareKit: https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit

当尝试编译我的应用程序时,现在出现以下错误:

When trying to compile my app, I now get the following error:

clang: error: no such file or directory: '/app_root_path/Submodules/ShareKit/Classes/ShareKit/Core/Helpers/../../Submodules/JSONKit/Submodules/ShareKit/Submodules/JSONKit/JSONKit.m'
clang: error: no input files
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1

我尝试重新安装ShareKit,但无法解决问题.

I have tried reinstalling ShareKit, but cannot solve the problem.

任何有关缓解该问题的建议将不胜感激.

Any suggestions about alleviating the problem will be appreciated.

谢谢!

推荐答案

您是否还安装了子模块?

Did you install the submodules as well?

cd Submodules/ShareKit
git submodule init
git submodule update

检出: https://github.com/ShareKit/ShareKit/wiki/Installing -sharekit

这篇关于ShareKit编译问题-找不到JSONKit的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 07:14