3

我正在尝试从头开始构建 Linux,现在我在第 5.4 章,它告诉我如何构建 Binutils。我有 binutils 2.20 的源代码,但是当我尝试构建它时:

time { ./binutils-2.20/configure --target=$LFS_TGT --prefix=/tools --disable-nls --disable-werror ; }

它给了我一个错误:

checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-lfs-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... gawk
checking for gcc... GCC
checking for C compiler default output file name... 
configure: error: in `/media/LFS':
configure: error: C compiler cannot create executables
See `config.log' for more details.

你可以在 pastebin.com 看到我的 config.log:http: //pastebin.com/hX7v5KLn

我刚刚安装了 Ubuntu 10.04,并重新安装了 GCC 并安装了 G++。此外,构建是由一个名为“lfs”的非 root、非管理员用户(在 Linux From Scratch 中也有描述)完成的,并且位于与系统安装位置不同的分区上。

谁能帮我?谢谢

4

2 回答 2

3

/tools目录不存在。我创建了它,现在它编译得很好。

于 2010-05-03T11:25:26.710 回答
0

尝试:

export CC=/usr/bin/gcc

在运行配置之前。

于 2010-05-03T00:03:33.527 回答