由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 一个ssh问题
相关主题
怎样创造一个 segv (转载)help: solaris interface configuration
Sunfreeware.com (?)问题: Solaris里的小程序出毛病, 这正常吗?
安装 Solaris 8 x86 和 Win2K 小记sun SPARCstation 20 question
帮我看看我的GCC怎么了!谢谢读过这种BT文件么?
Re: 急问:UNIX (SOLARIS 7。0)中C++ COMPILER命令到底是什么呀?unzip problem in Solaris 7
FreeNX in Solaris?新手如何在OS solaris 8下安装gcc?
Help on 'make'UNIX vs LINUX? why?
tar help!!!Solaris FAQ
相关话题的讨论汇总
话题: bin话题: path话题: cc话题: usr话题: configure
进入Unix版参与讨论
1 (共1页)
t*******l
发帖数: 421
1
在我的solaris 8上装ssh,解压后 configure.
它居然说no acceptable cc in $PATH.
查cc的path, 已经包括在$PATH里了,怎么还找不到!
configure失败,没法make.怎么办怎么办???
n******t
发帖数: 4406
2
是不是一定要gcc?

【在 t*******l 的大作中提到】
: 在我的solaris 8上装ssh,解压后 configure.
: 它居然说no acceptable cc in $PATH.
: 查cc的path, 已经包括在$PATH里了,怎么还找不到!
: configure失败,没法make.怎么办怎么办???

T********r
发帖数: 6210
3
cc the following program to see if your cc has a license
c******y
发帖数: 37
4
"cc -xlicinfo" will work too...

【在 T********r 的大作中提到】
: cc the following program to see if your cc has a license
c******y
发帖数: 37
5
1) Check if /opt/SUNWspro/bin/cc exists.
If it does, check if you have a valid
license by "cc -xlicinfo". If you do
have a valid license, put
/usr/ccs/bin:/opt/SUNWspro/bin in PATH
var. and make sure /usr/ucb/bin is not
placed before /opt/SUNWspro/bin.
Try to compile again. If no luck,
2) Get a copy of precompiled gcc from
sunfreeware for Solaris 8:
ftp://ftp.sunfreeware.com/pub/freeware/sparc/8/gcc-3.3-sol8-sparc-local.gz
if you don't have one installed on your
machine

【在 t*******l 的大作中提到】
: 在我的solaris 8上装ssh,解压后 configure.
: 它居然说no acceptable cc in $PATH.
: 查cc的path, 已经包括在$PATH里了,怎么还找不到!
: configure失败,没法make.怎么办怎么办???

t*******l
发帖数: 421
6
gcc的path也在,可是configure就是找不着。。。
上死火了。。

【在 n******t 的大作中提到】
: 是不是一定要gcc?
t*******l
发帖数: 421
7
ok...
license could be the problem? ...

【在 T********r 的大作中提到】
: cc the following program to see if your cc has a license
t*******l
发帖数: 421
8
好,也试试这个。。

【在 c******y 的大作中提到】
: "cc -xlicinfo" will work too...
t*******l
发帖数: 421
9
这个必须放在/usr/local里解压是吧。。。
可是它又报错朔:directory checksum error...
咋办?

【在 c******y 的大作中提到】
: 1) Check if /opt/SUNWspro/bin/cc exists.
: If it does, check if you have a valid
: license by "cc -xlicinfo". If you do
: have a valid license, put
: /usr/ccs/bin:/opt/SUNWspro/bin in PATH
: var. and make sure /usr/ucb/bin is not
: placed before /opt/SUNWspro/bin.
: Try to compile again. If no luck,
: 2) Get a copy of precompiled gcc from
: sunfreeware for Solaris 8:

T********r
发帖数: 6210
10
which cc
what's the output of the above command? if it's /usr/ccs/bin/cc, you
need to change the path to put /usr/local/bin before /usr/ccs/bin/
and make sure /usr/local/bin/cc points to /usr/local/bin/gcc

【在 t*******l 的大作中提到】
: gcc的path也在,可是configure就是找不着。。。
: 上死火了。。

相关主题
FreeNX in Solaris?help: solaris interface configuration
Help on 'make'问题: Solaris里的小程序出毛病, 这正常吗?
tar help!!!sun SPARCstation 20 question
进入Unix版参与讨论
s**s
发帖数: 242
11
sunfreeware上有编译好的openshh3.6.1p1
http://sunfreeware.risq.qc.ca/
c******y
发帖数: 37
12
No, you can unzip it anywhere, but you also
need to install the precompiled pkg:
1) cd /tmp && gunzip gcc*.gz
2) pkgadd -d./gcc-3.3-sol8-sparc-local
checksum error? Could be the file you downloaded
is broken. Go download it again.

【在 t*******l 的大作中提到】
: 这个必须放在/usr/local里解压是吧。。。
: 可是它又报错朔:directory checksum error...
: 咋办?

t*******l
发帖数: 421
13
这个要同时装很多patches...

【在 s**s 的大作中提到】
: sunfreeware上有编译好的openshh3.6.1p1
: http://sunfreeware.risq.qc.ca/

t*******l
发帖数: 421
14
oh ...download broken.... :S

【在 c******y 的大作中提到】
: No, you can unzip it anywhere, but you also
: need to install the precompiled pkg:
: 1) cd /tmp && gunzip gcc*.gz
: 2) pkgadd -d./gcc-3.3-sol8-sparc-local
: checksum error? Could be the file you downloaded
: is broken. Go download it again.

A*****o
发帖数: 222
15
Some time it could be just the configure problem
Autoconf & Automake some time is not that good
esp. those developers didn't really intent for your specific OS(Solaris 8)

【在 t*******l 的大作中提到】
: 在我的solaris 8上装ssh,解压后 configure.
: 它居然说no acceptable cc in $PATH.
: 查cc的path, 已经包括在$PATH里了,怎么还找不到!
: configure失败,没法make.怎么办怎么办???

t*******l
发帖数: 421
16
sparc 8 is headache at this moment...

【在 A*****o 的大作中提到】
: Some time it could be just the configure problem
: Autoconf & Automake some time is not that good
: esp. those developers didn't really intent for your specific OS(Solaris 8)

A*****o
发帖数: 222
17
download from sunfreeware ba.
that's the easiest to do.

【在 t*******l 的大作中提到】
: sparc 8 is headache at this moment...
t*******l
发帖数: 421
18
download what?

【在 A*****o 的大作中提到】
: download from sunfreeware ba.
: that's the easiest to do.

A*****o
发帖数: 222
19
all the software you need:)

【在 t*******l 的大作中提到】
: download what?
1 (共1页)
进入Unix版参与讨论
相关主题
Solaris FAQRe: 急问:UNIX (SOLARIS 7。0)中C++ COMPILER命令到底是什么呀?
SOS! Sun Ultra 10 questionFreeNX in Solaris?
How to view chinese font in Solaris/intel?Help on 'make'
Re: CXterm Configure prob on SUN sparc 5tar help!!!
怎样创造一个 segv (转载)help: solaris interface configuration
Sunfreeware.com (?)问题: Solaris里的小程序出毛病, 这正常吗?
安装 Solaris 8 x86 和 Win2K 小记sun SPARCstation 20 question
帮我看看我的GCC怎么了!谢谢读过这种BT文件么?
相关话题的讨论汇总
话题: bin话题: path话题: cc话题: usr话题: configure