1
0
mirror of https://github.com/prirun/p50em.git synced 2026-05-04 23:35:27 +00:00

bs: fix major bug in get64r: plp jimmy>date_af would fail, l command

(ld -packed -sort_name) would fail after running jimmy>lines>lines.run
This commit is contained in:
Jim
2011-10-24 16:47:10 -04:00
parent d829b0efd9
commit 5ae86cca58
4 changed files with 37 additions and 62 deletions

View File

@@ -3,7 +3,7 @@
REV=${shell hg id -n}
.PHONY: em debug trace vfy fixed hobby dongle lmserver magrst parts smad smag mtread mtwrite
.PHONY: em emi debug trace vfy vfyi fixed hobby dongle lmserver magrst parts smad smag mtread mtwrite
em: # production
@@ -14,7 +14,7 @@ em: # production
emi: # production (Intel)
cc -arch i386 -DREV=\"${REV}\" -DNOREGS -DNOTRACE -DFAST -DNOMEM -O -c em.c -fobey-inline -mdynamic-no-pic -I../dongle/mx/ppc/api;g++ -arch i386 -o em em.o ../dongle/mx/Universal/api/libmxmac260.a -framework IOKit -framework CoreFoundation
cc -arch i686 -DREV=\"${REV}\" -DNOREGS -DNOTRACE -DFAST -DNOMEM -O -c em.c -fobey-inline -mdynamic-no-pic -I../dongle/mx/ppc/api;g++ -arch i386 -o em em.o ../dongle/mx/Universal/api/libmxmac260.a -framework IOKit -framework CoreFoundation
strip em
rm em.o
@@ -40,6 +40,11 @@ vfy: # prod + tracing to verify em changes
cc -arch ppc -DREV=\"\" -O -DFAST -c em.c -fobey-inline -mdynamic-no-pic -I../dongle/mx/ppc/api;g++ -arch ppc -o em em.o ../dongle/mx/ppc/api/libmxmac260.a -framework IOKit -framework CoreFoundation
vfyi: # prod + tracing to verify em changes
cc -arch i686 -DREV=\"\" -O -DNOREGS -DFAST -c em.c -fobey-inline -mdynamic-no-pic -I../dongle/mx/Universal/api;g++ -arch i686 -o em em.o ../dongle/mx/Universal/api/libmxmac260.a -framework IOKit -framework CoreFoundation
fixed: # fixed clock rate, gdb
cc -arch ppc -DREV=\"${REV}\" -DFIXEDCLOCK -DNOIDLE -DNOREGS -g -O0 -DFAST -c em.c -fobey-inline -mdynamic-no-pic -I../dongle/mx/ppc/api;g++ -arch ppc -o em em.o ../dongle/mx/ppc/api/libmxmac260.a -framework IOKit -framework CoreFoundation