mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
Compare commits
3 Commits
a235ebec03
...
92eba7f9f1
Author | SHA1 | Date | |
---|---|---|---|
|
92eba7f9f1 | ||
|
5e8beb3ab7 | ||
|
0acbfa0ca7 |
2
BUILD.md
2
BUILD.md
@ -47,7 +47,7 @@
|
||||
1. Install Qt: `pacman -S <prefix>-{qt6-base,qt6-svg,qt6-multimedia,qt6-svg,qt6-tools}`
|
||||
2. Set up the build directory with `cmake -B build`
|
||||
* Static builds (without DLLs, standalone executable)
|
||||
1. Install Qt: `pacman -S <prefi>-qt5-static`
|
||||
1. Install Qt: `pacman -S <prefix>-qt5-static`
|
||||
(Note: As of writing, the `qt6-static` package does not work.)
|
||||
2. Set up the build directory with `cmake -B build -DBUILD_STATIC=ON -DUSE_QT6=OFF -DCMAKE_PREFIX_PATH=$MSYSTEM_PREFIX/qt5-static`
|
||||
7. Compile: `cmake --build build`
|
||||
|
@ -47,7 +47,7 @@ const char* TARGET_INFO_ARM9 = "cputype:12;cpusubtype:7;triple:arm-none-eabi;ost
|
||||
"<reg name=\"r11\" bitsize=\"32\" type=\"uint32\"/>" \
|
||||
"<reg name=\"r12\" bitsize=\"32\" type=\"uint32\"/>" \
|
||||
"<reg name=\"sp\" bitsize=\"32\" type=\"data_ptr\"/>" \
|
||||
"<reg name=\"lr\" bitsize=\"32\" type=\"code_ptr\"/>" \
|
||||
"<reg name=\"lr\" bitsize=\"32\"/>" \
|
||||
"<reg name=\"pc\" bitsize=\"32\" type=\"code_ptr\"/>" \
|
||||
/* 16 regs */ \
|
||||
|
||||
|
@ -175,6 +175,7 @@ SubcmdHandler GdbStub::Handlers_v[] = {
|
||||
{ .MainCmd = 'v', .SubStr = "Stopped" , .Handler = GdbStub::Handle_v_Stopped },
|
||||
{ .MainCmd = 'v', .SubStr = "MustReplyEmpty", .Handler = GdbStub::Handle_v_MustReplyEmpty },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont?" , .Handler = GdbStub::Handle_v_ContQuery },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont;" , .Handler = GdbStub::Handle_v_Cont },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont" , .Handler = GdbStub::Handle_v_Cont },
|
||||
|
||||
{ .MainCmd = 'v', .SubStr = NULL, .Handler = NULL }
|
||||
|
Loading…
Reference in New Issue
Block a user