カーネルを再コンパイルしようとしています(公式のArch Linuxガイドに従って:https://wiki.archlinux.org/title/Kernel/Traditional_compilation)しかし、コンパイルエラーが発生するたびに:
In file included from help.c:12:
In function ‘xrealloc’,
inlined from ‘add_cmdname’ at help.c:24:2:
subcmd-util.h:56:23: error: pointer may be used after ‘realloc’ [-Werror=use-after-free]
56 | ret = realloc(ptr, size);
| ^~~~~~~~~~~~~~~~~~
subcmd-util.h:52:21: note: call to ‘realloc’ here
52 | void *ret = realloc(ptr, size);
| ^~~~~~~~~~~~~~~~~~
subcmd-util.h:58:31: error: pointer may be used after ‘realloc’ [-Werror=use-after-free]
58 | ret = realloc(ptr, 1);
| ^~~~~~~~~~~~~~~
subcmd-util.h:52:21: note: call to ‘realloc’ here
52 | void *ret = realloc(ptr, size);
| ^~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make[4]: *** [/home/jenusi/Downloads/linux-5.15/tools/build/Makefile.build:97: /home/jenusi/Downloads/linux-5.15/tools/objtool/help.o] Error 1
make[3]: *** [Makefile:59: /home/jenusi/Downloads/linux-5.15/tools/objtool/libsubcmd-in.o] Error 2
make[2]: *** [Makefile:63: /home/jenusi/Downloads/linux-5.15/tools/objtool/libsubcmd.a] Error 2
make[1]: *** [Makefile:69: objtool] Error 2
make: *** [Makefile:1371: tools/objtool] Error 2
カーネル: 5.15.54, GCC: 12.1.0
答え1
まず、あなたのmakeは「衝突」していませんが、GCCエラーで終了しました。
GCC 12.1はコード[品質]のより厳格な新しいチェックを可能にするため、特定のカーネルのコンパイルには使用されなくなりました。これは、さまざまな-Werror
オプション(「警告をエラーとして扱う」)が、以前のバージョンのコンパイラに存在しなかったエラーで問題を引き起こす可能性があることを意味します。
いくつかのオプションがあります。
- GCC 11.4などの古いGCCバージョンを使用してください。
- GCC 12.1の使用:Makefileの編集と削除
-Werror=use-after-free
- これらのバグを修正するためのカーネルパッチ(提供または提供されない場合があります)を待っています
答え2
-Wno-use-after-free
makefile 行 22 に追加しますtools/lib/subcmd/Makefile
。
以下の通りです。
CFLAGS := -ggdb3 -Wall -Wextra -std=gnu99 -fPIC -Wno-use-after-free