LoginSignup
3
3

More than 5 years have passed since last update.

GNUビルドシステムトラブルシューティング

Posted at

ソフトウェアをソースコードからビルドする場合によく発生するエラーの対処法の備忘です。主に、依存パッケージが不足していると現れるものです。

configure: error: no acceptable C compiler found in $PATH

$ sudo dnf install gcc

configure: error: zlib library header files not found

$ sudo dnf install zlib-devel

configure: error: openssl library header files not found

$ sudo dnf install openssl-devel

configure: error: expat library header files not found

$ sudo dnf install expat-devel

configure: error: Qt library (version 5 or 4) is required to build GUI

$ sudo dnf install python-qt5-devel

参考

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3