From: Randolph C. <ta...@us...> - 2007-03-04 23:19:45
|
Update of /cvsroot/hppaqemu/hppaqemu In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv8519 Modified Files: Makefile.target configure cpu-exec.c Log Message: check in a few more things to get the hppa-linux-user target to compile Index: Makefile.target =================================================================== RCS file: /cvsroot/hppaqemu/hppaqemu/Makefile.target,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.target 4 Mar 2007 15:16:26 -0000 1.3 --- Makefile.target 4 Mar 2007 23:19:40 -0000 1.4 *************** *** 276,279 **** --- 276,283 ---- endif + ifeq ($(TARGET_ARCH), hppa) + LIBOBJS+=helper.o + endif + # NOTE: the disassembler code is only needed for debugging LIBOBJS+=disas.o Index: configure =================================================================== RCS file: /cvsroot/hppaqemu/hppaqemu/configure,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure 4 Mar 2007 15:16:26 -0000 1.3 --- configure 4 Mar 2007 23:19:40 -0000 1.4 *************** *** 423,427 **** # the following are Linux specific if [ "$linux_user" = "yes" ] ; then ! target_list="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user ppc-linux-user mips-linux-user mipsel-linux-user m68k-linux-user $target_list" fi # the following are Darwin specific --- 423,427 ---- # the following are Linux specific if [ "$linux_user" = "yes" ] ; then ! target_list="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user ppc-linux-user mips-linux-user mipsel-linux-user m68k-linux-user hppa-linux-user $target_list" fi # the following are Darwin specific Index: cpu-exec.c =================================================================== RCS file: /cvsroot/hppaqemu/hppaqemu/cpu-exec.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cpu-exec.c 4 Mar 2007 15:16:27 -0000 1.3 --- cpu-exec.c 4 Mar 2007 23:19:40 -0000 1.4 *************** *** 41,45 **** //#define DEBUG_SIGNAL ! #if defined(TARGET_ARM) || defined(TARGET_SPARC) || defined(TARGET_M68K) /* XXX: unify with i386 target */ void cpu_loop_exit(void) --- 41,45 ---- //#define DEBUG_SIGNAL ! #if defined(TARGET_ARM) || defined(TARGET_SPARC) || defined(TARGET_M68K) || defined(TARGET_HPPA) /* XXX: unify with i386 target */ void cpu_loop_exit(void) |