端末構成から実行すると失敗する


-1

からダウンロードしたXFe 1.33をインストールしようとしています http://roland65.free.fr/xfe/index.php?page=docs しかし私がやっているとき

./configure

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/usr/local/home/vquang/Desktop/xfe-1.33':
configure: error: C compiler cannot create executables
See `config.log' for more details

私はそのエラーに出くわす gccコンパイラをチェックしましたところ、最新のパッケージがインストールされていると答えました。

誰かが私がこの小さな問題を克服するのを手伝ってくれる?

configure:3662: $? = 0
configure:3651: gcc -v >&5
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/sh$
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-52)
configure:3662: $? = 0
configure:3651: gcc -V >&5
gcc: '-V' option must have argument
configure:3662: $? = 1
configure:3651: gcc -qversion >&5
gcc: unrecognized option '-qversion'
gcc: no input files
configure:3662: $? = 1
configure:3682: checking whether the C compiler works
configure:3704: gcc    conftest.c  -lX11 >&5
/usr/bin/ld: cannot find -lX11
collect2: ld returned 1 exit status
configure:3708: $? = 1
configure:3746: result: no
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xfe"
| #define PACKAGE_TARNAME "xfe"
| #define PACKAGE_VERSION "1.33"
| #define PACKAGE_STRING "xfe 1.33"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "xfe"
| #define VERSION "1.33"
| /* end confdefs.h.  */
|
| int | main ()
| {
|
|   ;
|   return 0;
| }
configure:3751: error: in `/usr/local/home/daniel/Desktop/xfe-1.33':
configure:3753: error: C compiler cannot create executables
See `config.log' for more details

の出力を投稿できますか config.log
user1301428

回答:


0

便利な部分は以下のとおりです。

configure:3682: checking whether the C compiler works
configure:3704: gcc    conftest.c  -lX11 >&5
/usr/bin/ld: cannot find -lX11

あなたは行方不明です libX11.soまたは、リンカパスにないか、最近インストールして実行していません ldconfig 設定を更新します。あなたがこのライブラリのないX環境を動かしていたならば、それは奇妙でしょう。 ここで運が良かったと思います。 https://unix.stackexchange.com/questions/1162/libx11-so-6-not-found

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.