【发布时间】:2020-08-16 13:00:42
【问题描述】:
当我遇到以下错误消息时,我正在使用 glibc-2.31 编译最终的 gcc-9.2.0 构建,同时使用 this article 和 make && make install 来编译:
In file included from ../../../../libsanitizer/sanitizer_common/sanitizer
_platform_limits_posix.cc:193:
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:339:7
2: error: narrowing conversion of '-1' from 'int' to 'long unsigned int'
[-Wnarrowing]
339 | IMPL_PASTE(assertion_failed_##_, line)[2*(int)(pred)-1]
| ^
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:333:3
0: note: in expansion of macro 'IMPL_COMPILER_ASSERT'
333 | #define COMPILER_CHECK(pred) IMPL_COMPILER_ASSERT(pred, __LINE__)
| ^~~~~~~~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.h:1511:3: note: in expansion of macro 'COMPILER_CHECK'
1511 | COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) =
= \
| ^~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.cc:1161:1: note: in expansion of macro 'CHECK_SIZE_AND_OFFSET'
1161 | CHECK_SIZE_AND_OFFSET(ipc_perm, mode);
| ^~~~~~~~~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:339:7
0: warning: size of array 'assertion_failed__1161' is not an integral con
stant-expression [-Wpedantic]
339 | r IMPL_PASTE(assertion_failed_##_, line)[2*(int)(pred)-1]
| ~~~~~~~~~~~~~^~
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:333:3
0: note: in expansion of macro 'IMPL_COMPILER_ASSERT'
333 | #define COMPILER_CHECK(pred) IMPL_COMPILER_ASSERT(pred, __LINE__)
| ^~~~~~~~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.h:1511:3: note: in expansion of macro 'COMPILER_CHECK'
1511 | COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) =
= \
| ^~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.cc:1161:1: note: in expansion of macro 'CHECK_SIZE_AND_OFFSET'
1161 | CHECK_SIZE_AND_OFFSET(ipc_perm, mode);
| ^~~~~~~~~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:339:7
0: error: size '-1' of array 'assertion_failed__1161' is negative
339 | r IMPL_PASTE(assertion_failed_##_, line)[2*(int)(pred)-1]
| ~~~~~~~~~~~~~^~
../../../../libsanitizer/sanitizer_common/sanitizer_internal_defs.h:333:3
0: note: in expansion of macro 'IMPL_COMPILER_ASSERT'
333 | #define COMPILER_CHECK(pred) IMPL_COMPILER_ASSERT(pred, __LINE__)
| ^~~~~~~~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.h:1511:3: note: in expansion of macro 'COMPILER_CHECK'
1511 | COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) =
= \
| ^~~~~~~~~~~~~~
../../../../libsanitizer/sanitizer_common/sanitizer_platform_limits_posix
.cc:1161:1: note: in expansion of macro 'CHECK_SIZE_AND_OFFSET'
1161 | CHECK_SIZE_AND_OFFSET(ipc_perm, mode);
| ^~~~~~~~~~~~~~~~~~~~~
make[4]: *** [Makefile:663: sanitizer_platform_limits_posix.lo] Error 1
make[4]: Leaving directory '/home/sayakbrm/sbos/sources/gcc-9.2.0/gcc-bui
ld/x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common'
make[3]: *** [Makefile:527: all-recursive] Error 1
make[3]: Leaving directory '/home/sayakbrm/sbos/sources/gcc-9.2.0/gcc-bui
ld/x86_64-unknown-linux-gnu/libsanitizer'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/sayakbrm/sbos/sources/gcc-9.2.0/gcc-bui
ld/x86_64-unknown-linux-gnu/libsanitizer'
make[1]: *** [Makefile:12361: all-target-libsanitizer] Error 2
make[1]: Leaving directory '/home/sayakbrm/sbos/sources/gcc-9.2.0/gcc-bui
ld'
make: *** [Makefile:962: all] Error 2
我已经成功编译了stage 1 gcc和glibc,而且这个错误只有在构建gcc的最终pass时才会出现。
【问题讨论】:
-
这不是
linux-from-scratch的问题。echo $LJOS_HOST && echo $LJOS_ENDIAN输出什么? -
它发生了......好吧,再来一个:
echo $LJOS? -
好的,很好。其他人可能知道如何解决您看到的错误,但可能的问题是您使用旧指令来构建更新的包。 (你为 GCC 跳了两个专业,这很重要......)所以我认为你应该回到开始,使用指定的包版本,并仔细按照说明进行操作(我没有理由认为你'不是。)一旦你成功地逐字构建它,那么你就可以开始定制它并克服这些挑战。你应该结帐
Linux From Scratchlinuxfromscratch.org/lfs/view/stable -
@rfmodulator 感谢您的建议!我确实想过建立一个 LFS 系统,并计划将此系统用作垫脚石。
-
@rfmodulator 感谢您提到 LFS,这个确切问题的解决方案恰好在手册中并且是由使用 glibc-2.31 引起的:stackoverflow.com/a/63439284/5961780
标签: c gcc glibc gcc-warning