milsko/pl/ostype/ClassicMacOS.pl

12 lines
413 B
Perl
Raw Normal View History

2026-04-15 21:41:16 -07:00
use_backend("classicmacos");
2026-04-16 23:40:29 +09:00
print(
"Compiling for Classic Mac OS via ./configure currently outputs a broken executable and it only supports PowerPC. Help is wanted. In the mean time, use CMake."
);
2026-04-15 21:41:16 -07:00
2026-04-16 23:40:29 +09:00
$cc = $ENV{RETRO68_TOOLCHAIN_PATH} . "/bin/powerpc-apple-macos-gcc";
$ar = $ENV{RETRO68_TOOLCHAIN_PATH} . "/bin/powerpc-apple-macos-ar";
2026-04-15 21:41:16 -07:00
add_cflags("-DCLASSIC_MAC_OS");
add_cflags("-DSTBI_NO_THREAD_LOCALS");
1;