public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: make error
  1999-09-27 13:44 make error Rob
@ 1999-09-27 13:21 ` Arthur Haas
  1999-09-30 23:56   ` Arthur Haas
  1999-10-01  0:00   ` Arthur Haas
  1999-09-27 13:39 ` Paul D. Smith
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 14+ messages in thread
From: Arthur Haas @ 1999-09-27 13:21 UTC (permalink / raw)
  To: help-gcc

Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

> hi,
> # make
> ...
> make[1]: Entering directory '/tmp/bash-2.03/builtins'
> rm -f libbuiltins.a
> cr libbuiltins.a builtins.o .... <rest of objects> ...
> make[1]: cr: command not found
> make[1]: *** [libbuiltins.a] Error 127
> make[1]: Leaving directory '/tmp/bash-2.03/builtins'
> make: *** [builtins/libbuiltins.a] Error 1
> #
> 
> It seems to be missing the cr command... i don't know what it is or what
> it
> does. Anyone have a clue ?
> 

You aren't missing the 'cr' command (if it exists), make
can't find 'ar'! The output from make should have looked
like ...

ar cr libbuiltins.a (bunch of '.o' files)

Where is 'ar' on your system? If it is in a strange place, you
might need to do something like ...

# make AR="/why/would/anyone/put/ar/in/this/directory"

or edit the Makefile in the subdirectories to point to
your 'ar'.

Note: If you are building compiling as root, your PATH
may not include where 'ar' is installed. I'm guessing
you can be doing this because your prompt is '#'.

-- 
###############################
# Art Haas
# (713) 689-2417
###############################

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  1999-09-27 13:44 make error Rob
  1999-09-27 13:21 ` Arthur Haas
@ 1999-09-27 13:39 ` Paul D. Smith
  1999-09-30 23:56   ` Paul D. Smith
  1999-10-01  0:00   ` Paul D. Smith
  1999-09-30 23:56 ` Rob
  1999-10-01  0:00 ` Rob
  3 siblings, 2 replies; 14+ messages in thread
From: Paul D. Smith @ 1999-09-27 13:39 UTC (permalink / raw)
  To: help-gcc

%% Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

  r> I get the following error when compiling bash-2.03 on my x86 Solaris 7:

  r> cr libbuiltins.a builtins.o .... <rest of objects> ...
  r> make[1]: cr: command not found

You mis-transcribed the error: the command is "ar" (archive), not "cr".
If your errors really say "cr", something is completely hosed with your
configuration for bash compilation.

On Solaris, ar, make, ld, and others are in /usr/ccs/bin, so be sure
that's in your PATH before trying to build.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <psmith@baynetworks.com>         Network Management Development
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist
-------------------------------------------------------------------------------
   These are my opinions---Nortel Networks takes no responsibility for them.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* make error
@ 1999-09-27 13:44 Rob
  1999-09-27 13:21 ` Arthur Haas
                   ` (3 more replies)
  0 siblings, 4 replies; 14+ messages in thread
From: Rob @ 1999-09-27 13:44 UTC (permalink / raw)
  To: help-gcc

hi,

I get the following error when compiling bash-2.03 on my x86 Solaris 7:

# make
...
make[1]: Entering directory '/tmp/bash-2.03/builtins'
rm -f libbuiltins.a
cr libbuiltins.a builtins.o .... <rest of objects> ...
make[1]: cr: command not found
make[1]: *** [libbuiltins.a] Error 127
make[1]: Leaving directory '/tmp/bash-2.03/builtins'
make: *** [builtins/libbuiltins.a] Error 1
#

It seems to be missing the cr command... i don't know what it is or what
it
does. Anyone have a clue ?

Thx,
Rob


^ permalink raw reply	[flat|nested] 14+ messages in thread

* make error
  1999-09-27 13:44 make error Rob
  1999-09-27 13:21 ` Arthur Haas
  1999-09-27 13:39 ` Paul D. Smith
@ 1999-09-30 23:56 ` Rob
  1999-10-01  0:00 ` Rob
  3 siblings, 0 replies; 14+ messages in thread
