0

检查帖子后:

在没有root权限的linux上安装gcc

https://stackoverflow.com/questions/9316118/installing-gcc-as-non-root

我的问题仍然无法解决,所以我在这里发布。

我正在尝试使用 gcc 版本 4.1.2 20080704(Red Hat 4.1.2-52)在 Linux 上安装 GCC 4.7。

我运行带有前缀的配置作为我的主目录。

./configure \
    --with-gmp=/remote/home/gcc_4_7_2012_5_28/gmp505 \
    --with-mpfr=/remote/home/gcc_4_7_2012_5_28/mpfr242 \
    --with-mpc=/remote/home/gcc_4_7_2012_5_28/mpc081 \
    --disable-libjava

然后,make就可以了。但是,make check 不行,我得到了错误:

make[1]: Entering directory `/remote/home/gcc_4_7_2012_5_28/trunk'

make[2]: Entering directory `/remote/gcc_4_7_2012_5_28/trunk/host-x86_64-unknown-linux-gnu/fixincludes'

autogen -T ../.././fixincludes/check.tpl ../.././fixincludes/inclhack.def

make[2]: execvp: autogen: Permission denied

make install is not ok. 

make[1]: Entering directory `/remote/home/gcc_4_7_2012_5_28/trunk'
/bin/sh ./mkinstalldirs /usr/local /usr/local

make[2]: Entering directory `/remote/home/gcc_4_7_2012_5_28/trunk/host-x86_64-unknown-linux-gnu/fixincludes'

rm -rf /usr/local/libexec/gcc/x86_64-unknown-linux-gnu/4.8.0/install-tools
/bin/sh ../.././fixincludes/../mkinstalldirs /usr/local/libexec/gcc/x86_64-unknown-linux-gnu/4.8.0/install-tools

mkdir -p -- /usr/local/libexec/gcc/x86_64-unknown-linux-gnu/4.8.0/install-tools

mkdir: cannot create directory `/usr/local/libexec/gcc': Permission denied

我无法获得root权限。

任何帮助表示赞赏。

谢谢 !

4

2 回答 2

1

编译 GCC 时,永远不要在其源代码树中构建它

您在配置参数中忘记了前缀,可能类似于

mkdir $HOME/gcc-build
cd $HOME/gcc-build
/your/path/to-source-tree/gcc-4.7.0/configure --prefix $HOME/pref \
         --program-suffix -my4.7 \
# other configure arguments go here 

当然,您会发现您的编译器已安装在其中,$HOME/pref/bin/gcc-my4.7因此我建议您添加$HOME/pref/bin到您的$PATH$HOME/pref/lib您的$LD_LIBRARY_PATH

成功安装 GCC 4.7 后,您可能会尝试构建 GCC MELT [meta-] 插件

gcc-help@gcc.gnu.org邮件列表是获得此类帮助的好地方。

于 2012-05-29T19:47:23.637 回答
0

您需要检查 config.log 文件,查找“检查目标文件的后缀”。您应该在附近的某处看到一条错误消息,这应该可以帮助您。

或者,使用 EasyBuild 构建 GCC 4.7,它可以为您完成所有工作,请参阅http://hpcugent.github.com/easybuild

于 2012-06-20T05:46:57.127 回答