public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] error when building gcc for PowerPC under windowsNT
@ 2000-11-07 22:42 yyl
  2000-11-08  6:32 ` Bart Veer
  0 siblings, 1 reply; 5+ messages in thread
From: yyl @ 2000-11-07 22:42 UTC (permalink / raw)
  To: eCos_discuss

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3376 bytes --]

I have problem when building gcc for powerpc under windows NT. 
I'm following the instructions in the RedHat homepage. The problem 
arises after I have typed: make -w all-gcc install-gcc LANGUAGES="c 
c++" 2>&1 | tee make.out
 
the output about error I get is:
/src/gcc/gcc-2.95.2/gcc/reload1.c:9556: syntax 
error before `static' /src/gcc/gcc-2.95.2/gcc/reload1.c: In function 
`reload_combine': /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: stray '\' in 
program /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: parse error before 
`)' /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: stray '\' in 
program /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: parse error before 
`;' make[1]: *** [reload1.o] Error 1 make[1]: Leaving directory 
`/tmp/build/gcc/gcc' make: *** [all-gcc] Error 2 make: Leaving directory 
`/tmp/build/gcc'
 
then I executs following commands:
   tr -d '\r' < 
/src/gcc/gcc-2.95.2/gcc/reload1.c > foo    mv foo 
/src/gcc/gcc-2.95.2/gcc/reload1.c
 
After that I retry 
   make -w all-gcc install-gcc LANGUAGES="c c++" 
2>&1 | tee make.out
the output about error is:
   make[2]: Entering directory 
`/tmp/build/gcc/gcc' rm -f libgcc2.a if [ -d . ]; then \   cd .; 
\   rm -f libgcc.a ecrti.o ecrtn.o scrt0.o scrti.o scrtn.o; \ else 
true; \ fi make GCC_FOR_TARGET="/tmp/build/gcc/gcc/xgcc 
-B/tmp/build/gcc/gcc/ -B/tools/H-i686-pc-cygwin/powerpc-eabi/bin/ 
-I/tools/H-i686-pc-cygwin/powerpc-eabi/include" \   
AR_FOR_TARGET="powerpc-eabi-ar" \   
AR_FLAGS_FOR_TARGET="rc" \   CC="gcc" 
CFLAGS="-g -O2" \   HOST_PREFIX="" 
HOST_PREFIX_1="loser-" \   LANGUAGES="c c++" 
\   LIBGCC2_CFLAGS="-O2  -DCROSS_COMPILE -DIN_GCC 
-DHAIFA    -g -O2 -I./include    -g1  
-DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc   
-mrelocatable-lib -mno-eabi -mstrict-align" libgcc2.a make[3]: Entering 
directory `/tmp/build/gcc/gcc' rm -f tmplibgcc2.a 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 _fixunsxfdi 
_floatdixf _fixunsxfsi _fixtfdi _fixunstfdi _floatditf __gcc_bcmp _varargs 
__dummy _eprintf _bb _shtab _clear_cache _trampoline __main _exit _ctors _pure; 
\ do \   echo ${name}; \   /tmp/build/gcc/gcc/xgcc 
-B/tmp/build/gcc/gcc/ -B/tools/H-i686-pc-cygwin/powerpc-eabi/bin/ 
-I/tools/H-i686-pc-cygwin/powerpc-eabi/include -O2  -DCROSS_COMPILE 
-DIN_GCC -DHAIFA    -g -O2 -I./include    
-g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc   
-mrelocatable-lib -mno-eabi -mstrict-align -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; \   
powerpc-eabi-ar rc tmplibgcc2.a ${name}.o; \   rm -f ${name}.o; 
\ done _muldi3 as: unrecognized option `-mppc' make[3]: *** 
[libgcc2.a] Error 1 make[3]: Leaving directory 
`/tmp/build/gcc/gcc' make[2]: *** [stmp-multilib-sub] Error 2 make[2]: 
Leaving directory `/tmp/build/gcc/gcc' make[1]: *** [stmp-multilib] Error 
1 make[1]: Leaving directory `/tmp/build/gcc/gcc' make: *** [all-gcc] 
Error 2 make: Leaving directory `/tmp/build/gcc'
   
 

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

* Re: [ECOS] error when building gcc for PowerPC under windowsNT
  2000-11-07 22:42 [ECOS] error when building gcc for PowerPC under windowsNT yyl