From: Rob @ 1999-09-30 23:56 UTC (permalink / raw)
  To: help-gcc

hi,

I get the following error when compiling bash-2.03 on my x86 Solaris 7:

# make
...
make[1]: Entering directory '/tmp/bash-2.03/builtins'
rm -f libbuiltins.a
cr libbuiltins.a builtins.o .... <rest of objects> ...
make[1]: cr: command not found
make[1]: *** [libbuiltins.a] Error 127
make[1]: Leaving directory '/tmp/bash-2.03/builtins'
make: *** [builtins/libbuiltins.a] Error 1
#

It seems to be missing the cr command... i don't know what it is or what
it
does. Anyone have a clue ?

Thx,
Rob


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  1999-09-27 13:39 ` Paul D. Smith
@ 1999-09-30 23:56   ` Paul D. Smith
  1999-10-01  0:00   ` Paul D. Smith
  1 sibling, 0 replies; 14+ messages in thread
From: Paul D. Smith @ 1999-09-30 23:56 UTC (permalink / raw)
  To: help-gcc

%% Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

  r> I get the following error when compiling bash-2.03 on my x86 Solaris 7:

  r> cr libbuiltins.a builtins.o .... <rest of objects> ...
  r> make[1]: cr: command not found

You mis-transcribed the error: the command is "ar" (archive), not "cr".
If your errors really say "cr", something is completely hosed with your
configuration for bash compilation.

On Solaris, ar, make, ld, and others are in /usr/ccs/bin, so be sure
that's in your PATH before trying to build.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <psmith@baynetworks.com>         Network Management Development
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist
-------------------------------------------------------------------------------
   These are my opinions---Nortel Networks takes no responsibility for them.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  1999-09-27 13:21 ` Arthur Haas
@ 1999-09-30 23:56   ` Arthur Haas
  1999-10-01  0:00   ` Arthur Haas
  1 sibling, 0 replies; 14+ messages in thread
From: Arthur Haas @ 1999-09-30 23:56 UTC (permalink / raw)
  To: help-gcc

Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

> hi,
> # make
> ...
> make[1]: Entering directory '/tmp/bash-2.03/builtins'
> rm -f libbuiltins.a
> cr libbuiltins.a builtins.o .... <rest of objects> ...
> make[1]: cr: command not found
> make[1]: *** [libbuiltins.a] Error 127
> make[1]: Leaving directory '/tmp/bash-2.03/builtins'
> make: *** [builtins/libbuiltins.a] Error 1
> #
> 
> It seems to be missing the cr command... i don't know what it is or what
> it
> does. Anyone have a clue ?
> 

You aren't missing the 'cr' command (if it exists), make
can't find 'ar'! The output from make should have looked
like ...

ar cr libbuiltins.a (bunch of '.o' files)

Where is 'ar' on your system? If it is in a strange place, you
might need to do something like ...

# make AR="/why/would/anyone/put/ar/in/this/directory"

or edit the Makefile in the subdirectories to point to
your 'ar'.

Note: If you are building compiling as root, your PATH
may not include where 'ar' is installed. I'm guessing
you can be doing this because your prompt is '#'.

-- 
###############################
# Art Haas
# (713) 689-2417
###############################

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  1999-09-27 13:21 ` Arthur Haas
  1999-09-30 23:56   ` Arthur Haas
