[Atsoft-commit] CVS: dcgen ChangeLog,1.7,1.8 Makefile.prefab,1.3,1.4
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-02-14 05:56:30
|
Update of /cvsroot/atsoft/dcgen
In directory usw-pr-cvs1:/tmp/cvs-serv5112
Modified Files:
ChangeLog Makefile.prefab
Log Message:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/atsoft/dcgen/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ChangeLog 13 Feb 2002 07:57:25 -0000 1.7
--- ChangeLog 14 Feb 2002 05:56:27 -0000 1.8
***************
*** 1,2 ****
--- 1,14 ----
+ [2002-02-13] -- Atani
+ -- Fixed a couple bugs with the new "smaller" 68000 core. For some
+ reason there are two variables which can not be removed from the
+ code, even though they are not referenced.
+ -- Added new makefile variable "EXP_OPT" which enables many optimization
+ flags for the sh-elf compiler.
+ -- Fixed the "clean" target in the cpu68k directory, it wasnt deleting
+ the object files.
+ -- Set the default "log-level" to 3 (verbose).
+ -- Started work towards making the "simple" render mode more stable.
+ Still lots more work to do. Receiving evt 00e0 at random points.
+
[2002-02-12] -- Atani
-- Added new define in makefile to disable the "START TO EXIT GUI" key.
Index: Makefile.prefab
===================================================================
RCS file: /cvsroot/atsoft/dcgen/Makefile.prefab,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile.prefab 13 Feb 2002 07:57:25 -0000 1.3
--- Makefile.prefab 14 Feb 2002 05:56:27 -0000 1.4
***************
*** 36,39 ****
--- 36,43 ----
endif
+ ifdef EXP_OPT
+ KOS_LOCAL_CFLAGS += -falign-functions -falign-jumps -falign-loops -fdce -fssa -fregmove -ffast-math -frerun-loop-opt -frerun-cse-after-loop -fgcse -funroll-all-loops -fdelete-null-pointer-checks -finline-functions -fmove-all-movables -freduce-all-givs -fexpensive-optimizations -fno-rtti
+ endif
+
include $(KOS_BASE)/Makefile.rules
|