blob: c3c23d2cb4aaba6764b2449f0c96c9c3715b4a17 (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
require 'mkmf'
have_func("rb_enc_interned_str", "ruby.h") # RUBY_VERSION >= 3.0
have_func("rb_gc_mark_locations") # Missing on TruffleRuby
append_cflags("-std=c99")
create_makefile 'json/ext/parser'
|