@ 2000-11-08  6:32 ` Bart Veer
  0 siblings, 0 replies; 5+ messages in thread
From: Bart Veer @ 2000-11-08  6:32 UTC (permalink / raw)
  To: ylyuan; +Cc: ecos-discuss

First, please adjust your email software to post only in plain text.
Currently you are posting in both text/plain and text/html, which
is a waste of bandwidth and also very annoying to people using email
software that is not MIME aware.

>>>>> " " == yyl  <ylyuan@davform.com> writes:

     > I have problem when building gcc for powerpc under windows NT. I'm
     > following the instructions in the RedHat homepage.

     > The problem arises after I have typed:
     > make -w all-gcc install-gcc LANGUAGES=3D"c c++" 2>&1 | tee make.out
     > =20
     > the output about error I get is:
     > /src/gcc/gcc-2.95.2/gcc/reload1.c:9556: syntax error before `static'
     > /src/gcc/gcc-2.95.2/gcc/reload1.c: In function `reload_combine':
     > /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: stray '\' in program
     > /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: parse error before `)'
     > /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: stray '\' in program
     > /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: parse error before `;'
     > make[1]: *** [reload1.o] Error 1
     > make[1]: Leaving directory `/tmp/build/gcc/gcc'
     > make: *** [all-gcc] Error 2
     > make: Leaving directory `/tmp/build/gcc'
     > =20
     > then I executs following commands:
     >    tr -d '\r' < /src/gcc/gcc-2.95.2/gcc/reload1.c > foo
     >    mv foo /src/gcc/gcc-2.95.2/gcc/reload1.c

This is probably due to Windows carriage return/linefeed problems. See
the FAQ entry for toolchain build problems under Windows,
http://sources.redhat.com/ecos/faq.html#problems_windows

Bart Veer // eCos net maintainer

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

* Re: [ECOS] Error when building GCC for PowerPC under WindowsNT
  2000-09-06  9:01 ` Jonathan Larmour
@ 2000-09-06  9:45   ` Grant Edwards
  0 siblings, 0 replies; 5+ messages in thread
From: Grant Edwards @ 2000-09-06  9:45 UTC (permalink / raw)
  To: Jonathan Larmour; +Cc: Daniel Lind, ecos-discuss

On Wed, Sep 06, 2000 at 05:01:24PM +0100, Jonathan Larmour wrote:
> Daniel Lind wrote:
> > 
> > /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: stray '\' in program
> > /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: parse error before `)'
> > /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: stray '\' in program
> > /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: parse error before `;'
> > make[1]: *** [reload1.o] Error 1
> > make[1]: Leaving directory `/tmp/build/gcc/gcc'
> > make: *** [all-gcc] Error 2
> > make: Leaving directory `/tmp/build/gcc'
> > 
> > What is the problem with reload1.c? What shall I do?
> 
> It is almost certainly extraneous carriage returns. 

This looks like one of the problems I ran into when building
under Cygwin with drives mounted in "text" mode.  If you use
"binary" mode, things work a lot better.

-- 
Grant Edwards
grante@visi.com

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

* Re: [ECOS] Error when building GCC for PowerPC under WindowsNT
  2000-09-06  4:46 [ECOS] Error when building GCC for PowerPC under WindowsNT Daniel Lind
@ 2000-09-06  9:01 ` Jonathan Larmour
  2000-09-06  9:45   ` Grant Edwards
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Larmour @ 2000-09-06  9:01 UTC (permalink / raw)
  To: Daniel Lind; +Cc: ecos-discuss

Daniel Lind wrote:
> 
> /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: stray '\' in program
> /src/gcc/gcc-2.95.2/gcc/reload1.c:9604: parse error before `)'
> /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: stray '\' in program
> /src/gcc/gcc-2.95.2/gcc/reload1.c:9795: parse error before `;'
> make[1]: *** [reload1.o] Error 1
> make[1]: Leaving directory `/tmp/build/gcc/gcc'
> make: *** [all-gcc] Error 2
> make: Leaving directory `/tmp/build/gcc'
> 
> What is the problem with reload1.c? What shall I do?

It is almost certainly extraneous carriage returns. A workaround would be:

tr -d '\r' < /src/gcc/gcc-2.95.2/gcc/reload1.c > foo
mv foo /src/gcc/gcc-2.95.2/gcc/reload1.c

Jifl
-- 
Red Hat, 35 Cambridge Place, Cambridge, UK. CB2 1NS  Tel: +44 (1223) 728762
"Plan to be spontaneous tomorrow."  ||  These opinions are all my own fault

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

* [ECOS] Error when building GCC for PowerPC under WindowsNT
@ 2000-09-06  4:46 Daniel Lind
  2000-09-06  9:01 ` Jonathan Larmour
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Lind @ 2000-09-06  4:46 UTC (permalink / raw)
  To: ecos-discuss

