... | ... | @@ -96,7 +96,17 @@ sudo port install mips-elf-binutils |
|
|
|
|
|
in a terminal to install the MIPS GNU Toolchain.
|
|
|
|
|
|
You also need some sort of Java Runtime Environment to run SyncSim. You can get it from [here](https://www.oracle.com/java/technologies/downloads/#jdk22-mac). The DMG is probably the easiest option (be mindful of the target architecture, for Apple Silicon, i.e. MX chips you're looking for the ARM64 version. For other Macs, the x64 version should be fine.)
|
|
|
NOTE: On some setups, the PATH variable seems to be misconfigured. If you have run into this error, running ``sudo port install mips-elf-binutils`` will result in an output something like
|
|
|
```bash
|
|
|
sudo: port: command not found
|
|
|
```
|
|
|
In this case, you will need to add the following line to the .zshrc file in your home directory:
|
|
|
```
|
|
|
export PATH = "/opt/local/bin:$PATH"
|
|
|
```
|
|
|
after updating `.zshrc`, restarting the terminal will fix the issue.
|
|
|
|
|
|
Once the MIPS GNU toolchain has been successfully installed, you will also need some sort of Java Runtime Environment to run SyncSim. You can get it from [here](https://www.oracle.com/java/technologies/downloads/#jdk22-mac). The DMG is probably the easiest option (be mindful of the target architecture, for Apple Silicon, i.e. MX chips you're looking for the ARM64 version. For other Macs, the x64 version should be fine.)
|
|
|
|
|
|
You can verify JDK has been installed successfully by running
|
|
|
```bash
|
... | ... | |