1
0
Fork 0
digest-blake2b/ext/digest/blake2b/ext/extconf.rb

15 lines
261 B
Ruby

# frozen_string_literal: true
require 'mkmf'
$CFLAGS += ' -std=c99 -pedantic -Wall -Wextra'
if RUBY_PLATFORM =~ /^x86_64/
$CPPFLAGS += ' -DIMPL_SSE'
$CFLAGS += ' -Wno-long-long'
else
$CPPFLAGS += ' -DIMPL_REF'
end
create_makefile 'digest/blake2b/ext'