Skip to content

Commit

Permalink
Fix permuter tool paths (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
cadmic authored Oct 1, 2024
1 parent 75be701 commit fe41c77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Run `tools/decompme.py <c-file> <asm-file>` (e.g. `tools/decompme.py src/emulato
### Permuter

To import a function for [decomp-permuter](https://github.com/simonlindholm/decomp-permuter), ensure `powerpc-eabi-objdump` binary
is on your `PATH` (for instance by adding `tools/binutils` from this project) and run something like
is on your `PATH` (for instance by adding `build/binutils` from this project) and run something like

```sh
path/to/permuter/import.py src/emulator/THPRead.c asm/non_matchings/THPRead/Reader.s
Expand Down
4 changes: 2 additions & 2 deletions tools/permuter_settings.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
compiler_type = "mwcc"
compiler_command = "wibo tools/mwcc_compiler/GC/1.1/mwcceppc.exe -Cpp_exceptions off -proc gekko -fp hardware -fp_contract on -enum int -align powerpc -nosyspath -RTTI off -str reuse -multibyte -O4,p -inline auto,deferred -nodefaults -msgstyle gcc -Iinclude -Ilibc -c"
assembler_command = "tools/binutils/powerpc-eabi-as -mgekko"
compiler_command = "build/tools/wibo build/compilers/GC/1.1/mwcceppc.exe -Cpp_exceptions off -proc gekko -fp hardware -fp_contract on -enum int -align powerpc -nosyspath -RTTI off -str reuse -multibyte -O4,p -inline auto,deferred -nodefaults -msgstyle gcc -Iinclude -Ilibc -c"
assembler_command = "build/binutils/powerpc-eabi-as -mgekko"
asm_prelude_file = "include/macros.inc"

[preserve_macros]
Expand Down

0 comments on commit fe41c77

Please sign in to comment.