public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Successful build of gcc-3.0.4 on i686-pc-cygwin
@ 2002-02-22  9:59 Mack Lobell
  2002-02-22 11:27 ` Janis Johnson
  0 siblings, 1 reply; 4+ messages in thread
From: Mack Lobell @ 2002-02-22  9:59 UTC (permalink / raw)
  To: gcc

Hi,

I have successfully built gcc-3.0.4 on Windows NT v4.0 with SP6.

Cygwin version 1.3.9.

$ gcc -v
Reading specs from /usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-5/specs
gcc version 2.95.3-5 (cygwin special)
$ ../../../gcc-3.0.4/configure --prefix=/usr/local/gcc304
$ make bootstrap
$ make install

$ ../../../gcc-3.0.4/config.guess
i686-pc-cygwin

$ /usr/local/gcc304/bin/gcc -v
Reading specs from /usr/local/gcc304/lib/gcc-lib/i686-pc-cygwin/3.0.4/specs
Configured with: ../../../gcc-3.0.4/configure --prefix=/usr/local/gcc304
Thread model: single
gcc version 3.0.4

$ make compare
rm -f .bad_compare
case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo 
compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
for file in *.o; do \
  tail +16c ./$file > tmp-foo1; \
  tail +16c stage$stage/$file > tmp-foo2 \
    && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $file differs >> 
.bad_compare) || true; \
done
case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo 
compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
for dir in tmp-foo intl cp f java objc; do \
  if [ "`echo $dir/*.o`" != "$dir/*.o" ] ; then \
    for file in $dir/*.o; do \
      tail +16c ./$file > tmp-foo1; \
      tail +16c stage$stage/$file > tmp-foo2 \
        && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $file differs >> 
.bad_compare) || true; \
    done; \
  else true; fi; \
done
rm -f tmp-foo*
case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo 
compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
if [ -f .bad_compare ]; then \
  echo "Bootstrap comparison failure!"; \
  cat .bad_compare; \
  exit 1; \
else \
  case "compare" in \
    *-lean ) rm -rf stage$stage ;; \
    *) ;; \
  esac; true; \
fi

Regards.

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

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

* Re: Successful build of gcc-3.0.4 on i686-pc-cygwin
  2002-02-22  9:59 Successful build of gcc-3.0.4 on i686-pc-cygwin Mack Lobell
@ 2002-02-22 11:27 ` Janis Johnson
  0 siblings, 0 replies; 4+ messages in thread
From: Janis Johnson @ 2002-02-22 11:27 UTC (permalink / raw)
  To: Mack Lobell; +Cc: gcc

On Fri, Feb 22, 2002 at 05:55:13PM +0000, Mack Lobell wrote:
> Hi,
> 
> I have successfully built gcc-3.0.4 on Windows NT v4.0 with SP6.
> 
> Cygwin version 1.3.9.
> 
> $ gcc -v
> Reading specs from /usr/lib/gcc-lib/i686-pc-cygwin/2.95.3-5/specs
> gcc version 2.95.3-5 (cygwin special)
> $ ../../../gcc-3.0.4/configure --prefix=/usr/local/gcc304
> $ make bootstrap
> $ make install
> 
> $ ../../../gcc-3.0.4/config.guess
> i686-pc-cygwin
> 
> $ /usr/local/gcc304/bin/gcc -v
> Reading specs from /usr/local/gcc304/lib/gcc-lib/i686-pc-cygwin/3.0.4/specs
> Configured with: ../../../gcc-3.0.4/configure --prefix=/usr/local/gcc304
> Thread model: single
> gcc version 3.0.4

Thanks!  I've added this to the GCC 3.0 build status list at
http://gcc.gnu.org/gcc-3.0/buildstat.html.

Janis

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

* Re: Successful build of gcc-3.0.4 on i686-pc-cygwin
  2002-02-23 11:59 Darren Smith
@ 2002-02-25 13:07 ` Janis Johnson
  0 siblings, 0 replies; 4+ messages in thread
From: Janis Johnson @ 2002-02-25 13:07 UTC (permalink / raw)
  To: Darren Smith; +Cc: gcc

On Sat, Feb 23, 2002 at 07:16:01PM +0000, Darren Smith wrote:
> 
> 
> Hello,
> 
> I have successfully downloaded and built gcc version 3.0.4 on a PIII PC-compatible computer running Windows XP Home Edition and Cygwin 1.3.9.
> 
> I placed the downloaded, unzipped gcc distribution in a directory called e:\\objdir\\srcdir, and issued the following commands from the e:\\objdir directory. All commands were issued from the cygwin prompt.
> 
> > srcdir/configure --enable-threads=win32 --enable-languages=c,c++,java
> > make bootstrap
> > make install
> 
> Done! (output from above commands is not shown)
> 
> > srcdir/config.guess
> i686-pc-cygwin
> 
> > which gcc
> /usr/local/bin/gcc
> 
> > gcc -v
> Reading specs from /usr/local/lib/gcc-lib/i686-pc-cygwin/3.0.4/specs
> Configured with: srcdir/configure --enable-threads=win32 --enable-languages=c,c+
> +,java
> Thread model: win32
> gcc version 3.0.4

Thanks!  I've added this to the GCC 3.0 build status list at
http://gcc.gnu.org/gcc-3.0/buildstat.html.

Janis

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

* Successful build of gcc-3.0.4 on i686-pc-cygwin
@ 2002-02-23 11:59 Darren Smith
  2002-02-25 13:07 ` Janis Johnson
  0 siblings, 1 reply; 4+ messages in thread
From: Darren Smith @ 2002-02-23 11:59 UTC (permalink / raw)
  To: gcc, gcc



Hello,

I have successfully downloaded and built gcc version 3.0.4 on a PIII PC-compatible computer running Windows XP Home Edition and Cygwin 1.3.9.

I placed the downloaded, unzipped gcc distribution in a directory called e:\\objdir\\srcdir, and issued the following commands from the e:\\objdir directory. All commands were issued from the cygwin prompt.

> srcdir/configure --enable-threads=win32 --enable-languages=c,c++,java
> make bootstrap
> make install

Done! (output from above commands is not shown)

> srcdir/config.guess
i686-pc-cygwin

> which gcc
/usr/local/bin/gcc

> gcc -v
Reading specs from /usr/local/lib/gcc-lib/i686-pc-cygwin/3.0.4/specs
Configured with: srcdir/configure --enable-threads=win32 --enable-languages=c,c+
+,java
Thread model: win32
gcc version 3.0.4


Regards,

Darren

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

end of thread, other threads:[~2002-02-25 21:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-22  9:59 Successful build of gcc-3.0.4 on i686-pc-cygwin Mack Lobell
2002-02-22 11:27 ` Janis Johnson
2002-02-23 11:59 Darren Smith
2002-02-25 13:07 ` Janis Johnson

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