@ 1999-10-01  0:00   ` Arthur Haas
  1 sibling, 0 replies; 14+ messages in thread
From: Arthur Haas @ 1999-10-01  0:00 UTC (permalink / raw)
  To: help-gcc

Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

> hi,
> # make
> ...
> make[1]: Entering directory '/tmp/bash-2.03/builtins'
> rm -f libbuiltins.a
> cr libbuiltins.a builtins.o .... <rest of objects> ...
> make[1]: cr: command not found
> make[1]: *** [libbuiltins.a] Error 127
> make[1]: Leaving directory '/tmp/bash-2.03/builtins'
> make: *** [builtins/libbuiltins.a] Error 1
> #
> 
> It seems to be missing the cr command... i don't know what it is or what
> it
> does. Anyone have a clue ?
> 

You aren't missing the 'cr' command (if it exists), make
can't find 'ar'! The output from make should have looked
like ...

ar cr libbuiltins.a (bunch of '.o' files)

Where is 'ar' on your system? If it is in a strange place, you
might need to do something like ...

# make AR="/why/would/anyone/put/ar/in/this/directory"

or edit the Makefile in the subdirectories to point to
your 'ar'.

Note: If you are building compiling as root, your PATH
may not include where 'ar' is installed. I'm guessing
you can be doing this because your prompt is '#'.

-- 
###############################
# Art Haas
# (713) 689-2417
###############################

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  1999-09-27 13:39 ` Paul D. Smith
  1999-09-30 23:56   ` Paul D. Smith
@ 1999-10-01  0:00   ` Paul D. Smith
  1 sibling, 0 replies; 14+ messages in thread
From: Paul D. Smith @ 1999-10-01  0:00 UTC (permalink / raw)
  To: help-gcc

%% Rob <"oostveen"@ReaX-IT.nX (X=l)> writes:

  r> I get the following error when compiling bash-2.03 on my x86 Solaris 7:

  r> cr libbuiltins.a builtins.o .... <rest of objects> ...
  r> make[1]: cr: command not found

You mis-transcribed the error: the command is "ar" (archive), not "cr".
If your errors really say "cr", something is completely hosed with your
configuration for bash compilation.

On Solaris, ar, make, ld, and others are in /usr/ccs/bin, so be sure
that's in your PATH before trying to build.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <psmith@baynetworks.com>         Network Management Development
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist
-------------------------------------------------------------------------------
   These are my opinions---Nortel Networks takes no responsibility for them.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* make error
  1999-09-27 13:44 make error Rob
                   ` (2 preceding siblings ...)
  1999-09-30 23:56 ` Rob
@ 1999-10-01  0:00 ` Rob
  3 siblings, 0 replies; 14+ messages in thread
From: Rob @ 1999-10-01  0:00 UTC (permalink / raw)
  To: help-gcc

hi,

I get the following error when compiling bash-2.03 on my x86 Solaris 7:

# make
...
make[1]: Entering directory '/tmp/bash-2.03/builtins'
rm -f libbuiltins.a
cr libbuiltins.a builtins.o .... <rest of objects> ...
make[1]: cr: command not found
make[1]: *** [libbuiltins.a] Error 127
make[1]: Leaving directory '/tmp/bash-2.03/builtins'
make: *** [builtins/libbuiltins.a] Error 1
#

It seems to be missing the cr command... i don't know what it is or what
it
does. Anyone have a clue ?

Thx,
Rob


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  2007-04-27  6:34 q-x jiang
@ 2007-04-28  1:13 ` Michael Eager
  0 siblings, 0 replies; 14+ messages in thread
From: Michael Eager @ 2007-04-28  1:13 UTC (permalink / raw)
  To: q-x jiang; +Cc: gcc-help

q-x jiang wrote:
> Dear Sir or Ms,
> I am installing a local gcc in a SUSE10.1 environment (with gcc-4.1.0)
> so as to use g77 support.

It's much easier to install a pre-built binary than rebuild gcc or g77.

> I downloaded the complete gcc-4.1.0 tar ball from a mirror site, and
> configured it at my local user directory with
> 
> ../gcc-4.1.0/configure --prefix=/home/jiangq/gcc4 --disable-bootstrap
> 
> The configure went through OK, but 'make' generated the following errors:
> 
> WARNING: `makeinfo' is missing on your system.  You should only need it if
>          you modified a `.texi' or `.texinfo' file, or any other file
>          indirectly affecting the aspect of the manual.  The spurious
>          call might also be the consequence of using a buggy `make' (AIX,
>          DU, IRIX).  You might want to install the `Texinfo' package or
>          the `GNU make' package.  Grab either from any GNU archive site.
> make[3]: *** [fastjar.info] Error 1
> make[3]: Leaving directory `/home/jiangq/gcc/fastjar'
> make[2]: *** [all] Error 2
> make[2]: Leaving directory `/home/jiangq/gcc/fastjar'
> make[1]: *** [all-fastjar] Error 2
> make[1]: Leaving directory `/home/jiangq/gcc'
> make: *** [all] Error 2

