From 08b6d2ecd0251bd677d49cbcfdca6bf25bc5ab30 Mon Sep 17 00:00:00 2001 From: SaekiMototsune Date: Tue, 21 Apr 2026 15:15:01 +0900 Subject: [PATCH] Disable some gems on build_config for playstationportable --- build_config/playstationportable.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build_config/playstationportable.rb b/build_config/playstationportable.rb index 66096b054..453082517 100644 --- a/build_config/playstationportable.rb +++ b/build_config/playstationportable.rb @@ -72,7 +72,9 @@ MRuby::CrossBuild.new("playstationportable") do |conf| conf.gem :core => "mruby-os-memsize" conf.gem :core => "mruby-proc-binding" conf.gem :core => "mruby-sleep" - conf.gem :core => "mruby-io" - conf.gem :core => "mruby-dir" - #conf.gem :core => "mruby-socket" unsupported + # Disabled until PSP-specific HALs are available; the POSIX HALs depend on + # APIs that the PSP SDK does not fully provide. + # conf.gem :core => "mruby-io" + # conf.gem :core => "mruby-dir" + # conf.gem :core => "mruby-socket" end