2024-11-22 12:32:16 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "mkmf"
|
|
|
|
|
|
|
|
srcdir = File.join(__dir__, "..")
|
2024-11-26 01:22:38 +09:00
|
|
|
$INCFLAGS << " -I#{srcdir}"
|
2024-11-22 12:32:16 +00:00
|
|
|
|
2024-12-04 14:29:47 -05:00
|
|
|
$CPPFLAGS << " -DBUILDING_MODULAR_GC"
|
2024-11-26 01:22:38 +09:00
|
|
|
|
|
|
|
append_cflags("-fPIC")
|
2024-11-22 12:32:16 +00:00
|
|
|
|
2025-01-14 15:33:52 +09:00
|
|
|
def create_gc_makefile(name, &block)
|
|
|
|
create_makefile("librubygc.#{name}", &block)
|
2024-11-22 12:32:16 +00:00
|
|
|
end
|