SDWebImage的源代码无法运行的问题

参考链接http://blog.csdn.net/gaoyp/article/details/19916849

从github上下的SDWebImage源文件编译不通过,最后google到了解决方案:

https://github.com/rs/SDWebImage/issues/447

原因就是libwebp是作为一个git的submodules存在的。

点击github网站上的download zip按钮下载的zip文件中没有libwebp的源文件。

.gitmodules 文件

[submodule "Vendors/libwebp"]
    path = Vendors/libwebp
    url = https://github.com/webmproject/libwebp


解决办法如下:

$ git clone https://github.com/rs/SDWebImage.git

$ cd SDWebImage

// 下载submodule
$ git submodule update --init --recursive 

或者直接使用下面一条命令:

$ git clone --recursive https://github.com/rs/SDWebImage.git

你可能感兴趣的:(SDWebImage的源代码无法运行的问题)