gpquake-devel Mailing List for gpQuake (Page 2)
Status: Alpha
Brought to you by:
woogal
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(21) |
Aug
(2) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
---|
From: John W. <Joh...@Di...> - 2004-07-21 20:31:08
|
Woogal, Are you still playing with Gamma? my code sucks balls ;-) John -----Original Message----- From: gpq...@li... [mailto:gpq...@li...] On Behalf Of Florian Hufsky Sent: 21 July 2004 21:13 To: gpq...@li... Subject: [gpquake-devel] current running tasks hi all, just to clarify some stuff (at least for me :) ), if someone doesn't agree with that write to the mailing list. speed selector - rattboi code cleanup - no_skill (djwillis already did a lot) gamma selector - djwillis || woogal ? makefile - djwillis (sorting out) unasigned: controls (quake has some doom style aiming somewhere. i think it's even default) sound speed improvements (pocketquake 0.062 still does a lot of unnecessary float-fixedpoint conversions and not all the code is fpm'ed) + merge with hanheld quake makefiles: ./makefile - djwillis' ./makefile.rattboi - rattboi's ./gp32/makefile - no_skill's (based on the original makefile) ./gp32/makefile.woogal - woogal's - worked fine with 0.2 djwillis is working on that so nevermind thanks for your attention, no_skill ------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click _______________________________________________ gpquake-devel mailing list gpq...@li... https://lists.sourceforge.net/lists/listinfo/gpquake-devel |
From: Florian H. <fh...@ph...> - 2004-07-21 20:11:14
|
hi all, just to clarify some stuff (at least for me :) ), if someone doesn't agree with that write to the mailing list. speed selector - rattboi code cleanup - no_skill (djwillis already did a lot) gamma selector - djwillis || woogal ? makefile - djwillis (sorting out) unasigned: controls (quake has some doom style aiming somewhere. i think it's even default) sound speed improvements (pocketquake 0.062 still does a lot of unnecessary float-fixedpoint conversions and not all the code is fpm'ed) + merge with hanheld quake makefiles: ./makefile - djwillis' ./makefile.rattboi - rattboi's ./gp32/makefile - no_skill's (based on the original makefile) ./gp32/makefile.woogal - woogal's - worked fine with 0.2 djwillis is working on that so nevermind thanks for your attention, no_skill |
From: Florian H. <fh...@ph...> - 2004-07-21 14:25:16
|
my makefile is in cvs: gp32/makefile but i think it's the cause of the instable state of gpquake 0.21 ... (i don't use -specs and other stuff). in fact it's a 1:1 copy of anders granlunds original makefile. he used devkitadv, so maybe we should check some of the settings from the devkitadv makefile include: here's the makefile include (+user, ccbase) from rico's devkitadv port (he uses gcc 3.3.1) i think interesting is: -mstructure-size-boundary=8 --- # Makefile for GP32 development using devkitadv under Win32 # Written 2002 by Christian Nowak <ch...@we...> # Settings PREFIX=arm-agb-elf- CCBASE=c:/devkitadv CUSER = -DLITTLE_ENDIAN -DGP32 -W -Wall -ansi -pedantic CC=$(CCBASE)/bin/$(PREFIX)gcc CFLAGS=$(CUSER) \ -mcpu=arm9tdmi \ -mtune=arm9tdmi \ -fexpensive-optimizations \ -mapcs \ -O3 \ -mstructure-size-boundary=8 \ -mno-thumb-interwork \ -fno-builtin \ -fno-common \ -fno-exceptions \ -finline-functions \ -fomit-frame-pointer \ -fshort-enums \ -ffast-math \ -fshort-double \ -fallow-single-precision \ -ffreestanding \ -I$(CCBASE)/arm-agb-elf/include/gp32 \ -I$(CCBASE)/arm-agb-elf/include CPPFLAGS=$(CUSER) \ -mcpu=arm9tdmi \ -mtune=arm9tdmi \ -O3 \ -mstructure-size-boundary=32 \ -finline-functions \ -fomit-frame-pointer \ -mno-thumb-interwork \ -fno-exceptions \ -fno-common \ -fno-builtin \ -fshort-enums \ -ffast-math \ -fshort-double \ -fexpensive-optimizations \ -mapcs \ -I$(CCBASE)/arm-agb-elf/include/gp32 \ -I$(CCBASE)/arm-agb-elf/include LD=$(CC) LNKSCRIPT=$(CCBASE)/arm-agb-elf/lib/lnkscript LDFLAGS=-Wl,-T $(LNKSCRIPT) GPLIBS=-lgpsdk -lgpgraphic -lgpmem -lgpos -lgpstdlib -lgpstdio -lgpsound -lgpfont -lgpg_ex01 AS=$(CCBASE)/bin/$(PREFIX)as # OBJS GPSTART=$(CCBASE)/arm-agb-elf/lib/gpsdk/gpstart/gpstart.o GPOBJS=$(GPSTART) # $(CCBASE)/arm-agb-elf/lib/gp32_fileio/gp32_fileio.o LINK=$(LD) $(LDFLAGS) -o $@ $^ $(GPOBJS) $(GPLIBS) OBJCOPY=$(CCBASE)/bin/$(PREFIX)objcopy # Implicit Rules %.o: %.c $(CC) $(CFLAGS) -c $< %.o: %.cpp $(CC) $(CPPFLAGS) -c $< %.gxb: %.elf $(OBJCOPY) -O binary $< $@ %.o: %.s $(AS) -o $@ $< John Willis wrote: > It lives, > > Excellent :-D. Thanks again. > Still battling with compile problems here :(. Care to mail me you makefile? > I am trying to do one we can all use. > > John |