Skip to content

Commit

Permalink
mor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Sep 18, 2023
1 parent f5dbc59 commit 6429d4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
make -C gas CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C binutils CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C ld CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C sim CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C sim FLAGS_TO_PASS=libsim.a CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C readline CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make -C gdb CFLAGS="${{ matrix.TARGET.CFLAGS }}"
- name: Test for file
Expand Down
7 changes: 4 additions & 3 deletions gdb/config/mips/mipslinuxgnu.mt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Based on vr4300.mt
TDEPFILES= mips-tdep.o remote-mips.o
# TDEPFILES= mips-tdep.o remote-mips.o
TDEPFILES= mips-tdep.o
TM_FILE= tm-vr4300.h
SIM_OBS = remote-sim.o
SIM = ../sim/mips/libsim.a
# SIM_OBS = remote-sim.o
# SIM = ../sim/mips/libsim.a
2 changes: 1 addition & 1 deletion sim/mips/sim-main.h
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ enum float_operation
#define NR_COP0_GPR 32
unsigned_word cop0_gpr[NR_COP0_GPR];
#define COP0_GPR ((CPU)->cop0_gpr)
#define COP0_BADVADDR ((unsigned32)(COP0_GPR[8]))
#define COP0_BADVADDR (COP0_GPR[8])

/* Keep the current format state for each register: */
FP_formats fpr_state[32];
Expand Down

0 comments on commit 6429d4c

Please sign in to comment.