I decided for goofs to try and get ffmpeg working (and astonishingly, got quite far; after disabling assembly (because of an issue that will become apparent)).
FFmpeg uses autotools, so I need to use ExternalProject_Add.
It compiles, but I can't actually link to the result, implying that it's not actually using the compiler.
/home/gavin/Projects/os9ffmpegplayer/lib/lib/libavcodec.a: file not recognized: file format not recognized.
I also tried appending CC=powerpc-apple-macos-gcc LD=powerpc-apple-macos-ld CXX=powerpc-apple-macos-g++ to CONFIGURE_COMMAND and MAKE_COMMAND, to no avail
Anything I can do to fix this? I tried compiling by just adding all the source files manually, but the problem there is that it ignores config.h and seems to get confused thereon with imports.
I decided for goofs to try and get ffmpeg working (and astonishingly, got quite far; after disabling assembly (because of an issue that will become apparent)).
FFmpeg uses autotools, so I need to use ExternalProject_Add.
It compiles, but I can't actually link to the result, implying that it's not actually using the compiler.
/home/gavin/Projects/os9ffmpegplayer/lib/lib/libavcodec.a: file not recognized: file format not recognized
.I also tried appending
CC=powerpc-apple-macos-gcc LD=powerpc-apple-macos-ld CXX=powerpc-apple-macos-g++
toCONFIGURE_COMMAND
andMAKE_COMMAND
, to no availAnything I can do to fix this? I tried compiling by just adding all the source files manually, but the problem there is that it ignores config.h and seems to get confused thereon with imports.