Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/io/console/ffi/linux_console.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'ffi'

unless FFI::Platform::ARCH =~ /i386|x86_64|powerpc64|aarch64/
raise LoadError.new("native console only supported on i386, x86_64, powerpc64 and aarch64")
unless FFI::Platform::ARCH =~ /i386|x86_64|powerpc64|aarch64|s390x/
raise LoadError.new("native console only supported on i386, x86_64, powerpc64, aarch64 and s390x")
end

module IO::LibC
Expand Down