菜鸟教程小白 发表于 2022-12-12 16:06:11

ios - 安装 Google 的 ios-webkit-debug-proxy


                                            <p><p>我正在尝试让 google 的 ios webkit 调试代理在我的笔记本电脑上运行,运行 ubuntu 15.04。</p>

<p> <a href="https://github.com/google/ios-webkit-debug-proxy" rel="noreferrer noopener nofollow">https://github.com/google/ios-webkit-debug-proxy</a> </p>

<p>我已尽可能按照他们的安装说明进行操作。但是,我是 Web 开发和 linux 的新手,在运行 <code>./autogen.sh</code>.</p> 的步骤中遇到了麻烦

<p>它会运行一段时间的检查,但随后我从终端收到以下错误:</p>

<blockquote>
<p>checking for libimobiledevice... no
configure: error: Package requirements (libimobiledevice-1.0 &gt;= 1.2.0) were not met:</p>

<p>Requested &#39;libimobiledevice-1.0 &gt;= 1.2.0&#39; but version of libimobiledevice is 1.1.6</p>

<p>Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.</p>

<p>Alternatively, you may set the environment variables libimobiledevice_CFLAGS
and libimobiledevice_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.</p>
</blockquote>

<p>我已经尝试自己解决此问题,但无法解决。 </p>

<p>有谁熟悉这个错误以及它想让我做什么?我的文件路径是否困惑或者我需要不同版本的 libimobiledevice(我相信我拥有最新版本)?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>正如错误所说,您需要 libimobiledevice 1.2 或更高版本。从源代码编译是一个解决方案:</p>

<ul>
<li>下载 libimobiledevice 1.2:<a href="http://www.libimobiledevice.org/downloads/libimobiledevice-1.2.0.tar.bz2" rel="noreferrer noopener nofollow">http://www.libimobiledevice.org/downloads/libimobiledevice-1.2.0.tar.bz2</a> </li>
<li>提取:<code>tar xf libimobiledevice-1.2.0.tar.bz2</code></li>
<li><code>cd libimobiledevice-1.2.0</code></li>
<li><code>./configure</code></li>
<li><code>制作</code></li>
<li><code>sudo make install</code></li>
</ul>

<p>您现在应该能够成功构建 ios-webkit-debug-proxy。</p>

<p>之后您可能需要运行 <code>sudo ldconfig</code> 来更新库缓存。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 安装 Google 的 ios-webkit-debug-proxy,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32173312/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32173312/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 安装 Google 的 ios-webkit-debug-proxy