[quake2] this is just alittle out of hand

Michael Christy christy at jlab.org
Sun Jan 23 14:14:11 EST 2005


Hi Brendan


Attached is the diff of my Makefile for Alpha.  All the targets that I
tried worked ok so I think I just enabled all targets for AXP.  In
addition, Q2max is broken on Alpha (crashes at first particle effect) so I
have disabled that and the ascii renderer (do enough people use this to
have it compiled by default?) by default.  I think the only other change
I made was to add the -mcpu=ev5 compile option, so this should work fine
on all EV5 and up alphas.  Personally, I use -mcpu=ev67 for my machines to
get a little extra kick, but users can further optomize depending on
machine type, etc.


Cheers

-Eric




On Sat, 15 Jan 2005, brendan burns wrote:

> Eric,
> if you wanted to send me a patch to the makefile to make it work on
> alpha that'd be great.
>
> Thanks
> --brendan
>
-------------- next part --------------
28,29c28,29
< BUILD_AA=YES		# build the ascii soft renderer.
< BUILD_QMAX=YES		# build the fancier GL graphics
---
> BUILD_AA=NO		# build the ascii soft renderer.
> BUILD_QMAX=NO		# build the fancier GL graphics
70,71c70,71
< RELEASE_CFLAGS=$(BASE_CFLAGS) -ffast-math -funroll-loops \
< 	-fomit-frame-pointer -fexpensive-optimizations
---
> RELEASE_CFLAGS=$(BASE_CFLAGS) -O2 -mcpu=ev5 -ffast-math -funroll-loops \
> 	-fomit-frame-pointer -fexpensive-optimizations 
222,223c222,223
<  ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
<   $(warning Warning: SDLQuake2 not supported for $(ARCH))
---
> ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
>   TARGETS += $(BUILDDIR)/sdlquake2
227c227
<   $(warning Warning: SVGAlib support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_soft.$(SHLIBEXT)
231c231
<   $(warning Warning: X11 support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_softx.$(SHLIBEXT)
235c235
<   $(warning Warning: support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_glx.$(SHLIBEXT)
239c239
<   $(warning Warning: FXGL support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_gl.$(SHLIBEXT)
243c243
<   $(warning Warning: SDL support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_softsdl.$(SHLIBEXT)
247c247
<   $(warning Warning: SDLGL support not supported for $(ARCH))
---
>   TARGETS += $(BUILDDIR)/ref_sdlgl.$(SHLIBEXT)
278a279
> 


More information about the quake2 mailing list