I've run into this problem, most recently building on
Cygwin.  IIRC, make thinks that one of the .texi files
is younger than the .info file it creates.  This can
happen if the time stamps on the files are incorrect
or all the same (which is the case on Cygwin).

After you run configure, touch any .info file in fastjar
or a subdirectory.

-- 
Michael Eager	 eager@eagercon.com
1960 Park Blvd., Palo Alto, CA 94306  650-325-8077

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
@ 2007-04-27 17:35 Timothy C Prince
  0 siblings, 0 replies; 14+ messages in thread
From: Timothy C Prince @ 2007-04-27 17:35 UTC (permalink / raw)
  To: jiangq; +Cc: gcc-help



-----Original Message-----
From: q-x jiang <jiangq@mail.rockefeller.edu>
To: gcc-help@gcc.gnu.org
Date: Fri, 27 Apr 2007 00:39:35 -0400
Subject: make error

Dear Sir or Ms,
I am installing a local gcc in a SUSE10.1 environment (with gcc-4.1.0)
so as to use g77 support.
I downloaded the complete gcc-4.1.0 tar ball from a mirror site, and
configured it at my local user directory with

.../gcc-4.1.0/configure --prefix=/home/jiangq/gcc4 --disable-bootstrap

The configure went through OK, but 'make' generated the following errors:

WARNING: `makeinfo' is missing on your system.  You should only need it if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy `make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.
make[3]: *** [fastjar.info] Error 1
make[3]: Leaving directory `/home/jiangq/gcc/fastjar'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/jiangq/gcc/fastjar'
make[1]: *** [all-fastjar] Error 2
make[1]: Leaving directory `/home/jiangq/gcc'
make: *** [all] Error 2


What do you think is the problem with the fastjar?
____________________________________________________

You show nothing to indicate a problem with fastjar.
What do gcc-4.1 or fastjar have in common with your goal of using g77?  If you use a somewhat newer version of gcc, gfortran should be an improvement over g77.  You would need a much older version to have g77 included.

Tim Prince

^ permalink raw reply	[flat|nested] 14+ messages in thread

* make error
@ 2007-04-27  6:34 q-x jiang
  2007-04-28  1:13 ` Michael Eager
  0 siblings, 1 reply; 14+ messages in thread
From: q-x jiang @ 2007-04-27  6:34 UTC (permalink / raw)
  To: gcc-help

Dear Sir or Ms,
I am installing a local gcc in a SUSE10.1 environment (with gcc-4.1.0)
so as to use g77 support.
I downloaded the complete gcc-4.1.0 tar ball from a mirror site, and
configured it at my local user directory with

../gcc-4.1.0/configure --prefix=/home/jiangq/gcc4 --disable-bootstrap

The configure went through OK, but 'make' generated the following errors:

WARNING: `makeinfo' is missing on your system.  You should only need it if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy `make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.
make[3]: *** [fastjar.info] Error 1
make[3]: Leaving directory `/home/jiangq/gcc/fastjar'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/jiangq/gcc/fastjar'
make[1]: *** [all-fastjar] Error 2
make[1]: Leaving directory `/home/jiangq/gcc'
make: *** [all] Error 2


What do you think is the problem with the fastjar?

Thanks for your help.

Qiu-Xing Jiang

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: make error
  2000-08-24  8:48 Helfried Tschemmernegg
