public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: hjl@lucon.org (H.J. Lu)
To: jackson@negril.msrce.howard.edu (Aaron Jackson)
Cc: law@cygnus.com, egcs@cygnus.com
Subject: Re: testing consistency
Date: Thu, 11 Sep 1997 10:17:00 -0000	[thread overview]
Message-ID: <m0x9CrQ-0004ecC@ocean.lucon.org> (raw)
In-Reply-To: <9709110529.AA03191@negril.msrce.howard.edu>

> 
> I have tried to use the bootstrap target you posted several times, both
> on the 970904 and the 970907 snapshot and was NEVER able to get past the
> first stage build.  I finally gave up on egcs and just compiled and
> installed gcc2.7.2.2 and g770.5.20.  I tried on both ultrix 4.4 and
> digital unix 2.0 systems.  I would like to stay current with all these
> many patches and improvements posted so far, and I'll give it another try
> with the next snapshot, although I loath the four hour compile times and
> I get really bummed when it doesn't work.
> 

Ok. That is what I have been doing:

# cd bin/gcc-debug
# ../../../egcs/gcc/configure 
# make bootstrap
# make install
# cd ../egcs
# ../../../egcs/configure
# make
# make check
# make install

BTW, egcs/configure is broken for linux or any native
platforms. I have sent in this patch to fix it for linux:

Mon Aug 25 17:31:49 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)

	* configure (prefix): Initialized to NONE. Set to
	${native_prefix} for Linux or ${default_prefix} for others if
	it is NONE.
	(default_prefix): New. Initialized to /usr/local.
	(native_prefix): New. Initialized to /usr.

to fix it. But I got no positive reponse.


H.J.
----
Index: configure
===================================================================
RCS file: /home/work/cvs/gnu/egcs/configure,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 configure
--- configure	1997/08/26 00:20:39	1.1.1.1
+++ configure	1997/08/27 03:10:10
@@ -62,7 +62,9 @@
 norecursion=
 other_options=
 package_makefile_frag=
-prefix=/usr/local
+prefix=NONE
+default_prefix=/usr/local
+native_prefix=/usr
 progname=
 program_prefix=
 program_prefixoption=
@@ -512,6 +514,18 @@
         fi
 esac
 
+# Are we using gcc as the native compiler?
+if [ x${prefix} = xNONE ]; then
+	case ${host_alias} in
+	*linux*)	# All Linux's use gcc as the native compiler.
+		prefix=${native_prefix}
+		;;
+	*)
+		prefix=${default_prefix}
+		;;
+	esac
+fi
+
 # default exec_prefix
 case "${exec_prefixoption}" in
 "") exec_prefix="\$(prefix)" ;;

  parent reply	other threads:[~1997-09-11 10:17 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-09-10 22:37 Aaron Jackson
1997-09-11  0:40 ` Jim Wilson
1997-09-11  9:23 ` Jeffrey A Law
1997-09-11 10:17 ` H.J. Lu [this message]
1997-09-11 11:05   ` Jeffrey A Law
1997-09-11 11:05     ` H.J. Lu
1997-09-11 11:05       ` Jeffrey A Law
1997-09-11 11:36         ` H.J. Lu
1997-09-11 11:36           ` Jeffrey A Law
1997-09-11 12:54             ` H.J. Lu
1997-09-11 13:20               ` Jeffrey A Law
1997-09-11 14:01                 ` Per Bothner
1997-09-11 15:09                   ` Richard Henderson
1997-09-18 12:57                   ` Bob Glickstein
1997-09-11 13:37             ` Jim Wilson
1997-09-11 14:11               ` Per Bothner
1997-09-11 15:01               ` Jeffrey A Law
1997-09-11 16:13                 ` Joe Buck
1997-09-11 17:08                 ` Jim Wilson
1997-09-11 18:39                   ` Joe Buck
1997-09-11 13:20           ` Per Bothner
1997-09-12  7:27         ` Paul Koning
1997-09-11 12:57   ` Ian Lance Taylor
1997-09-11 13:51     ` H.J. Lu
1997-09-11 13:54       ` Ian Lance Taylor
1997-09-11 13:59         ` H.J. Lu
1997-09-11 14:04           ` Ian Lance Taylor
1997-09-11 19:01   ` Jim Wilson
1997-09-14 12:06 ` Joel Sherrill
1997-09-14 12:19   ` Jeffrey A Law
1997-09-14 12:44     ` Joel Sherrill
1997-09-18 22:56       ` Jeffrey A Law
1997-09-19  8:04         ` H.J. Lu
1997-09-19  8:15           ` Jeffrey A Law
1997-09-19 12:19           ` Jim Wilson
1997-09-19 13:14             ` Joe Buck
1997-09-19 14:51               ` Dave Love
1997-09-19 17:12               ` Jeffrey A Law
  -- strict thread matches above, loose matches on Subject: below --
1997-09-19  9:52 Kaveh R. Ghazi
1997-09-19 10:20 ` Joe Buck
1997-09-18 21:42 Mike Stump
1997-09-18 21:50 ` Jeffrey A Law
1997-09-18 21:55 ` Joe Buck
     [not found] <oren6qtfsg.fsf@sunsite.dcc.unicamp.br>
1997-09-18 20:37 ` Jeffrey A Law
1997-09-18 21:32   ` Alexandre Oliva
1997-09-18 22:24     ` Jeffrey A Law
1997-09-15 14:44 Alexandre Oliva
1997-09-11 21:33 Peter Seebach
     [not found] <199709112227.SAA01970cygnus.egcs@tweedledumb.cygnus.com>
1997-09-11 16:31 ` not-for-mail
1997-09-11 15:27 meissner
1997-09-11 16:06 ` Doug Evans
1997-09-11 17:08 ` Joe Buck
1997-09-11 11:36 Mike Stump
1997-09-11 12:47 ` Jim Wilson
1997-09-05 18:09 meissner
1997-09-05 18:55 ` Joel Sherrill
1997-09-04 18:48 Joe Buck
1997-09-04 20:13 ` Dave Avery
1997-09-04 21:11   ` Jim Wilson
1997-09-05  8:56     ` Joe Buck
1997-09-05  8:58   ` Joe Buck
1997-09-05  7:26 ` Joel Sherrill
1997-09-05 12:44   ` Jeffrey A Law
1997-09-05 16:40     ` Joel Sherrill
1997-09-10 15:21 ` Jeffrey A Law
1997-09-10 16:15   ` Joe Buck
1997-09-10 16:22     ` Jeffrey A Law
1997-09-10 22:23     ` Alexandre Oliva
1997-09-11  9:23       ` Jeffrey A Law
1997-09-11 10:01     ` Jeffrey A Law

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m0x9CrQ-0004ecC@ocean.lucon.org \
    --to=hjl@lucon.org \
    --cc=egcs@cygnus.com \
    --cc=jackson@negril.msrce.howard.edu \
    --cc=law@cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).