I have problem when building gcc for powerpc under windows NT. I'm
following the instructions in the RedHat homepage.

The problem arises after I have typed:
make -w all-gcc install-gcc LANGUAGES="c c++" 2>&1 | tee make.out

I get the following messages in make.out

make: Entering directory `/tmp/build/gcc'
make[1]: Entering directory `/tmp/build/gcc/libiberty'
make[2]: Entering directory `/tmp/build/gcc/libiberty/testsuite'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/build/gcc/libiberty/testsuite'
make[1]: Leaving directory `/tmp/build/gcc/libiberty'
make[1]: Entering directory `/tmp/build/gcc/texinfo'
make all-recursive
make[2]: Entering directory `/tmp/build/gcc/texinfo'
Making all in intl
make[3]: Entering directory `/tmp/build/gcc/texinfo/intl'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/build/gcc/texinfo/intl'
Making all in lib
make[3]: Entering directory `/tmp/build/gcc/texinfo/lib'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/build/gcc/texinfo/lib'
Making all in makeinfo
make[3]: Entering directory `/tmp/build/gcc/texinfo/makeinfo'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/build/gcc/texinfo/makeinfo'
make[2]: Leaving directory `/tmp/build/gcc/texinfo'
make[1]: Leaving directory `/tmp/build/gcc/texinfo'
make[1]: Entering directory `/tmp/build/gcc/gcc'
running /bin/sh /src/gcc/gcc-2.95.2/gcc/configure  --verbose
--host=i686-pc-cygwin32 --target=powerpc-eabi --prefix=/tools
--exec-prefix=/tools/H-i686-pc-cygwin --srcdir=/src/gcc/gcc-2.95.2/gcc
--with-gcc-version-trigger=/src/gcc/gcc-2.95.2/gcc/version.c
--with-gnu-as --with-gnu-ld --with-newlib --cache-file=../config.cache
--no-create --no-recursion
loading cache ../config.cache
checking LIBRARY_PATH variable... ok
checking GCC_EXEC_PREFIX variable... ok
checking host system type... i686-pc-cygwin32
checking target system type... powerpc-unknown-eabi
checking build system type... i686-pc-cygwin32
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking whether make sets ${MAKE}... (cached) yes
checking whether a default assembler was specified... no
checking whether a default linker was specified... no
checking for gawk... (cached) gawk
checking for flex... (cached) flex
checking for yywrap in -lfl... (cached) yes
checking whether ln works... (cached) yes
checking whether ln -s works... (cached) yes
checking for volatile... (cached) yes
checking for ranlib... (cached) ranlib
checking for bison... (cached) bison -y
checking for a BSD compatible install... /bin/sh
/src/gcc/gcc-2.95.2/install-sh -c
checking how to run the C preprocessor... (cached) gcc -E
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached)
yes
checking whether string.h and strings.h may both be included... (cached)

