I built devkitPPC from source (https://github.com/devkitPro/buildscripts) to compile libogc with it. By compiling libogc, I got the error
Code: Select all
gcdsptool: Command not found
By the way, by compiling devkitPPC, I ran in some difficulties that I could solve:
- I could not download https://downloads.devkitpro.org/binutils-2.34.tar.xz and https://downloads.devkitpro.org/gcc-10.2.0.tar.xz. I used the git repositories git://sourceware.org/git/binutils-gdb.git (commit: db6878ac5538661c8d66c916a533bd4268217fcb) and git://gcc.gnu.org/git/gcc.git (tag: releases/gcc-10.2.0) instead.
- I got the error cp: target '/opt/devkitpro/devkitPPC' is not a directory, it seems that in devkitppc-rules-1.0.0/Makefile the DESTDIR variable is not set, I set it to an absolute path.
Yoshi