You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using [Homebrew](https://brew.sh/), you can install the mips toolchain after downloading [these two scripts](https://github.com/grumpycoders/pcsx-redux/tree/main/tools/macos-mips) (or cloning the whole PCSX-Redux repository).
This is the default build, and will enable a release build of the library and your binary. It will be fast and small, but debugging will be hard.
112
-
- `make BUILD=Debug`
113
+
- `make BUILD=Debug`
113
114
This will enable a full debug build of the library and your binary. It will be slow and bloated, but debugging will be very easy.
114
-
- `make BUILD=SmallDebug`
115
+
- `make BUILD=SmallDebug`
115
116
This will enable a debug build of the library and your binary with still some optimizations. Debugging is possible, but will be hindered at times. It is the best compromise if debugging is needed while retaining some speed and small code footprint.
116
-
- `make BUILD=LTO`
117
+
- `make BUILD=LTO`
117
118
Thiswillenableareleasebuildofthelibraryandyourbinarywith[LTO](https://gcc.gnu.org/wiki/LinkTimeOptimization) enabled. It will be really fast and really small, but debugging will be impossible.
0 commit comments