diff options
Diffstat (limited to 'tools/asm_processor')
-rw-r--r-- | tools/asm_processor/compile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asm_processor/compile.sh b/tools/asm_processor/compile.sh index 8c367b3e..c4cb0846 100644 --- a/tools/asm_processor/compile.sh +++ b/tools/asm_processor/compile.sh @@ -20,7 +20,7 @@ cat global.inc >> "$PRELUDE" # Inject the matching assembly into the padded obj file. ../tools/asm_processor/asm_processor.py "$SRC" --post-process "$PADDED_OBJ" --assembler "$AS" --asm-prelude "$PRELUDE" -$DEVKITARM/bin/arm-none-eabi-objcopy --remove-section .comment "$PADDED_OBJ" "$OBJ" +arm-none-eabi-objcopy --remove-section .comment "$PADDED_OBJ" "$OBJ" rm "$PADDED_SRC" rm "$PADDED_OBJ" |