web-dev-qa-db-ja.com

ac_nonexistent.hとは何ですか?

失敗したビルドからビルドログを調べる 、次のエラーはどういう意味ですか、

fatal error: ac_nonexistent.h: No such file or directory #include <ac_nonexistent.h>

ここにいくつかのコンテキストがあります。

configure:6614: $? = 0
configure:6627: result: none needed
configure:6648: checking how to run the C preprocessor
configure:6679: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
configure:6679: $? = 0
configure:6693: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:6693: $? = 1
configure: failed program was:
| /* confdefs.h */

とは ac_nonexistent.h?このエラーが発生した場合はどうすればよいですか?

11
Evan Carroll

これは sanity check であり、構成スクリプトがヘッダーファイルが存在するかどうかを正しく判別できることを確認します。存在しないヘッダーを使用するようコンパイラーに要求し、コンパイラー(正しく)失敗します。

その「エラー」の後でビルドが続行することに注意してください...ビルドの失敗の原因を突き止めるには、通常、ビルドログの最後から処理する必要があります。この場合、ログの重要な部分は

configure:47489: checking for the Wayland protocols
configure:47492: $PKG_CONFIG --exists --print-errors "wayland-protocols >= 1.4"
Package wayland-protocols was not found in the pkg-config search path.
Perhaps you should add the directory containing `wayland-protocols.pc' to the PKG_CONFIG_PATH environment variable
No package 'wayland-protocols' found
11
Stephen Kitt