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: 3 additions & 1 deletion lib/io/console/ffi/linux_console.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
require 'ffi'

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

module IO::LibC
extend FFI::Library
Expand Down