yes
checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
checking for limits.h... (cached) yes
checking for stddef.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for time.h... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stab.h... (cached) no
checking for sys/file.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for sys/times.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for direct.h... (cached) no
checking for thread.h... (cached) no
checking for pthread.h... (cached) yes
checking for gnatbind... (cached) no
checking whether cpp understands the stringify operator... (cached) yes
checking for inttypes.h... (cached) no
checking for strtoul... (cached) yes
checking for bsearch... (cached) yes
checking for strerror... (cached) yes
checking for putenv... (cached) yes
checking for popen... (cached) yes
checking for bcopy... (cached) yes
checking for bzero... (cached) yes
checking for bcmp... (cached) yes
checking for index... (cached) yes
checking for rindex... (cached) yes
checking for strchr... (cached) yes
checking for strrchr... (cached) yes
checking for kill... (cached) yes
checking for getrlimit... (cached) no
checking for setrlimit... (cached) no
checking for atoll... (cached) no
checking for atoq... (cached) no
checking for sysconf... (cached) yes
checking for isascii... (cached) yes
checking for gettimeofday... (cached) yes
checking for strsignal... (cached) yes
checking for putc_unlocked... (cached) no
checking for fputc_unlocked... (cached) no
checking for fputs_unlocked... (cached) no
checking for vprintf... (cached) yes
checking whether the printf functions support %p... (cached) yes
checking for pid_t... (cached) yes
checking for vfork.h... (cached) no
checking for working vfork... (cached) yes
checking whether malloc must be declared... (cached) no
checking whether realloc must be declared... (cached) no
checking whether calloc must be declared... (cached) no
checking whether free must be declared... (cached) no
checking whether bcopy must be declared... (cached) no
checking whether bzero must be declared... (cached) no
checking whether bcmp must be declared... (cached) no
checking whether index must be declared... (cached) no
checking whether rindex must be declared... (cached) no
checking whether getenv must be declared... (cached) no
checking whether atol must be declared... (cached) no
checking whether sbrk must be declared... (cached) no
checking whether abort must be declared... (cached) no
checking whether atof must be declared... (cached) no
checking whether strerror must be declared... (cached) no
checking whether getcwd must be declared... (cached) no
checking whether getwd must be declared... (cached) yes
checking whether strsignal must be declared... (cached) no
checking whether putc_unlocked must be declared... (cached) yes
checking whether fputs_unlocked must be declared... (cached) yes
checking whether strstr must be declared... (cached) no
checking whether getrlimit must be declared... (cached) yes
checking whether setrlimit must be declared... (cached) yes
checking for sys_siglist declaration in signal.h or unistd.h... (cached)

no
checking if mkdir takes one argument... (cached) no
Using `/src/gcc/gcc-2.95.2/gcc/config/rs6000/rs6000.c' to output insns.
Using `/src/gcc/gcc-2.95.2/gcc/config/rs6000/rs6000.md' as machine
description file.
Using `/src/gcc/gcc-2.95.2/gcc/config/rs6000/eabi.h' as target machine
macro file.
Using the following host machine macro files:
 /src/gcc/gcc-2.95.2/gcc/config/i386/xm-i386.h
 /src/gcc/gcc-2.95.2/gcc/config/i386/xm-cygwin.h
checking for strerror in -lcposix... (cached) no
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) no
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) no
checking for argz.h... (cached) no
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) no
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for strdup... (cached) yes
checking for __argz_count... (cached) no
checking for __argz_stringify... (cached) no
checking for __argz_next... (cached) no
checking for LC_MESSAGES... (cached) no
checking whether NLS is requested... no
checking assembler alignment features...
checking assembler subsection support...
checking assembler instructions...
Using the Haifa scheduler.
Removing toplev.o
Links are now set up to build a cross-compiler for powerpc-unknown-eabi
  from i686-pc-cygwin32.
updating cache ../config.cache
creating ./config.status
/bin/sh /src/gcc/gcc-2.95.2/gcc/configure.frag /src/gcc/gcc-2.95.2/gcc
"cp" \
 "/src/gcc/gcc-2.95.2/gcc/config/i386/x-cygwin"
"/src/gcc/gcc-2.95.2/gcc/config/rs6000/t-ppcgas
/src/gcc/gcc-2.95.2/gcc/config/rs6000/t-ppccomm
/src/gcc/gcc-2.95.2/gcc/config/t-install-cpp"
cp config.status config.run
LANGUAGES="c++" /bin/sh config.run
creating Makefile
creating intl/Makefile
creating po/Makefile.in
creating fixinc/Makefile
creating cp/Makefile
creating auto-host.h
auto-host.h is unchanged
linking /src/gcc/gcc-2.95.2/gcc/intl/libgettext.h to intl/libintl.h
creating libintl.h
rm -f config.run
make[1]: Leaving directory `/tmp/build/gcc/gcc'
make[1]: Entering directory `/tmp/build/gcc/gcc'
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H    -I.
-I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include \

-DGCC_INCLUDE_DIR=\"/tools/H-i686-pc-cygwin/lib/gcc-lib/powerpc-eabi/2.95.2/include\"

\

-DGPLUSPLUS_INCLUDE_DIR=\"/tools/H-i686-pc-cygwin/lib/gcc-lib/powerpc-eabi/2.95.2/../../../..`echo

