Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread David W. Chapman Jr.
On Sat, May 11, 2002 at 01:35:05PM -0700, David O'Brien wrote: > On Sat, May 11, 2002 at 01:08:35PM -0700, Kris Kennaway wrote: > > On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > > > -. if ${CPUTYPE} == "k7" > > > -_CPUCFLAGS = -march=k6 # gcc doesn't support athlon yet, but

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread Kris Kennaway
On Sat, May 11, 2002 at 01:33:38PM -0700, Steve Kargl wrote: > On Sat, May 11, 2002 at 01:08:35PM -0700, Kris Kennaway wrote: > > On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > > > -. if ${CPUTYPE} == "k7" > > > -_CPUCFLAGS = -march=k6 # gcc doesn't support athlon yet, but i

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread David O'Brien
On Sat, May 11, 2002 at 01:08:35PM -0700, Kris Kennaway wrote: > On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > > -. if ${CPUTYPE} == "k7" > > -_CPUCFLAGS = -march=k6 # gcc doesn't support athlon yet, but it will > > +. if ${CPUTYPE} == "athlon" > > +_CPUCFLAGS = -march=a

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread Steve Kargl
On Sat, May 11, 2002 at 01:08:35PM -0700, Kris Kennaway wrote: > On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > > -. if ${CPUTYPE} == "k7" > > -_CPUCFLAGS = -march=k6 # gcc doesn't support athlon yet, but it will > > +. if ${CPUTYPE} == "athlon" > > +_CPUCFLAGS = -march=a

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread Kris Kennaway
On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > -. if ${CPUTYPE} == "k7" > -_CPUCFLAGS = -march=k6 # gcc doesn't support athlon yet, but it will > +. if ${CPUTYPE} == "athlon" > +_CPUCFLAGS = -march=athlon AFAIK the k7 is a valid name for the athlon (marchitecture name)

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread David O'Brien
On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > This applies to post gcc 3.1 upgrades. Eek, actually there was no reason to remove K7. It should still be accepted as an alias for "athlon". Your patch broke existing settings, including mine. :-( "Be liberal in what you accept

Re: patch to add athlon to bsd.cpu.mk

2002-05-11 Thread David O'Brien
On Sat, May 11, 2002 at 12:12:16PM -0700, Steven G. Kargl wrote: > This applies to post gcc 3.1 upgrades. Thanks! Committed. Note that GCC 3.1 also supports SSE instructions. (I think SSE2 will be in 3.2, or did that make it into 3.1 recently??) If anyone has other _tested_ updates for Alpha

patch to add athlon to bsd.cpu.mk

2002-05-11 Thread Steven G. Kargl
This applies to post gcc 3.1 upgrades. -- Steve http://troutmask.apl.washington.edu/~kargl/ --- bsd.cpu.mk.orig Sat May 11 11:57:01 2002 +++ bsd.cpu.mk Sat May 11 12:00:49 2002 @@ -22,7 +22,7 @@ . elif ${CPUTYPE} == "pentium" CPUTYPE = i586 . elif ${CPUTYPE} == "athlon" -CPUTYPE = k7 +