coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [coreutils] coredump segmentation fault using coreutils 6.4 sparc so


From: Howell Hughes
Subject: RE: [coreutils] coredump segmentation fault using coreutils 6.4 sparc solaris using mv or touch
Date: Thu, 25 Nov 2010 09:20:31 -0500

Hi Jim,

Thanks for the info. I did the following and am still requiring some support

I downloaded

ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz
ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz.sig

gpg --verify coreutils-8.7.tar.gz.sig &&
I don't have gpg on my node. Do I have to install another package to install 
this?
Also if I ever run && on my node it just returns a prompt like this
>
I don't know if it is relevant for solaris or if it's a linux thing, or maybe 
again I just don't have a certain package installed?

  gzip -dc coreutils-8.7.tar.gz | tar xf - &&

  (cd coreutils-8.7 && ./configure && make && make -k check ) >& log
I ran ./configure; make; make -k check > log

Nothing was written to the log file but config.log file was written and is 
attached to this email. It seems I don't have everything required to create the 
package, from the config.log "configure:4449: error: no acceptable C compiler 
found in $PATH".

Can you advise what else is required to in order to run the configure correctly?

Best Regards


Howell Hughes


 
-----Original Message-----
From: Jim Meyering [mailto:address@hidden] 
Sent: November-24-10 4:41 PM
To: Howell Hughes
Cc: Eric Blake; address@hidden
Subject: Re: [coreutils] coredump segmentation fault using coreutils 6.4 sparc 
solaris using mv or touch

Howell Hughes wrote:
> Thank you for your continued assistance.
>
> I don't have a config.status file. Perhaps I should explain that I 
> didn't compile the coreutils package I downloaded a pre configured 
> coreutils 8.7 package from sunfreeware along with some of the 
> dependancies that were mentioned.
>
>
> I Downloaded
>
> coreutils-8.7-sol10-sparc-local
>
> and the following dependencies are described as being required on the 
> sun freeware web site http://www.sunfreeware.com/indexsparc10.html
> libintl-3.4.0-sol10-sparc-local
> libiconv-1.13.1-sol10-sparc-local
> libgcc-3.4.6-sol10-sparc-local
> gmp-4.2.1-sol10-sparc-local

In that case, I suggest you download coreutils sources and build your own 
binaries, since the ones you downloaded obviously don't work properly.

If you have the xz program (from the xz-utils package), do this:

wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.xz
wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.xz.sig
gpg --verify coreutils-8.7.tar.xz.sig &&
  xz -dc coreutils-8.7.tar.xz | tar xf - &&
  (cd coreutils-8.7 && ./configure && make && make -k check ) >& log

Otherwise, do this:

wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz
wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz.sig
gpg --verify coreutils-8.7.tar.gz.sig &&
  gzip -dc coreutils-8.7.tar.gz | tar xf - &&
  (cd coreutils-8.7 && ./configure && make && make -k check ) >& log

Attachment: config.log
Description: config.log


reply via email to

[Prev in Thread] Current Thread [Next in Thread]