/tools/H-i686-pc-cygwin | sed -e 's|^/tools||' -e
's|/[^/]*|/..|g'`/include/g++-3\" \
  -DLOCAL_INCLUDE_DIR=\"/tools/include\" \

-DCROSS_INCLUDE_DIR=\"/tools/H-i686-pc-cygwin/lib/gcc-lib/powerpc-eabi/2.95.2/../../../`echo

/tools/H-i686-pc-cygwin | sed -e 's|^/tools||' -e 's|/$||' -e
's|^[^/]|/|' -e 's|/[^/]*|../|g'`powerpc-eabi/sys-include\" \

-DTOOL_INCLUDE_DIR=\"/tools/H-i686-pc-cygwin/lib/gcc-lib/powerpc-eabi/2.95.2/../../../`echo

/tools/H-i686-pc-cygwin | sed -e 's|^/tools||' -e 's|/$||' -e
's|^[^/]|/|' -e 's|/[^/]*|../|g'`powerpc-eabi/include\" \
  -c `echo /src/gcc/gcc-2.95.2/gcc/cccp.c | sed 's,^\./,,'`
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H    -I.
-I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include \
  -DLOCALEDIR=\"/tools/share/locale\" \
  -c `echo /src/gcc/gcc-2.95.2/gcc/intl.c | sed 's,^\./,,'`
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H    -I.
-I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include \
-DPREFIX=\"/tools\" \
  -c `echo /src/gcc/gcc-2.95.2/gcc/prefix.c | sed 's,^\./,,'`
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H  -o
cccp.exe cccp.o cexp.o intl.o prefix.o version.o  mbchar.o
obstack.o       -ladvapi32 ../libiberty/libiberty.a
rm -f cpp.exe
ln cccp.exe cpp.exe
(cd intl && make all)
make[2]: Entering directory `/tmp/build/gcc/gcc/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/build/gcc/gcc/intl'
gcc -c -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H
-I. -I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include \
  /src/gcc/gcc-2.95.2/gcc/gencheck.c
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H  -o
gencheck \
 gencheck.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case ""

in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac `  ` case "" in
?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` -ladvapi32
./gencheck > tmp-check.h
/src/gcc/gcc-2.95.2/gcc/move-if-change tmp-check.h tree-check.h
tree-check.h is unchanged
touch s-check
gcc -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H    -I.
-I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include  \
  -DTARGET_NAME=\"powerpc-eabi\" \
  -c `echo /src/gcc/gcc-2.95.2/gcc/toplev.c | sed 's,^\./,,'`
gcc -c -DCROSS_COMPILE -DIN_GCC -DHAIFA    -g -O2  -DHAVE_CONFIG_H
-I. -I/src/gcc/gcc-2.95.2/gcc -I/src/gcc/gcc-2.95.2/gcc/config
-I/src/gcc/gcc-2.95.2/gcc/../include /src/gcc/gcc-2.95.2/gcc/reload1.c
/src/gcc/gcc-2.95.2/gcc/reload1.c:9554: `LABEL' undeclared here (not in
a function)
/src/gcc/gcc-2.95.2/gcc/reload1.c:9554: `min_labelno' undeclared here
(not in a function)
/src/gcc/gcc-2.95.2/gcc/reload1.c:9556: syntax error before `static'
/src/gcc/gcc-2.95.2/gcc/reload1.c: In function `reload_combine':
/src/gcc/gcc-2.95.2/gcc/reload1.c:9604: stray '\' in program
/src/gcc/gcc-2.95.2/gcc/reload1.c:9604: parse error before `)'
/src/gcc/gcc-2.95.2/gcc/reload1.c:9795: stray '\' in program
/src/gcc/gcc-2.95.2/gcc/reload1.c:9795: parse error before `;'
make[1]: *** [reload1.o] Error 1
make[1]: Leaving directory `/tmp/build/gcc/gcc'
make: *** [all-gcc] Error 2
make: Leaving directory `/tmp/build/gcc'


What is the problem with reload1.c? What shall I do?

/Daniel Lind       Daniel.lind@bluelabs.se



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

end of thread, other threads:[~2000-11-08  6:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-11-07 22:42 [ECOS] error when building gcc for PowerPC under windowsNT yyl
2000-11-08  6:32 ` Bart Veer
  -- strict thread matches above, loose matches on Subject: below --
2000-09-06  4:46 [ECOS] Error when building GCC for PowerPC under WindowsNT Daniel Lind
2000-09-06  9:01 ` Jonathan Larmour
2000-09-06  9:45   ` Grant Edwards

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).