public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Marc Espie <espie@quatramaran.ens.fr>
To: pcg@goof.com
Cc: egcs@egcs.cygnus.com, egcs-patches@cygnus.com
Subject: egcs benchmark suite, nits
Date: Thu, 28 Jan 1999 05:53:00 -0000	[thread overview]
Message-ID: <199901281352.OAA09634@quatramaran.ens.fr> (raw)
In-Reply-To: <19990116065208.A17513@cerebro.laendle>

This small patch:
- removes the dependency on gnu-make features of the Makefile,
- makes it available to your average paranoid sys-admin who doesn't have
. in his PATH.

There may be some other problems, I have been too busy with other funny
egcs things to run the benchmark to completion yet, but thanks !

Index: benchmarks/Makefile
===================================================================
RCS file: /egcs/carton/cvsfiles/benchmarks/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- Makefile	1999/01/27 12:06:50	1.12
+++ Makefile	1999/01/28 13:48:02
@@ -40,8 +40,9 @@
 mhz: lib/mhz
 	lib/mhz >mhz
 	
-lib/mhz: lib/mhz.c lib/lib_timing.c lib/lib_stats.c
-	$(CC) -O -o $@ $^ -lm
+MHZ=lib/mhz.c lib/lib_timing.c lib/lib_stats.c
+lib/mhz: ${MHZ}
+	$(CC) -O -o $@  ${MHZ} -lm
 
 bench.a: bench.o
 	$(AR) r $@ $?
Index: benchmarks/runbench
===================================================================
RCS file: /egcs/carton/cvsfiles/benchmarks/runbench,v
retrieving revision 1.9
diff -u -r1.9 runbench
--- runbench	1999/01/27 12:06:55	1.9
+++ runbench	1999/01/28 13:48:02
@@ -12,7 +12,7 @@
 
 VERSION=0.9.2
 
-. benchlib.sh
+. ./benchlib.sh
 
 # make this default the same as in the Makefile
 TIME=5
@@ -64,7 +64,7 @@
 done
 
 init_bench
-. bench.def
+. ./bench.def
 end_bench
 
 

WARNING: multiple messages have this Message-ID
From: Marc Espie <espie@quatramaran.ens.fr>
To: pcg@goof.com
Cc: egcs@egcs.cygnus.com, egcs-patches@cygnus.com
Subject: egcs benchmark suite, nits
Date: Sun, 31 Jan 1999 23:58:00 -0000	[thread overview]
Message-ID: <199901281352.OAA09634@quatramaran.ens.fr> (raw)
Message-ID: <19990131235800.6g-j0ima0XVsXFMtHZk8NDmOt3iH5onIFRgODDeS2JY@z> (raw)
In-Reply-To: <19990116065208.A17513@cerebro.laendle>

This small patch:
- removes the dependency on gnu-make features of the Makefile,
- makes it available to your average paranoid sys-admin who doesn't have
. in his PATH.

There may be some other problems, I have been too busy with other funny
egcs things to run the benchmark to completion yet, but thanks !

Index: benchmarks/Makefile
===================================================================
RCS file: /egcs/carton/cvsfiles/benchmarks/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- Makefile	1999/01/27 12:06:50	1.12
+++ Makefile	1999/01/28 13:48:02
@@ -40,8 +40,9 @@
 mhz: lib/mhz
 	lib/mhz >mhz
 	
-lib/mhz: lib/mhz.c lib/lib_timing.c lib/lib_stats.c
-	$(CC) -O -o $@ $^ -lm
+MHZ=lib/mhz.c lib/lib_timing.c lib/lib_stats.c
+lib/mhz: ${MHZ}
+	$(CC) -O -o $@  ${MHZ} -lm
 
 bench.a: bench.o
 	$(AR) r $@ $?
Index: benchmarks/runbench
===================================================================
RCS file: /egcs/carton/cvsfiles/benchmarks/runbench,v
retrieving revision 1.9
diff -u -r1.9 runbench
--- runbench	1999/01/27 12:06:55	1.9
+++ runbench	1999/01/28 13:48:02
@@ -12,7 +12,7 @@
 
 VERSION=0.9.2
 
-. benchlib.sh
+. ./benchlib.sh
 
 # make this default the same as in the Makefile
 TIME=5
@@ -64,7 +64,7 @@
 done
 
 init_bench
-. bench.def
+. ./bench.def
 end_bench
 
 

  parent reply	other threads:[~1999-01-28  5:53 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-01-31 23:58 announce: egcs benchmark suite, alpha release Marc Lehmann
1999-01-20 18:54 ` Arvind Sankar
1999-01-20 19:12   ` Arvind Sankar
1999-01-31 23:58     ` Arvind Sankar
1999-01-31 23:58   ` Arvind Sankar
1999-01-28  5:53 ` Marc Espie [this message]
1999-01-31 23:58   ` egcs benchmark suite, nits Marc Espie
1999-01-31 23:58 ` announce: egcs benchmark suite, alpha release Dave Love
1999-01-31 23:58   ` Jeffrey A Law
1999-01-22 12:25     ` Marc Lehmann
1999-01-24  8:28       ` Dave Love
1999-01-24 14:52         ` Marc Lehmann
1999-01-31 23:58           ` Marc Lehmann
1999-01-31 23:58         ` Dave Love
1999-01-31 23:58       ` Marc Lehmann

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=199901281352.OAA09634@quatramaran.ens.fr \
    --to=espie@quatramaran.ens.fr \
    --cc=egcs-patches@cygnus.com \
    --cc=egcs@egcs.cygnus.com \
    --cc=pcg@goof.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).