module Bootsnap::LoadPathCache

def supported?

def supported?
  if RUBY_PLATFORM.match?(/darwin|linux|bsd|mswin|mingw|cygwin/)
    case RUBY_ENGINE
    when "truffleruby"
      # https://github.com/oracle/truffleruby/issues/3131
      RUBY_ENGINE_VERSION >= "23.1.0"
    when "ruby"
      true
    else
      false
    end
  end
end