致命错误:' jssy.h'文件未找到

时间:2017-06-21 18:31:00

标签: xcode macos compiler-errors

在macOS上:

我尝试使用

编译libipatcher
./autogen.sh

然后我收到此错误:

  

libipatcher.cpp:17:10:致命错误:' jssy.h'找不到文件#include" jssy.h"                ^ ~~~~~~~       生成1个错误。       make [1]: * [libipatcher_la-libipatcher.lo]错误1       make:* [check-recursive]错误1

开发人员有一个jssy Xcode项目,jssy.h文件位于该项目中。

我该如何解决?

1 个答案:

答案 0 :(得分:1)

jssy is in a submodule所以你需要获取它。

根据pull using git including submodule,要这样做,要么:

git clone --recursive https://github.com/tihmstar/libipatcher.git

或:

git submodule init; git submodule update

或使用SourceTree。

然后您可以尝试./autogen.sh