-
Notifications
You must be signed in to change notification settings - Fork 63
/
Rakefile
707 lines (609 loc) · 20.7 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
require_relative './lib/natalie/compiler/flags'
task default: :build
DEFAULT_BUILD_TYPE = 'debug'.freeze
DL_EXT = RbConfig::CONFIG['DLEXT']
SO_EXT = RbConfig::CONFIG['SOEXT']
SRC_DIRECTORIES = Dir.new('src').children.select { |p| File.directory?(File.join('src', p)) }
desc 'Build Natalie'
task :build do
type = File.exist?('.build') ? File.read('.build') : DEFAULT_BUILD_TYPE
Rake::Task["build_#{type}"].invoke
end
desc 'Build Natalie with no optimization and all warnings (default)'
task build_debug: %i[set_build_debug libnatalie prism_c_ext ctags] do
puts 'Build mode: debug'
end
desc 'Build Natalie with AddressSanitizer enabled'
task build_asan: %i[set_build_asan libnatalie prism_c_ext] do
puts 'Build mode: asan'
end
desc 'Build Natalie with release optimizations enabled and warnings off'
task build_release: %i[set_build_release libnatalie prism_c_ext] do
puts 'Build mode: release'
end
desc 'Remove temporary files created during build'
task :clean do
SRC_DIRECTORIES.each do |subdir|
path = File.join('build', subdir)
rm_rf path
end
rm_rf 'build/build.log'
rm_rf 'build/generated'
rm_rf 'build/libnatalie_base.a'
rm_rf "build/libnatalie_base.#{DL_EXT}"
rm_rf "build/libnat.#{SO_EXT}"
rm_rf Rake::FileList['build/*.o']
end
desc 'Remove all generated files'
task :clobber do
rm_rf 'build'
rm_rf '.build'
end
task distclean: :clobber
desc 'Run the test suite'
task test: %i[build build_test_support] do
sh 'bundle exec ruby test/all.rb'
end
desc 'Run the most-recently-modified test'
task test_last_modified: :build do
last_edited = Dir['test/**/*_test.rb', 'spec/**/*_spec.rb'].max_by { |path| File.stat(path).mtime.to_i }
sh ['bin/natalie', '-I', 'test/support', ENV['FLAGS'], last_edited].compact.join(' ')
end
desc 'Run a folder with tests'
task :test_folder, [:folder] => :build do |task, args|
if args[:folder].nil?
warn("Please run with the folder as argument: `rake #{task.name}[<spec/X/Y>]")
exit(1)
elsif !File.directory?(args[:folder])
warn("The folder #{args[:folder]} does not exist or is not a directory")
exit(1)
else
specs = Dir["#{args[:folder]}/**/*_test.rb", "#{args[:folder]}/**/*_spec.rb"]
sh ['bin/natalie', 'test/runner.rb', specs.to_a].join(' ')
end
end
desc 'Run the most-recently-modified test when any source files change (requires entr binary)'
task :watch do
files = Rake::FileList['**/*.cpp', '**/*.c', '**/*.hpp', '**/*.rb'].exclude('{build,ext}/**/*')
sh "ls #{files} | entr -c -s 'rake test_last_modified'"
end
# The self-hosted compiler is a bit slow yet, so let's run a core subset
# of the tests during regular CI.
desc 'Test that the self-hosted compiler builds and runs a core subset of the tests'
task test_self_hosted: %i[bootstrap build_test_support] do
sh 'bin/nat --version'
env = {
'NAT_BINARY' => 'bin/nat',
'GLOB' => 'spec/language/*_spec.rb',
}
sh env, 'bundle exec ruby test/all.rb'
end
desc 'Test that the self-hosted compiler builds and runs the full test suite'
task test_self_hosted_full: %i[bootstrap build_test_support] do
sh 'bin/nat --version'
env = {
'NAT_BINARY' => 'bin/nat',
}
sh env, 'bundle exec ruby test/all.rb'
end
desc 'Test that some representative code runs with the AddressSanitizer enabled'
task test_asan: :build_asan do
sh 'bin/natalie examples/hello.rb'
sh 'bin/natalie examples/fib.rb'
sh 'bin/natalie examples/boardslam.rb 3 5 1'
# These are some tests that are known to pass with AddressSanitizer enabled.
# We'd like to have all tests passing, of course, but let's start here and
# then hack away at other failing ones when we get time...
%w[
test/natalie/argument_test.rb
test/natalie/autoload_test.rb
test/natalie/backtrace_test.rb
test/natalie/block_test.rb
test/natalie/boolean_test.rb
test/natalie/bootstrap_test.rb
test/natalie/break_test.rb
test/natalie/builtin_constants_test.rb
test/natalie/call_order_test.rb
test/natalie/caller_test.rb
test/natalie/class_var_test.rb
test/natalie/comparable_test.rb
test/natalie/complex_test.rb
test/natalie/const_defined_test.rb
test/natalie/constant_test.rb
test/natalie/define_method_test.rb
test/natalie/defined_test.rb
test/natalie/dup_test.rb
test/natalie/enumerable_test.rb
test/natalie/env_test.rb
test/natalie/equality_test.rb
test/natalie/eval_test.rb
test/natalie/fiddle_test.rb
test/natalie/file_test.rb
test/natalie/fileutils_test.rb
test/natalie/fork_test.rb
test/natalie/freeze_test.rb
test/natalie/global_test.rb
test/natalie/if_test.rb
test/natalie/implicit_conversions_test.rb
test/natalie/instance_eval_test.rb
test/natalie/io_test.rb
test/natalie/ivar_test.rb
test/natalie/kernel_integer_test.rb
test/natalie/kernel_test.rb
test/natalie/lambda_test.rb
test/natalie/load_path_test.rb
test/natalie/loop_test.rb
test/natalie/matchdata_test.rb
test/natalie/method_test.rb
test/natalie/method_visibility_test.rb
test/natalie/module_test.rb
test/natalie/modulo_test.rb
test/natalie/namespace_test.rb
test/natalie/next_test.rb
test/natalie/nil_test.rb
test/natalie/numeric_test.rb
test/natalie/range_test.rb
test/natalie/rational_test.rb
test/natalie/rbconfig_test.rb
test/natalie/regexp_test.rb
test/natalie/require_test.rb
test/natalie/return_test.rb
test/natalie/reverse_each_test.rb
test/natalie/send_test.rb
test/natalie/shell_test.rb
test/natalie/singleton_class_test.rb
test/natalie/socket_test.rb
test/natalie/spawn_test.rb
test/natalie/special_globals_test.rb
test/natalie/super_test.rb
test/natalie/symbol_test.rb
test/natalie/tempfile_test.rb
test/natalie/yield_test.rb
test/natalie/zlib_test.rb
].each do |path|
sh "bin/natalie #{path}"
end
end
task test_all_ruby_spec_nightly: :build do
unless ENV['CI'] || ENV['DOCKER']
puts 'This task only runs on CI and/or in Docker, because it is destructive.'
puts 'Please set CI=true if you really want to run this.'
exit 1
end
sh <<~END
bundle config set --local with 'run_all_specs'
bundle install
git clone https://github.com/ruby/spec /tmp/ruby_spec
sed -i "1i require 'set' # NATFIXME: No autoload in Natalie\\n" /tmp/ruby_spec/core/enumerable/fixtures/classes.rb
mv spec/support spec/spec_helper.rb /tmp/ruby_spec
rm -rf spec
mv /tmp/ruby_spec spec
END
sh 'bundle exec ruby spec/support/nightly_ruby_spec_runner.rb'
end
task output_all_ruby_specs: :build do
version = RUBY_VERSION.sub(/\.\d+$/, '')
sh <<~END
bundle config set --local with 'run_all_specs'
bundle install
ruby spec/support/cpp_output_all_specs.rb output/ruby#{version}
END
end
task :copy_generated_files_to_output do
version = RUBY_VERSION.sub(/\.\d+$/, '')
Dir['build/generated/*'].each do |entry|
if File.directory?(entry)
mkdir_p entry.sub('build/generated', "output/ruby#{version}")
end
end
Rake::FileList['build/generated/**/*.cpp'].each do |path|
cp path, path.sub('build/generated', "output/ruby#{version}")
end
end
desc 'Build the self-hosted version of Natalie at bin/nat'
task bootstrap: [:build, "build/libnat.#{SO_EXT}", 'bin/nat']
desc 'Build MRI C Extension for Prism'
task prism_c_ext: ["build/libprism.#{SO_EXT}", "build/prism/ext/prism/prism.#{DL_EXT}"]
desc 'Show line counts for the project'
task :cloc do
sh 'cloc include lib src test'
end
desc 'Generate tags file for development'
task :ctags do
if system('which ctags 2>&1 >/dev/null')
out = `ctags #{HEADERS + SOURCES} 2>&1`
puts out unless $?.success?
else
puts 'Note: ctags is not available on this system'
end
end
task tags: :ctags
desc 'Format C++ code with clang-format'
task :format do
sh 'find include src lib ' \
"-type f -name '*.?pp' " \
'! -path src/encoding/casemap.cpp ' \
'! -path src/encoding/casefold.cpp ' \
'-exec clang-format -i --style=file {} +'
end
desc 'Show TODO and FIXME comments in the project'
task :todo do
sh "egrep -r 'FIXME|TODO' src include lib"
end
desc 'Run clang-tidy'
task tidy: %i[build tidy_internal]
desc 'Lint GC visiting code'
task gc_lint: %i[build gc_lint_internal]
# # # # Docker Tasks (used for CI) # # # #
def docker_run_flags
ci = '-i -t' if !ENV['CI'] && $stdout.isatty
ci = "-e CI=#{ENV['CI']}" if ENV['CI']
glob = "-e GLOB='#{ENV['GLOB']}'" if ENV['GLOB']
[
'-e DOCKER=true',
ci,
glob,
].compact.join(' ')
end
DEFAULT_HOST_RUBY_VERSION = 'ruby3.3'.freeze
SUPPORTED_HOST_RUBY_VERSIONS = %w[ruby3.1 ruby3.2 ruby3.3].freeze
task :docker_build_gcc do
sh "docker build -t natalie_gcc_#{ruby_version_string} " \
"--build-arg IMAGE='ruby:#{ruby_version_number}' " \
'--build-arg NAT_CXX_FLAGS=-DNAT_GC_GUARD .'
end
task :docker_build_clang do
sh "docker build -t natalie_clang_#{ruby_version_string} " \
"--build-arg IMAGE='ruby:#{ruby_version_number}' " \
'--build-arg NAT_CXX_FLAGS=-DNAT_GC_GUARD ' \
'--build-arg CC=clang ' \
'--build-arg CXX=clang++ ' \
'--build-arg NAT_CXX_FLAGS=-DNAT_GC_GUARD ' \
'.'
end
task docker_bash: :docker_build_clang do
sh "docker run -it --rm --entrypoint bash natalie_clang_#{ruby_version_string}"
end
task docker_bash_gcc: :docker_build_gcc do
sh "docker run -it --rm --entrypoint bash natalie_gcc_#{ruby_version_string}"
end
task docker_bash_lldb: :docker_build_clang do
sh 'docker run -it --rm ' \
'--entrypoint bash ' \
'--cap-add=SYS_PTRACE ' \
'--security-opt seccomp=unconfined ' \
"natalie_clang_#{ruby_version_string}"
end
task docker_bash_gdb: :docker_build_gcc do
sh 'docker run -it --rm ' \
'--entrypoint bash ' \
'--cap-add=SYS_PTRACE ' \
'--security-opt seccomp=unconfined ' \
'-m 2g ' \
'--cpus=2 ' \
"natalie_gcc_#{ruby_version_string}"
end
task docker_test: %i[docker_test_gcc docker_test_clang docker_test_self_hosted docker_test_asan]
task :docker_test_output do
rm_rf 'output'
SUPPORTED_HOST_RUBY_VERSIONS.each do |version|
mkdir_p "output/#{version}"
ENV['RUBY'] = version
Rake::Task[:docker_build_clang].invoke
Rake::Task[:docker_build_clang].reenable # allow to run again
sh "docker run #{docker_run_flags} --rm -v $(pwd)/output:/natalie/output " \
"--entrypoint rake natalie_clang_#{version} " \
'output_all_ruby_specs ' \
'copy_generated_files_to_output'
end
SUPPORTED_HOST_RUBY_VERSIONS.each_cons(2) do |v1, v2|
out = `diff -r output/#{v1} output/#{v2} 2>&1`.strip
unless out.empty?
puts out
puts
raise "Output for #{v1} and #{v2} differs"
end
end
end
task docker_test_gcc: :docker_build_gcc do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_gcc_#{ruby_version_string} test"
end
task docker_test_clang: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} test"
end
task docker_test_self_hosted: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} test_self_hosted"
end
task docker_test_self_hosted_full: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} test_self_hosted_full"
end
task docker_test_asan: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} test_asan"
end
task docker_test_all_ruby_spec_nightly: :docker_build_clang do
sh "docker run #{docker_run_flags} " \
"-e STATS_API_SECRET=#{(ENV['STATS_API_SECRET'] || '').inspect} " \
'--rm ' \
'--entrypoint rake ' \
"natalie_clang_#{ruby_version_string} test_all_ruby_spec_nightly"
end
task docker_tidy: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} tidy"
end
task docker_gc_lint: :docker_build_clang do
sh "docker run #{docker_run_flags} --rm --entrypoint rake natalie_clang_#{ruby_version_string} gc_lint"
end
def ruby_version_string
string = ENV['RUBY'] || DEFAULT_HOST_RUBY_VERSION
raise 'must be in the format rubyX.Y' unless string =~ /^ruby\d\.\d$/
string
end
def ruby_version_number
ruby_version_string.sub('ruby', '')
end
# # # # Build Compile Database # # # #
if system('which compiledb 2>&1 >/dev/null')
$compiledb_out = [] # rubocop:disable Style/GlobalVars
def $stderr.puts(str)
write(str + "\n")
$compiledb_out << str # rubocop:disable Style/GlobalVars
end
task :write_compile_database do
if $compiledb_out.any? # rubocop:disable Style/GlobalVars
File.write('build/build.log', $compiledb_out.join("\n")) # rubocop:disable Style/GlobalVars
sh 'compiledb < build/build.log'
end
end
else
task :write_compile_database do
# noop
end
end
# # # # Internal Tasks and Rules # # # #
STANDARD = 'c++17'.freeze
HEADERS = Rake::FileList['include/**/{*.h,*.hpp}']
PRIMARY_SOURCES = Rake::FileList['src/**/*.{c,cpp}'].exclude('src/main.cpp')
RUBY_SOURCES = Rake::FileList['src/**/*.rb'].exclude('**/extconf.rb')
SPECIAL_SOURCES = Rake::FileList['build/generated/platform.cpp', 'build/generated/bindings.cpp']
SOURCES = PRIMARY_SOURCES + RUBY_SOURCES + SPECIAL_SOURCES
PRIMARY_OBJECT_FILES = PRIMARY_SOURCES.sub('src/', 'build/').pathmap('%p.o')
RUBY_OBJECT_FILES = RUBY_SOURCES.pathmap('build/generated/%{^src/,}p.o')
SPECIAL_OBJECT_FILES = SPECIAL_SOURCES.pathmap('%p.o')
OBJECT_FILES = PRIMARY_OBJECT_FILES + RUBY_OBJECT_FILES + SPECIAL_OBJECT_FILES
require 'tempfile'
task(:set_build_debug) do
ENV['BUILD'] = 'debug'
File.write('.build', 'debug')
end
task(:set_build_asan) do
ENV['BUILD'] = 'asan'
File.write('.build', 'asan')
end
task(:set_build_release) do
ENV['BUILD'] = 'release'
File.write('.build', 'release')
end
task libnatalie: [
:update_submodules,
:bundle_install,
:build_dir,
'build/zlib/libz.a',
'build/onigmo/lib/libonigmo.a',
'build/libprism.a',
"build/libprism.#{SO_EXT}",
'build/generated/numbers.rb',
:primary_objects,
:ruby_objects,
:special_objects,
'build/libnatalie.a',
"build/libnatalie_base.#{DL_EXT}",
:write_compile_database,
]
task :build_dir do
mkdir_p 'build/generated' unless File.exist?('build/generated')
end
task build_test_support: [
"build/libnat.#{SO_EXT}",
"build/test/support/ffi_stubs.#{SO_EXT}",
]
multitask primary_objects: PRIMARY_OBJECT_FILES
multitask ruby_objects: RUBY_OBJECT_FILES
multitask special_objects: SPECIAL_OBJECT_FILES
file 'build/libnatalie.a' => %w[
build/libnatalie_base.a
build/onigmo/lib/libonigmo.a
] do |t|
if RUBY_PLATFORM =~ /darwin/
sh "libtool -static -o #{t.name} #{t.sources.join(' ')}"
else
ar_script = ["create #{t.name}"]
t.sources.each { |source| ar_script << "addlib #{source}" }
ar_script << 'save'
ENV['AR_SCRIPT'] = ar_script.join("\n")
sh 'echo "$AR_SCRIPT" | ar -M'
end
end
file 'build/libnatalie_base.a' => OBJECT_FILES + HEADERS do |t|
sh "ar rcs #{t.name} #{OBJECT_FILES}"
end
file "build/libnatalie_base.#{DL_EXT}" => OBJECT_FILES + HEADERS do |t|
sh "#{cxx} -shared -fPIC -rdynamic -Wl,-undefined,dynamic_lookup -o #{t.name} #{OBJECT_FILES}"
end
file 'build/onigmo/lib/libonigmo.a' do
build_dir = File.expand_path('build/onigmo', __dir__)
patch_path = File.expand_path('ext/onigmo.patch', __dir__)
rm_rf build_dir
cp_r 'ext/onigmo', build_dir
sh <<-SH
cd #{build_dir} && \
sh autogen.sh && \
./configure --with-pic --prefix #{build_dir} && \
git apply #{patch_path} && \
make -j 4 && \
make install
SH
end
file 'build/zlib/libz.a' do
build_dir = File.expand_path('build/zlib', __dir__)
rm_rf build_dir
cp_r 'ext/zlib', build_dir
sh <<-SH
cd #{build_dir} && \
./configure && \
make -j 4
SH
end
file 'build/generated/numbers.rb' do |t|
f1 = Tempfile.new(%w[numbers .cpp])
f2 = Tempfile.create('numbers')
f2.close
begin
f1.puts '#include <stdio.h>'
f1.puts '#include "natalie/constants.hpp"'
f1.puts 'int main() {'
f1.puts ' printf("NAT_MAX_FIXNUM = %lli\n", NAT_MAX_FIXNUM);'
f1.puts ' printf("NAT_MIN_FIXNUM = %lli\n", NAT_MIN_FIXNUM);'
f1.puts '}'
f1.close
sh "#{cxx} #{cxx_flags.join(' ')} -std=#{STANDARD} -o #{f2.path} #{f1.path}"
sh "#{f2.path} > #{t.name}"
ensure
File.unlink(f1.path)
File.unlink(f2.path)
end
end
file 'build/generated/platform.cpp' => OBJECT_FILES - ['build/generated/platform.cpp.o'] do |t|
git_revision = `git show --pretty=%H --quiet`.chomp
File.write(t.name, <<~END)
#include "natalie.hpp"
const char *Natalie::ruby_platform = #{RUBY_PLATFORM.inspect};
const char *Natalie::ruby_release_date = "#{Time.now.strftime('%Y-%m-%d')}";
const char *Natalie::ruby_revision = "#{git_revision}";
END
end
file 'build/generated/platform.cpp.o' => 'build/generated/platform.cpp' do |t|
sh "#{cxx} #{cxx_flags.join(' ')} -std=#{STANDARD} -c -o #{t.name} #{t.name.pathmap('%d/%n')}"
end
file 'build/generated/bindings.cpp.o' => ['lib/natalie/compiler/binding_gen.rb'] + HEADERS do |t|
sh "ruby lib/natalie/compiler/binding_gen.rb > #{t.name.pathmap('%d/%n')}"
sh "#{cxx} #{cxx_flags.join(' ')} -std=#{STANDARD} -c -o #{t.name} #{t.name.pathmap('%d/%n')}"
end
file 'bin/nat' => OBJECT_FILES + ['bin/natalie'] do
sh 'bin/natalie -c bin/nat bin/natalie'
end
file "build/libnat.#{SO_EXT}" => SOURCES + ['lib/natalie/api.cpp', 'build/libnatalie.a'] do |t|
sh 'bin/natalie --write-obj build/libnat.rb.cpp lib/natalie.rb'
if system('pkg-config --exists libffi')
flags = `pkg-config --cflags --libs libffi`.chomp
end
sh "#{cxx} #{cxx_flags.join(' ')} #{flags} -std=#{STANDARD} " \
'-DNAT_OBJECT_FILE -shared -fPIC -rdynamic ' \
'-Wl,-undefined,dynamic_lookup ' \
"-o #{t.name} build/libnat.rb.cpp build/libnatalie.a"
end
rule '.c.o' => 'src/%n' do |t|
sh "#{cc} -I include -g -fPIC -c -o #{t.name} #{t.source}"
end
rule '.cpp.o' => ['src/%{build/,}X'] + HEADERS do |t|
subdir = File.split(t.name).first
mkdir_p subdir unless File.exist?(subdir)
sh "#{cxx} #{cxx_flags.join(' ')} -std=#{STANDARD} -c -o #{t.name} #{t.source}"
end
rule '.rb.o' => ['.rb.cpp'] + HEADERS do |t|
sh "#{cxx} #{cxx_flags.join(' ')} -std=#{STANDARD} -c -o #{t.name} #{t.source}"
end
rule '.rb.cpp' => ['src/%{build\/generated/,}X'] do |t|
subdir = File.split(t.name).first
mkdir_p subdir unless File.exist?(subdir)
sh "bin/natalie --write-obj #{t.name} #{t.source}"
end
file "build/libprism.#{SO_EXT}" => ['build/libprism.a']
file 'build/libprism.a' => ["build/prism/ext/prism/prism.#{DL_EXT}"] do
build_dir = File.expand_path('build/prism', __dir__)
cp "#{build_dir}/build/libprism.a", File.expand_path('build', __dir__)
cp "#{build_dir}/build/libprism.#{SO_EXT}", File.expand_path('build', __dir__)
end
file "build/prism/ext/prism/prism.#{DL_EXT}" => Rake::FileList['ext/prism/**/*.{h,c,rb}'] do
build_dir = File.expand_path('build/prism', __dir__)
rm_rf build_dir
cp_r 'ext/prism', build_dir
sh <<-SH
cd #{build_dir} && \
PRISM_FFI_BACKEND=true rake templates
cd #{build_dir} && \
make && \
cd ext/prism && \
ruby extconf.rb && \
make -j 4
SH
end
file "build/test/support/ffi_stubs.#{SO_EXT}" => 'test/support/ffi_stubs.c' do |t|
mkdir_p 'build/test/support'
sh "#{cc} -shared -fPIC -rdynamic -Wl,-undefined,dynamic_lookup -o #{t.name} #{t.source}"
end
task :tidy_internal do
sh "clang-tidy --warnings-as-errors='*' #{PRIMARY_SOURCES.exclude('src/dtoa.c')}"
end
task :gc_lint_internal do
sh 'ruby test/gc_lint.rb'
end
task :bundle_install do
sh 'bundle check || bundle install'
end
task :update_submodules do
unless ENV['SKIP_SUBMODULE_UPDATE']
sh 'git submodule update --init --recursive'
end
end
def ccache_exists?
return @ccache_exists if defined?(@ccache_exists)
@ccache_exists = system('which ccache 2>&1 > /dev/null')
end
def cc
@cc ||=
if ENV['CC']
ENV['CC']
elsif ccache_exists?
'ccache cc'
else
'cc'
end
end
def cxx
@cxx ||=
if ENV['CXX']
ENV['CXX']
elsif ccache_exists?
'ccache c++'
else
'c++'
end
end
def cxx_flags
base_flags =
case ENV['BUILD']
when 'release'
Natalie::Compiler::Flags::RELEASE_FLAGS
when 'asan'
Natalie::Compiler::Flags::ASAN_FLAGS
else
Natalie::Compiler::Flags::DEBUG_FLAGS
end
base_flags += ['-fPIC'] # needed for repl
if RUBY_PLATFORM =~ /darwin/
# needed for Process.groups to return more than 16 groups on macOS
base_flags += ['-D_DARWIN_C_SOURCE']
end
user_flags = Array(ENV['NAT_CXX_FLAGS'])
base_flags + user_flags + include_paths.map { |path| "-I #{path}" }
end
def include_paths
[
File.expand_path('include', __dir__),
File.expand_path('ext/tm/include', __dir__),
File.expand_path('ext/minicoro', __dir__),
File.expand_path('build', __dir__),
File.expand_path('build/onigmo/include', __dir__),
File.expand_path('build/prism/include', __dir__),
]
end