由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - 没有root权限怎么安装gcc (RHEL)
相关主题
How to debug "broken pipe" in linux programming ?&! 什么意思?
grep 的很奇怪的现象再问个fork的题
高人帮我看看一个简单的script,为什么nohup有问题?/etc/passwd 里面没有user ids?
stdout/stderr redirectUrgent help please! background process killed.
求教:如何attach to 一个后台进程perl cgi中调用C可执行程序为什么在html中不显示?
请问bash下 > 和 >&有啥区别请教个简单命令问题
我的home server4 秒钟启动 Ubuntu 和 1 秒启动 Linux...
请问Ctrl+Z把任务suspended之后CentOS 5.3 怎么还不出来?
相关话题的讨论汇总
话题: gcc话题: rhel话题: 安装话题: easybuild话题: pex
进入Linux版参与讨论
1 (共1页)
x******a
发帖数: 6336
1
rhel (5.0? not sure)上现有的gcc是4.1.2,
我想安装gcc4.7或者4.8在自己的home directory下。
没有管理员,也没有网络,请问可不可用easybuild还是要手动build?
多谢
r*****e
发帖数: 792
2
this is what I usually do:
./configure --prefix="your dir" --exec_prefix="your dir"
make
make install
of course you need to enable/disable other options
never used easybuild myself.
finally point gcc to this newly build path.

【在 x******a 的大作中提到】
: rhel (5.0? not sure)上现有的gcc是4.1.2,
: 我想安装gcc4.7或者4.8在自己的home directory下。
: 没有管理员,也没有网络,请问可不可用easybuild还是要手动build?
: 多谢

x******a
发帖数: 6336
3
stuck at pex-common.c error:
1. 'PEX_STDERR_TO_PIPE' undeclared
2. 'PEX_BINARY_ERROR' undeclard
any idea? thanks!

【在 r*****e 的大作中提到】
: this is what I usually do:
: ./configure --prefix="your dir" --exec_prefix="your dir"
: make
: make install
: of course you need to enable/disable other options
: never used easybuild myself.
: finally point gcc to this newly build path.

m**k
发帖数: 290
4
如果不熟悉还是不要折腾gcc 吧。远没那么简单。

【在 x******a 的大作中提到】
: stuck at pex-common.c error:
: 1. 'PEX_STDERR_TO_PIPE' undeclared
: 2. 'PEX_BINARY_ERROR' undeclard
: any idea? thanks!

r*****e
发帖数: 792
5
我一般都是先放狗,没结果就看看code怎么能hack一下,再不行就放弃。不过gcc
我还从来没有安装失败过,你看看是不是
什么lib没装。

【在 x******a 的大作中提到】
: stuck at pex-common.c error:
: 1. 'PEX_STDERR_TO_PIPE' undeclared
: 2. 'PEX_BINARY_ERROR' undeclard
: any idea? thanks!

x******a
发帖数: 6336
6
谢谢
搞不定
不折腾了
x****o
发帖数: 21566
t****t
发帖数: 6806
8
gcc need a couple of "prerequisites", namely GMP, MPFR, MPC, cloog.
here's a detailed instruction.
https://gcc.gnu.org/install/

【在 r*****e 的大作中提到】
: this is what I usually do:
: ./configure --prefix="your dir" --exec_prefix="your dir"
: make
: make install
: of course you need to enable/disable other options
: never used easybuild myself.
: finally point gcc to this newly build path.

r*****e
发帖数: 792
9
如果是这些没装,应该在configure时就提示了,不会make的时候再出错吧。

【在 t****t 的大作中提到】
: gcc need a couple of "prerequisites", namely GMP, MPFR, MPC, cloog.
: here's a detailed instruction.
: https://gcc.gnu.org/install/

z****s
发帖数: 192
10
应该可以。我以前干过。但配置起来比较麻烦。
如果少lib或者少header 文件的话,
你必须自己安装并在config的时候指明路径。

【在 x******a 的大作中提到】
: 谢谢
: 搞不定
: 不折腾了

1 (共1页)
进入Linux版参与讨论
相关主题
CentOS 5.3 怎么还不出来?求教:如何attach to 一个后台进程
装了一个rhel5后请问bash下 > 和 >&有啥区别
SLES怎么升级kernel啊?我的home server
国内公司里用是Ubuntu Server Edition 还是 Redhat Enterprise?请问Ctrl+Z把任务suspended之后
How to debug "broken pipe" in linux programming ?&! 什么意思?
grep 的很奇怪的现象再问个fork的题
高人帮我看看一个简单的script,为什么nohup有问题?/etc/passwd 里面没有user ids?
stdout/stderr redirectUrgent help please! background process killed.
相关话题的讨论汇总
话题: gcc话题: rhel话题: 安装话题: easybuild话题: pex