@ 2000-08-24 20:14 ` Alexandre Oliva
  0 siblings, 0 replies; 14+ messages in thread
From: Alexandre Oliva @ 2000-08-24 20:14 UTC (permalink / raw)
  To: Helfried Tschemmernegg; +Cc: gcc-help

On Aug 24, 2000, Helfried Tschemmernegg <helfried.t@gmx.at> wrote:

> When I compile my gcc-2.95.2-source I get the following error-message:

> E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:82: Error: Rest of line
> ignored. First ignored character is `('.

I figure you're using a cross-compiler.  Are you sure GCC is using the
appropriate cross-assembler?

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

^ permalink raw reply	[flat|nested] 14+ messages in thread

* make error
@ 2000-08-24  8:48 Helfried Tschemmernegg
  2000-08-24 20:14 ` Alexandre Oliva
  0 siblings, 1 reply; 14+ messages in thread
From: Helfried Tschemmernegg @ 2000-08-24  8:48 UTC (permalink / raw)
  To: gcc-help

Hi!

When I compile my gcc-2.95.2-source I get the following error-message:

for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
_ashldi3
_ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf
_floatdisf
 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi
_fixxfdi _fix
unsxfdi _floatdixf _fixunsxfsi _fixtfdi _fixunstfdi _floatditf __gcc_bcmp
_varar
gs __dummy _eprintf _bb _shtab _clear_cache _trampoline __main _exit
_ctors _pur
e; \
do \
  echo ${name}; \
  /usr/src/build-gcc/gcc/xgcc -B/usr/src/build-gcc/gcc/
-B/usr/local/m68k-atroni
c-elf/bin/ -I/usr/local/m68k-atronic-elf/include -O2  -DCROSS_COMPILE
-DIN_GCC
   -g -O2 -I./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
-Dinhibit_lib
c   -I. -I../../gcc-2.95.2/gcc -I../../gcc-2.95.2/gcc/config
-I../../gcc-2.95.2/
gcc/../include -c -DL${name} \
       ../../gcc-2.95.2/gcc/libgcc2.c -o ${name}.o; \
  if [ $? -eq 0 ] ; then true; else exit 1; fi; \
  m68k-atronic-elf-ar rc tmplibgcc2.a ${name}.o; \
  rm -f ${name}.o; \
done
_muldi3
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s: Assembler messages:
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:82: Error: Rest of line
ignored. F
irst ignored character is `('.
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:85: Error: Rest of line
ignored. F
irst ignored character is `1'.
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:86: Error: ignoring
unrecognized s
ymbol type ""
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:86: Error: Rest of line
ignored. F
irst ignored character is `1'.
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:87: Error: Rest of line
ignored. F
irst ignored character is `1'.
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:112: Error: expected comma
after n
ame `' in .size directive
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:112: Error: Rest of line
ignored.
First ignored character is `1'.
E:\DOKUME~1\ADMINI~1\LOKALE~1\Temp/ccjhXdbe.s:116: Error: Rest of line
ignored.
First ignored character valued 0xffffff83.
make[3]: *** [libgcc2.a] Error 1
make[3]: Leaving directory `/usr/src/build-gcc/gcc'
make[2]: *** [stmp-multilib-sub] Error 2
make[2]: Leaving directory `/usr/src/build-gcc/gcc'
make[1]: *** [stmp-multilib] Error 1
make[1]: Leaving directory `/usr/src/build-gcc/gcc'
make: *** [all-gcc] Error 2


Does anyone know where in the gcc source I can look for the error?
I've made changes in some files to force gcc prepending an underscore
befor the symbol-names. These are the files I've changed:
/gcc-2.95.2/gcc/config/elfos.h:122: "%U%s" instead of "%s"
/gcc-2.95.2/gcc/config/m68k/m68kelf.h:60: "_" instead of ""

I've configured with configure --target=m68k-elf and built with make.

Thanks for any help
  Helfried

-- 
Sent through GMX FreeMail - http://www.gmx.net

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2007-04-28  1:09 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-09-27 13:44 make error Rob
1999-09-27 13:21 ` Arthur Haas
1999-09-30 23:56   ` Arthur Haas
1999-10-01  0:00   ` Arthur Haas
1999-09-27 13:39 ` Paul D. Smith
1999-09-30 23:56   ` Paul D. Smith
1999-10-01  0:00   ` Paul D. Smith
1999-09-30 23:56 ` Rob
1999-10-01  0:00 ` Rob
2000-08-24  8:48 Helfried Tschemmernegg
2000-08-24 20:14 ` Alexandre Oliva
2007-04-27  6:34 q-x jiang
2007-04-28  1:13 ` Michael Eager
2007-04-27 17:35 Timothy C Prince

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).