• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

diff:选项没办法识别和amp;amp;#171;-git和amp;amp;#187;

用户头像
it1352
帮助1

问题说明

当我尝试为python脚本安装依赖程序时,出现此错误:

When I'm trying to install depencies for a python script I get this error:

build/temp.linux-x86_64-2.7/_openssl.c:697:6: error: conflicting types for ‘BIO_new_mem_buf’
 BIO *BIO_new_mem_buf(void *, int);
      ^
In file included from /usr/include/openssl/asn1.h:65:0,
                 from build/temp.linux-x86_64-2.7/_openssl.c:413:
/usr/include/openssl/bio.h:692:6: note: previous declaration of ‘BIO_new_mem_buf’ was here
 BIO *BIO_new_mem_buf(const void *buf, int len);
      ^
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

我尝试在此处:

diff --git a/dev-python/cryptography/cryptography-1.2.2.ebuild b/dev-python/cryptography/cryptography-1.2.2.ebuild

但是然后我得到这个错误 diff:选项无法识别«--git»

But then I get this error diff: option not recognize «--git»

如何解决此错误?

正确答案

#1

diff --git 不是命令,而是

It is preceded with a "git diff" header that looks like this:

diff --git a/file1 b/file2

由于gentoo存储库中的diffstat处于统一模式,因此您可以将其复制到补丁文件中,然后 补丁命令.
(请参见此处更多示例).

Since the diffstat in the gentoo repo is in unified mode, you can copy it in a patch file, and apply it to your codebase with a patch command.
(See more examples here).

patch foo.c < patch.diff

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfkehh
系列文章
更多 icon
同类精品
更多 icon
继续加载