c++ - GCC 交叉编译器 Cygwin64 : GFDL license tm. texi

标签 c++ gcc gnu

遵循本教程:http://wiki.osdev.org/GCC_Cross-Compiler . (我也在使用 Cygwin64。) 运行“make install-gcc”时,我收到消息:

Verify that you have permission to grant a GFDL license for all
new text in tm.texi, then copy it to ../../gcc-4.9.0/gcc/doc/tm.texi.
Makefile:2227: recipe for target 's-tm-texi' failed
make[2]: *** [s-tm-texi] Error 1
make[2]: Leaving directory '/cygdrive/c/cygwin64/home/Demx/build/gcc'
Makefile:4038: recipe for target 'install-gcc' failed
make[1]: *** [install-gcc] Error 2
make[1]: Leaving directory '/cygdrive/c/cygwin64/home/Demx/build'
Makefile:2187: recipe for target 'install' failed
make: *** [install] Error 2

这个 tm.texi 在哪里?我如何验证我是否有权授予 GFDL 许可证?还是有其他问题的根源?

最佳答案

如果您不修改 GCC,您不应该担心任何事情;这看起来像是与 FSF 版权相关的问题。

这看起来像是构建系统中与时间戳相关的问题。有时生成的文件与它们的源一起发送,并且根据它们的顺序(从 tarball 中提取或从 repo check out )它们可能会或可能不会被“make”重新生成。

(旁注:我查看了相关的 Makefile,对于非 ASCII 系统对于不理解 '\r' 的 ASCII 系统都有特殊情况)

关于c++ - GCC 交叉编译器 Cygwin64 : GFDL license tm. texi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23839851/

相关文章:

shell - 使用 sed 将时间戳替换为日期

使用非标准头编译 C

iphone - 使用 Go 为 iPhone 应用程序编写库

c - Linux GCC - 无法在 C 中解析符号

c++ - 找不到 Xcode 版本 6.0.1 gmp.h 头文件,即使 gmp.h 和 gmpxx.h 位于 local/include

c - 分配指针与 memcpy/memmove

c++ - 使用 GCC 编译 C++ 程序

c++ - 如何将结构与字符串键链接起来?

c++ - 代码块:需要在另一个项目中编译 src

c++ - 用字符 A-Z 替换字符串中的每个字母(运行时问题)