rubycc 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +56 -0
  3. data/LICENSE.txt +21 -0
  4. data/NOTICE +52 -0
  5. data/README.md +208 -0
  6. data/data/README.md +117 -0
  7. data/data/r10_corpus_scan.json +4082 -0
  8. data/data/r10_manual_classification.json +5342 -0
  9. data/data/r10_verification_m4a.json +1531 -0
  10. data/data/r10_verification_m4b.json +1818 -0
  11. data/data/r10_verification_m4c.json +1489 -0
  12. data/data/r10_verification_m4d.json +318 -0
  13. data/data/r10_verification_rbs.json +192 -0
  14. data/data/verified_gems.json +397 -0
  15. data/exe/rmake +16 -0
  16. data/exe/rubycc +9 -0
  17. data/exe/rubycc-ar +114 -0
  18. data/exe/rubycc-doctor +14 -0
  19. data/exe/rubycc-pkgconf +8 -0
  20. data/include/float.h +87 -0
  21. data/include/iso646.h +18 -0
  22. data/include/libc/alloca.h +18 -0
  23. data/include/libc/arpa/inet.h +61 -0
  24. data/include/libc/assert.h +43 -0
  25. data/include/libc/dirent.h +72 -0
  26. data/include/libc/dlfcn.h +58 -0
  27. data/include/libc/features.h +205 -0
  28. data/include/libc/glibc/aarch64/ctype.h +108 -0
  29. data/include/libc/glibc/aarch64/endian.h +54 -0
  30. data/include/libc/glibc/aarch64/errno.h +154 -0
  31. data/include/libc/glibc/aarch64/fcntl.h +144 -0
  32. data/include/libc/glibc/aarch64/inttypes.h +182 -0
  33. data/include/libc/glibc/aarch64/limits.h +63 -0
  34. data/include/libc/glibc/aarch64/pthread.h +131 -0
  35. data/include/libc/glibc/aarch64/setjmp.h +84 -0
  36. data/include/libc/glibc/aarch64/stdint.h +174 -0
  37. data/include/libc/glibc/aarch64/sys/epoll.h +88 -0
  38. data/include/libc/glibc/aarch64/sys/fcntl.h +19 -0
  39. data/include/libc/glibc/aarch64/sys/select.h +75 -0
  40. data/include/libc/glibc/aarch64/sys/stat.h +136 -0
  41. data/include/libc/glibc/aarch64/sys/syscall.h +167 -0
  42. data/include/libc/glibc/aarch64/sys/time.h +74 -0
  43. data/include/libc/glibc/aarch64/sys/types.h +127 -0
  44. data/include/libc/glibc/aarch64/time.h +113 -0
  45. data/include/libc/glibc/x86_64/ctype.h +108 -0
  46. data/include/libc/glibc/x86_64/endian.h +54 -0
  47. data/include/libc/glibc/x86_64/errno.h +154 -0
  48. data/include/libc/glibc/x86_64/fcntl.h +134 -0
  49. data/include/libc/glibc/x86_64/inttypes.h +182 -0
  50. data/include/libc/glibc/x86_64/limits.h +61 -0
  51. data/include/libc/glibc/x86_64/pthread.h +111 -0
  52. data/include/libc/glibc/x86_64/setjmp.h +82 -0
  53. data/include/libc/glibc/x86_64/stdint.h +163 -0
  54. data/include/libc/glibc/x86_64/sys/epoll.h +91 -0
  55. data/include/libc/glibc/x86_64/sys/fcntl.h +19 -0
  56. data/include/libc/glibc/x86_64/sys/select.h +75 -0
  57. data/include/libc/glibc/x86_64/sys/stat.h +130 -0
  58. data/include/libc/glibc/x86_64/sys/syscall.h +188 -0
  59. data/include/libc/glibc/x86_64/sys/time.h +74 -0
  60. data/include/libc/glibc/x86_64/sys/types.h +123 -0
  61. data/include/libc/glibc/x86_64/time.h +113 -0
  62. data/include/libc/grp.h +50 -0
  63. data/include/libc/langinfo.h +126 -0
  64. data/include/libc/link.h +18 -0
  65. data/include/libc/locale.h +83 -0
  66. data/include/libc/math.h +191 -0
  67. data/include/libc/netinet/in.h +126 -0
  68. data/include/libc/netinet/tcp.h +44 -0
  69. data/include/libc/poll.h +46 -0
  70. data/include/libc/pwd.h +58 -0
  71. data/include/libc/regex.h +53 -0
  72. data/include/libc/sched.h +35 -0
  73. data/include/libc/signal.h +204 -0
  74. data/include/libc/stdio.h +157 -0
  75. data/include/libc/stdlib.h +92 -0
  76. data/include/libc/string.h +74 -0
  77. data/include/libc/strings.h +25 -0
  78. data/include/libc/sys/cdefs.h +126 -0
  79. data/include/libc/sys/inotify.h +111 -0
  80. data/include/libc/sys/ioctl.h +36 -0
  81. data/include/libc/sys/mman.h +65 -0
  82. data/include/libc/sys/param.h +41 -0
  83. data/include/libc/sys/resource.h +109 -0
  84. data/include/libc/sys/socket.h +167 -0
  85. data/include/libc/sys/statfs.h +82 -0
  86. data/include/libc/sys/timerfd.h +55 -0
  87. data/include/libc/sys/uio.h +40 -0
  88. data/include/libc/sys/un.h +25 -0
  89. data/include/libc/sys/utsname.h +35 -0
  90. data/include/libc/sys/wait.h +135 -0
  91. data/include/libc/termios.h +179 -0
  92. data/include/libc/unistd.h +194 -0
  93. data/include/stdalign.h +16 -0
  94. data/include/stdarg.h +31 -0
  95. data/include/stdatomic.h +158 -0
  96. data/include/stdbool.h +15 -0
  97. data/include/stdckdint.h +28 -0
  98. data/include/stddef.h +60 -0
  99. data/include/stdnoreturn.h +18 -0
  100. data/include/x86intrin.h +16 -0
  101. data/lib/rubycc/backend/aarch64.rb +1724 -0
  102. data/lib/rubycc/backend/x86_64.rb +1369 -0
  103. data/lib/rubycc/compile_error.rb +36 -0
  104. data/lib/rubycc/compiler.rb +305 -0
  105. data/lib/rubycc/doctor/builder.rb +151 -0
  106. data/lib/rubycc/doctor/cli.rb +190 -0
  107. data/lib/rubycc/doctor/fetcher.rb +84 -0
  108. data/lib/rubycc/doctor/gemfile.rb +115 -0
  109. data/lib/rubycc/doctor/verified_gems.rb +114 -0
  110. data/lib/rubycc/doctor.rb +16 -0
  111. data/lib/rubycc/driver.rb +463 -0
  112. data/lib/rubycc/front/ast.rb +528 -0
  113. data/lib/rubycc/front/constant_evaluator.rb +631 -0
  114. data/lib/rubycc/front/initializer_resolver.rb +592 -0
  115. data/lib/rubycc/front/lexeme_reader.rb +460 -0
  116. data/lib/rubycc/front/lexer.rb +232 -0
  117. data/lib/rubycc/front/parser.rb +4122 -0
  118. data/lib/rubycc/front/token.rb +49 -0
  119. data/lib/rubycc/ir/call_convention.rb +486 -0
  120. data/lib/rubycc/ir/generator.rb +6036 -0
  121. data/lib/rubycc/ir/ir.rb +417 -0
  122. data/lib/rubycc/link/compat_runtime.rb +89 -0
  123. data/lib/rubycc/link/errors.rb +13 -0
  124. data/lib/rubycc/link/executable_linker.rb +405 -0
  125. data/lib/rubycc/link/library_resolver.rb +437 -0
  126. data/lib/rubycc/link/partial_linker.rb +546 -0
  127. data/lib/rubycc/link/shared_linker.rb +1732 -0
  128. data/lib/rubycc/mkmf_shim.rb +83 -0
  129. data/lib/rubycc/objfile/ar_archive.rb +437 -0
  130. data/lib/rubycc/objfile/elf_reader.rb +646 -0
  131. data/lib/rubycc/objfile/elf_writer.rb +891 -0
  132. data/lib/rubycc/objfile/relocatable_writer.rb +376 -0
  133. data/lib/rubycc/pkgconf/cli.rb +139 -0
  134. data/lib/rubycc/pkgconf/errors.rb +39 -0
  135. data/lib/rubycc/pkgconf/model.rb +28 -0
  136. data/lib/rubycc/pkgconf/parser.rb +109 -0
  137. data/lib/rubycc/pkgconf/pkgconf.rb +15 -0
  138. data/lib/rubycc/pkgconf/resolver.rb +70 -0
  139. data/lib/rubycc/pkgconf/search_path.rb +38 -0
  140. data/lib/rubycc/pkgconf/system_path_filter.rb +131 -0
  141. data/lib/rubycc/preprocess/constant_expression.rb +219 -0
  142. data/lib/rubycc/preprocess/glibc_version.rb +124 -0
  143. data/lib/rubycc/preprocess/pp_token.rb +62 -0
  144. data/lib/rubycc/preprocess/preprocessor.rb +2020 -0
  145. data/lib/rubycc/preprocess/scanner.rb +290 -0
  146. data/lib/rubycc/preprocess/token_converter.rb +157 -0
  147. data/lib/rubycc/rmake/cli.rb +143 -0
  148. data/lib/rubycc/rmake/errors.rb +71 -0
  149. data/lib/rubycc/rmake/executor.rb +818 -0
  150. data/lib/rubycc/rmake/expander.rb +251 -0
  151. data/lib/rubycc/rmake/makefile.rb +352 -0
  152. data/lib/rubycc/rmake/model.rb +137 -0
  153. data/lib/rubycc/rmake/parser.rb +226 -0
  154. data/lib/rubycc/rmake/rmake.rb +15 -0
  155. data/lib/rubycc/type.rb +1236 -0
  156. data/lib/rubycc/version.rb +5 -0
  157. data/lib/rubycc.rb +36 -0
  158. data/lib/rubygems_plugin.rb +102 -0
  159. metadata +219 -0
@@ -0,0 +1,1531 @@
1
+ {
2
+ "schema_version": 2,
3
+ "artifact_kind": "r10-gem-verification-summary",
4
+ "batch": "R10-M4A",
5
+ "environment": "glibc x86_64 / ruby 3.4.5",
6
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
7
+ "architecture": "x86_64",
8
+ "aarch64_evidence": false,
9
+ "work_dir": "<VERIFY_WORK>",
10
+ "run_ids": {
11
+ "control": "local-r10-m4a-control-2026-08-10",
12
+ "rubycc": "local-r10-m4a-rubycc-2026-08-10"
13
+ },
14
+ "review_note": "The control and rubycc runs used the same Ruby, source versions, test dependencies, and suite files. nkf's suite error was identical in both modes; it is retained as inconclusive for compiler comparison, not skipped.",
15
+ "control": [
16
+ {
17
+ "name": "json",
18
+ "version": "2.21.1",
19
+ "status": "pass",
20
+ "sanity": true,
21
+ "evidence": [
22
+ "no rubycc traces (host cc)"
23
+ ],
24
+ "summary": {
25
+ "line": "603 tests, 3425 assertions, 0 failures, 0 errors",
26
+ "tests": 603,
27
+ "assertions": 3425,
28
+ "failures": 0,
29
+ "errors": 0,
30
+ "other": {}
31
+ },
32
+ "mode": "control",
33
+ "build_state": "pass",
34
+ "extension_load_state": "pass",
35
+ "suite_state": "pass",
36
+ "provenance": {
37
+ "gem_url": "https://rubygems.org/downloads/json-2.21.1.gem",
38
+ "gem_sha256": "13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583",
39
+ "source_kind": "source_tarball",
40
+ "source_url": "https://github.com/ruby/json/archive/refs/tags/v2.21.1.tar.gz",
41
+ "source_sha256": "b7b12ee6d17468d90ed86dc29bbd75a8af7820dcad6fe5e1b01b5182ea892de3",
42
+ "source_relative_path": "r10-m4a/json-2.21.1-src.tar.gz"
43
+ },
44
+ "recipe": {
45
+ "name": "json",
46
+ "version": "2.21.1",
47
+ "source_kind": "source_tarball",
48
+ "source_url": "https://github.com/ruby/json/archive/refs/tags/v2.21.1.tar.gz",
49
+ "runner": "test_unit",
50
+ "test_glob": "test/json/*_test.rb",
51
+ "exclude": [],
52
+ "load_paths": [
53
+ "lib",
54
+ "test"
55
+ ],
56
+ "extconf_args": [],
57
+ "sos": [
58
+ {
59
+ "from": "lib/json/ext/parser.so",
60
+ "to": "lib/json/ext/parser.so"
61
+ },
62
+ {
63
+ "from": "lib/json/ext/generator.so",
64
+ "to": "lib/json/ext/generator.so"
65
+ }
66
+ ],
67
+ "test_deps": [
68
+ "test-unit",
69
+ "test-unit-ruby-core"
70
+ ],
71
+ "test_dep_versions": {},
72
+ "sanity": {
73
+ "requires": [
74
+ "json"
75
+ ],
76
+ "expression": "JSON.parser.to_s == \"JSON::Ext::Parser\""
77
+ },
78
+ "recipe_fingerprint": "d9b03a4d5a88474a8c2bd4be12504f5ebe9198c59834ddfc9c5618c83108def3"
79
+ },
80
+ "execution_context": {
81
+ "environment": "glibc x86_64 / ruby 3.4.5",
82
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
83
+ "host_cpu": "x86_64",
84
+ "ruby_arch": "x86_64-linux",
85
+ "cc": null,
86
+ "make": null,
87
+ "pkg_config": null,
88
+ "rubycc_mode": "control"
89
+ },
90
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
91
+ "rubycc_worktree_dirty": true
92
+ },
93
+ {
94
+ "name": "msgpack",
95
+ "version": "1.8.3",
96
+ "status": "pass",
97
+ "sanity": true,
98
+ "evidence": [
99
+ "no rubycc traces (host cc)"
100
+ ],
101
+ "summary": {
102
+ "line": "455 examples, 0 failures, 1 pending",
103
+ "tests": 455,
104
+ "assertions": null,
105
+ "failures": 0,
106
+ "errors": 0,
107
+ "other": {
108
+ "pendings": 1
109
+ }
110
+ },
111
+ "mode": "control",
112
+ "build_state": "pass",
113
+ "extension_load_state": "pass",
114
+ "suite_state": "pass",
115
+ "provenance": {
116
+ "gem_url": "https://rubygems.org/downloads/msgpack-1.8.3.gem",
117
+ "gem_sha256": "8bda4a6428d3244e50d6bd55854d354edbada88a4e1f4f5731a39a0f86bee6a1",
118
+ "source_kind": "source_tarball",
119
+ "source_url": "https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v1.8.3.tar.gz",
120
+ "source_sha256": "2b8a119620d49ccad3164aaf5bc7311627960a58ee3b2b60f04d1cf19021f1b5",
121
+ "source_relative_path": "r10-m4a/msgpack-1.8.3-src.tar.gz"
122
+ },
123
+ "recipe": {
124
+ "name": "msgpack",
125
+ "version": "1.8.3",
126
+ "source_kind": "source_tarball",
127
+ "source_url": "https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v1.8.3.tar.gz",
128
+ "runner": "rspec",
129
+ "test_glob": "spec/**/*_spec.rb",
130
+ "exclude": [
131
+ "spec/jruby/**/*"
132
+ ],
133
+ "load_paths": [
134
+ "lib",
135
+ "spec"
136
+ ],
137
+ "extconf_args": [],
138
+ "sos": [
139
+ {
140
+ "from": "lib/msgpack/msgpack.so",
141
+ "to": "lib/msgpack/msgpack.so"
142
+ }
143
+ ],
144
+ "test_deps": [
145
+ "rspec"
146
+ ],
147
+ "test_dep_versions": {},
148
+ "sanity": {
149
+ "requires": [
150
+ "msgpack"
151
+ ],
152
+ "expression": "injected_so_loaded?"
153
+ },
154
+ "recipe_fingerprint": "be34de5febc88c980c5212dd59acbc78937d81462c43fceb91ddf3e2b2209148"
155
+ },
156
+ "execution_context": {
157
+ "environment": "glibc x86_64 / ruby 3.4.5",
158
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
159
+ "host_cpu": "x86_64",
160
+ "ruby_arch": "x86_64-linux",
161
+ "cc": null,
162
+ "make": null,
163
+ "pkg_config": null,
164
+ "rubycc_mode": "control"
165
+ },
166
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
167
+ "rubycc_worktree_dirty": true
168
+ },
169
+ {
170
+ "name": "bigdecimal",
171
+ "version": "4.1.2",
172
+ "status": "pass",
173
+ "sanity": true,
174
+ "evidence": [
175
+ "no rubycc traces (host cc)"
176
+ ],
177
+ "summary": {
178
+ "line": "265 tests, 8267 assertions, 0 failures, 0 errors, 11 omissions",
179
+ "tests": 265,
180
+ "assertions": 8267,
181
+ "failures": 0,
182
+ "errors": 0,
183
+ "other": {
184
+ "omissions": 11
185
+ }
186
+ },
187
+ "mode": "control",
188
+ "build_state": "pass",
189
+ "extension_load_state": "pass",
190
+ "suite_state": "pass",
191
+ "provenance": {
192
+ "gem_url": "https://rubygems.org/downloads/bigdecimal-4.1.2.gem",
193
+ "gem_sha256": "53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd",
194
+ "source_kind": "source_tarball",
195
+ "source_url": "https://github.com/ruby/bigdecimal/archive/refs/tags/v4.1.2.tar.gz",
196
+ "source_sha256": "2a2f61355a348d576360576405fd16ec9830c28a88894b325035464f44fb9c17",
197
+ "source_relative_path": "r10-m4a/bigdecimal-4.1.2-src.tar.gz"
198
+ },
199
+ "recipe": {
200
+ "name": "bigdecimal",
201
+ "version": "4.1.2",
202
+ "source_kind": "source_tarball",
203
+ "source_url": "https://github.com/ruby/bigdecimal/archive/refs/tags/v4.1.2.tar.gz",
204
+ "runner": "test_unit",
205
+ "test_glob": "test/bigdecimal/**/test_*.rb",
206
+ "exclude": [],
207
+ "load_paths": [
208
+ "lib",
209
+ "test/lib"
210
+ ],
211
+ "extconf_args": [],
212
+ "sos": [
213
+ {
214
+ "from": "lib/bigdecimal.so",
215
+ "to": "lib/bigdecimal.so"
216
+ }
217
+ ],
218
+ "test_deps": [
219
+ "test-unit",
220
+ "test-unit-ruby-core"
221
+ ],
222
+ "test_dep_versions": {},
223
+ "sanity": {
224
+ "requires": [
225
+ "bigdecimal"
226
+ ],
227
+ "expression": "injected_so_loaded?"
228
+ },
229
+ "recipe_fingerprint": "c459860476646f3ad0174347cb685c41b717d5d3e513f70c5a41676f5aa77773"
230
+ },
231
+ "execution_context": {
232
+ "environment": "glibc x86_64 / ruby 3.4.5",
233
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
234
+ "host_cpu": "x86_64",
235
+ "ruby_arch": "x86_64-linux",
236
+ "cc": null,
237
+ "make": null,
238
+ "pkg_config": null,
239
+ "rubycc_mode": "control"
240
+ },
241
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
242
+ "rubycc_worktree_dirty": true
243
+ },
244
+ {
245
+ "name": "date",
246
+ "version": "3.5.1",
247
+ "status": "pass",
248
+ "sanity": true,
249
+ "evidence": [
250
+ "no rubycc traces (host cc)"
251
+ ],
252
+ "summary": {
253
+ "line": "143 tests, 162593 assertions, 0 failures, 0 errors",
254
+ "tests": 143,
255
+ "assertions": 162593,
256
+ "failures": 0,
257
+ "errors": 0,
258
+ "other": {}
259
+ },
260
+ "mode": "control",
261
+ "build_state": "pass",
262
+ "extension_load_state": "pass",
263
+ "suite_state": "pass",
264
+ "provenance": {
265
+ "gem_url": "https://rubygems.org/downloads/date-3.5.1.gem",
266
+ "gem_sha256": "750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0",
267
+ "source_kind": "source_tarball",
268
+ "source_url": "https://github.com/ruby/date/archive/refs/tags/v3.5.1.tar.gz",
269
+ "source_sha256": "a942710d42da8a0003ca0ba45e87bf70c66a5ae612b9fe34812028dd88443cbf",
270
+ "source_relative_path": "r10-m4a/date-3.5.1-src.tar.gz"
271
+ },
272
+ "recipe": {
273
+ "name": "date",
274
+ "version": "3.5.1",
275
+ "source_kind": "source_tarball",
276
+ "source_url": "https://github.com/ruby/date/archive/refs/tags/v3.5.1.tar.gz",
277
+ "runner": "test_unit",
278
+ "test_glob": "test/**/test_*.rb",
279
+ "exclude": [],
280
+ "load_paths": [
281
+ "lib",
282
+ "test/lib"
283
+ ],
284
+ "extconf_args": [],
285
+ "sos": [
286
+ {
287
+ "from": "lib/date_core.so",
288
+ "to": "lib/date_core.so"
289
+ }
290
+ ],
291
+ "test_deps": [
292
+ "test-unit",
293
+ "test-unit-ruby-core"
294
+ ],
295
+ "test_dep_versions": {},
296
+ "sanity": {
297
+ "requires": [
298
+ "date"
299
+ ],
300
+ "expression": "injected_so_loaded?"
301
+ },
302
+ "recipe_fingerprint": "4b452f866ba4547d6b883541d8ec54966bafc804a163638f22171c4919a66521"
303
+ },
304
+ "execution_context": {
305
+ "environment": "glibc x86_64 / ruby 3.4.5",
306
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
307
+ "host_cpu": "x86_64",
308
+ "ruby_arch": "x86_64-linux",
309
+ "cc": null,
310
+ "make": null,
311
+ "pkg_config": null,
312
+ "rubycc_mode": "control"
313
+ },
314
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
315
+ "rubycc_worktree_dirty": true
316
+ },
317
+ {
318
+ "name": "redcarpet",
319
+ "version": "3.6.1",
320
+ "status": "pass",
321
+ "sanity": true,
322
+ "evidence": [
323
+ "no rubycc traces (host cc)"
324
+ ],
325
+ "summary": {
326
+ "line": "136 tests, 206 assertions, 0 failures, 0 errors",
327
+ "tests": 136,
328
+ "assertions": 206,
329
+ "failures": 0,
330
+ "errors": 0,
331
+ "other": {}
332
+ },
333
+ "mode": "control",
334
+ "build_state": "pass",
335
+ "extension_load_state": "pass",
336
+ "suite_state": "pass",
337
+ "provenance": {
338
+ "gem_url": "https://rubygems.org/downloads/redcarpet-3.6.1.gem",
339
+ "gem_sha256": "d444910e6aa55480c6bcdc0cdb057626e8a32c054c29e793fa642ba2f155f445",
340
+ "source_kind": "source_tarball",
341
+ "source_url": "https://github.com/vmg/redcarpet/archive/refs/tags/v3.6.1.tar.gz",
342
+ "source_sha256": "9f1a4ed476f2a3df54d08c4c052123290f2629a2e99367c6d3fb17dda6b751ec",
343
+ "source_relative_path": "r10-m4a/redcarpet-3.6.1-src.tar.gz"
344
+ },
345
+ "recipe": {
346
+ "name": "redcarpet",
347
+ "version": "3.6.1",
348
+ "source_kind": "source_tarball",
349
+ "source_url": "https://github.com/vmg/redcarpet/archive/refs/tags/v3.6.1.tar.gz",
350
+ "runner": "test_unit",
351
+ "test_glob": "test/*_test.rb",
352
+ "exclude": [],
353
+ "load_paths": [
354
+ "lib",
355
+ "test"
356
+ ],
357
+ "extconf_args": [],
358
+ "sos": [
359
+ {
360
+ "from": "lib/redcarpet.so",
361
+ "to": "lib/redcarpet.so"
362
+ }
363
+ ],
364
+ "test_deps": [
365
+ "test-unit"
366
+ ],
367
+ "test_dep_versions": {},
368
+ "sanity": {
369
+ "requires": [
370
+ "redcarpet"
371
+ ],
372
+ "expression": "injected_so_loaded?"
373
+ },
374
+ "recipe_fingerprint": "f80445cfc924d14712ea65e6fbe449023498f3fa801f1a24d36705aa5f71f2e8"
375
+ },
376
+ "execution_context": {
377
+ "environment": "glibc x86_64 / ruby 3.4.5",
378
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
379
+ "host_cpu": "x86_64",
380
+ "ruby_arch": "x86_64-linux",
381
+ "cc": null,
382
+ "make": null,
383
+ "pkg_config": null,
384
+ "rubycc_mode": "control"
385
+ },
386
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
387
+ "rubycc_worktree_dirty": true
388
+ },
389
+ {
390
+ "name": "racc",
391
+ "version": "1.8.1",
392
+ "status": "pass",
393
+ "sanity": true,
394
+ "evidence": [
395
+ "no rubycc traces (host cc)"
396
+ ],
397
+ "summary": {
398
+ "line": "71 tests, 319 assertions, 0 failures, 0 errors",
399
+ "tests": 71,
400
+ "assertions": 319,
401
+ "failures": 0,
402
+ "errors": 0,
403
+ "other": {}
404
+ },
405
+ "mode": "control",
406
+ "build_state": "pass",
407
+ "extension_load_state": "pass",
408
+ "suite_state": "pass",
409
+ "provenance": {
410
+ "gem_url": "https://rubygems.org/downloads/racc-1.8.1.gem",
411
+ "gem_sha256": "4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f",
412
+ "source_kind": "source_tarball",
413
+ "source_url": "https://github.com/ruby/racc/archive/refs/tags/v1.8.1.tar.gz",
414
+ "source_sha256": "affc4397e1f90ed8baf9eeaf30aeba1b9f25ac7e22e4bacb644415fe7886cacc",
415
+ "source_relative_path": "r10-m4a/racc-1.8.1-src.tar.gz"
416
+ },
417
+ "recipe": {
418
+ "name": "racc",
419
+ "version": "1.8.1",
420
+ "source_kind": "source_tarball",
421
+ "source_url": "https://github.com/ruby/racc/archive/refs/tags/v1.8.1.tar.gz",
422
+ "runner": "test_unit",
423
+ "test_glob": "test/**/test_*.rb",
424
+ "exclude": [],
425
+ "load_paths": [
426
+ "lib",
427
+ "test/lib"
428
+ ],
429
+ "extconf_args": [],
430
+ "sos": [
431
+ {
432
+ "from": "lib/racc/cparse.so",
433
+ "to": "lib/racc/cparse.so"
434
+ }
435
+ ],
436
+ "test_deps": [
437
+ "test-unit",
438
+ "test-unit-ruby-core"
439
+ ],
440
+ "test_dep_versions": {
441
+ "test-unit": "3.6.1",
442
+ "test-unit-ruby-core": "1.0.5"
443
+ },
444
+ "sanity": {
445
+ "requires": [
446
+ "racc/parser"
447
+ ],
448
+ "expression": "Racc::Parser::Racc_Runtime_Type == \"c\""
449
+ },
450
+ "recipe_fingerprint": "4d8047d195e8d8ed5906fad8fc37a1df28d3284bb74e2ee3710a4a5d318b4ac0"
451
+ },
452
+ "execution_context": {
453
+ "environment": "glibc x86_64 / ruby 3.4.5",
454
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
455
+ "host_cpu": "x86_64",
456
+ "ruby_arch": "x86_64-linux",
457
+ "cc": null,
458
+ "make": null,
459
+ "pkg_config": null,
460
+ "rubycc_mode": "control"
461
+ },
462
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
463
+ "rubycc_worktree_dirty": true
464
+ },
465
+ {
466
+ "name": "stackprof",
467
+ "version": "0.2.28",
468
+ "status": "pass",
469
+ "sanity": true,
470
+ "evidence": [
471
+ "no rubycc traces (host cc)"
472
+ ],
473
+ "summary": {
474
+ "line": "31 runs, 184 assertions, 0 failures, 0 errors",
475
+ "tests": 31,
476
+ "assertions": 184,
477
+ "failures": 0,
478
+ "errors": 0,
479
+ "other": {}
480
+ },
481
+ "mode": "control",
482
+ "build_state": "pass",
483
+ "extension_load_state": "pass",
484
+ "suite_state": "pass",
485
+ "provenance": {
486
+ "gem_url": "https://rubygems.org/downloads/stackprof-0.2.28.gem",
487
+ "gem_sha256": "4ec2ace02f386012b40ca20ef80c030ad711831f59511da12e83b34efb0f9a04",
488
+ "source_kind": "source_tarball",
489
+ "source_url": "https://github.com/tmm1/stackprof/archive/refs/tags/v0.2.28.tar.gz",
490
+ "source_sha256": "8b9a5fa0b143f0aacee617233644b5bbcfabdfdb94631f3bea945895972e49b8",
491
+ "source_relative_path": "r10-m4a/stackprof-0.2.28-src.tar.gz"
492
+ },
493
+ "recipe": {
494
+ "name": "stackprof",
495
+ "version": "0.2.28",
496
+ "source_kind": "source_tarball",
497
+ "source_url": "https://github.com/tmm1/stackprof/archive/refs/tags/v0.2.28.tar.gz",
498
+ "runner": "test_unit",
499
+ "test_glob": "test/**/test_*.rb",
500
+ "exclude": [],
501
+ "load_paths": [
502
+ "lib",
503
+ "test"
504
+ ],
505
+ "extconf_args": [],
506
+ "sos": [
507
+ {
508
+ "from": "lib/stackprof/stackprof.so",
509
+ "to": "lib/stackprof/stackprof.so"
510
+ }
511
+ ],
512
+ "test_deps": [
513
+ "minitest"
514
+ ],
515
+ "test_dep_versions": {},
516
+ "sanity": {
517
+ "requires": [
518
+ "stackprof"
519
+ ],
520
+ "expression": "injected_so_loaded?"
521
+ },
522
+ "recipe_fingerprint": "7902149d9373f4f177be3a4e9df2d558faeafc01434dcc1bf1f52c2a52d4b9d4"
523
+ },
524
+ "execution_context": {
525
+ "environment": "glibc x86_64 / ruby 3.4.5",
526
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
527
+ "host_cpu": "x86_64",
528
+ "ruby_arch": "x86_64-linux",
529
+ "cc": null,
530
+ "make": null,
531
+ "pkg_config": null,
532
+ "rubycc_mode": "control"
533
+ },
534
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
535
+ "rubycc_worktree_dirty": true
536
+ },
537
+ {
538
+ "name": "nkf",
539
+ "version": "0.3.0",
540
+ "status": "fail",
541
+ "comparison": "inconclusive",
542
+ "sanity": true,
543
+ "evidence": [
544
+ "no rubycc traces (host cc)"
545
+ ],
546
+ "summary": {
547
+ "line": "8 tests, 44 assertions, 0 failures, 1 error",
548
+ "tests": 8,
549
+ "assertions": 44,
550
+ "failures": 0,
551
+ "errors": 1,
552
+ "other": {}
553
+ },
554
+ "reason": "test-unit-ruby-core-1.0.5 calls Ractor#value; the same NoMethodError occurred in control and rubycc",
555
+ "mode": "control",
556
+ "build_state": "pass",
557
+ "extension_load_state": "pass",
558
+ "suite_state": "fail",
559
+ "provenance": {
560
+ "gem_url": "https://rubygems.org/downloads/nkf-0.3.0.gem",
561
+ "gem_sha256": "357a8dbeba38b727b75930f665146546076a394a1c243faf634ff176e3588895",
562
+ "source_kind": "source_tarball",
563
+ "source_url": "https://github.com/ruby/nkf/archive/refs/tags/v0.3.0.tar.gz",
564
+ "source_sha256": "eeafd34ec8b9a7cfa4791d931ecb3a6e42293ec4675ce5d8e5a164e174121a16",
565
+ "source_relative_path": "r10-m4a/nkf-0.3.0-src.tar.gz"
566
+ },
567
+ "recipe": {
568
+ "name": "nkf",
569
+ "version": "0.3.0",
570
+ "source_kind": "source_tarball",
571
+ "source_url": "https://github.com/ruby/nkf/archive/refs/tags/v0.3.0.tar.gz",
572
+ "runner": "test_unit",
573
+ "test_glob": "test/**/test_*.rb",
574
+ "exclude": [],
575
+ "load_paths": [
576
+ "lib",
577
+ "test"
578
+ ],
579
+ "extconf_args": [],
580
+ "sos": [
581
+ {
582
+ "from": "lib/nkf.so",
583
+ "to": "lib/nkf.so"
584
+ }
585
+ ],
586
+ "test_deps": [
587
+ "test-unit",
588
+ "test-unit-ruby-core"
589
+ ],
590
+ "test_dep_versions": {},
591
+ "sanity": {
592
+ "requires": [
593
+ "nkf"
594
+ ],
595
+ "expression": "injected_so_loaded?"
596
+ },
597
+ "recipe_fingerprint": "d9f9d9657e60fdef49aa90e78b73b4cb08de01adc7f49d923c276499a16ee256"
598
+ },
599
+ "execution_context": {
600
+ "environment": "glibc x86_64 / ruby 3.4.5",
601
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
602
+ "host_cpu": "x86_64",
603
+ "ruby_arch": "x86_64-linux",
604
+ "cc": null,
605
+ "make": null,
606
+ "pkg_config": null,
607
+ "rubycc_mode": "control"
608
+ },
609
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
610
+ "rubycc_worktree_dirty": true
611
+ },
612
+ {
613
+ "name": "strscan",
614
+ "version": "3.1.6",
615
+ "status": "pass",
616
+ "sanity": true,
617
+ "evidence": [
618
+ "no rubycc traces (host cc)"
619
+ ],
620
+ "summary": {
621
+ "line": "150 tests, 1047 assertions, 0 failures, 0 errors",
622
+ "tests": 150,
623
+ "assertions": 1047,
624
+ "failures": 0,
625
+ "errors": 0,
626
+ "other": {}
627
+ },
628
+ "mode": "control",
629
+ "build_state": "pass",
630
+ "extension_load_state": "pass",
631
+ "suite_state": "pass",
632
+ "provenance": {
633
+ "gem_url": "https://rubygems.org/downloads/strscan-3.1.6.gem",
634
+ "gem_sha256": "ebd56df0b0468b00a1f2004b4078c34df58c3506b2bba939e7531892aece81f3",
635
+ "source_kind": "source_tarball",
636
+ "source_url": "https://github.com/ruby/strscan/archive/refs/tags/v3.1.6.tar.gz",
637
+ "source_sha256": "444fc94d8ebcb9fcf20d9d63212dbc42d4460ace429bc33f82080d2708442a5d",
638
+ "source_relative_path": "r10-m4a/strscan-3.1.6-src.tar.gz"
639
+ },
640
+ "recipe": {
641
+ "name": "strscan",
642
+ "version": "3.1.6",
643
+ "source_kind": "source_tarball",
644
+ "source_url": "https://github.com/ruby/strscan/archive/refs/tags/v3.1.6.tar.gz",
645
+ "runner": "test_unit",
646
+ "test_glob": "test/**/test_*.rb",
647
+ "exclude": [],
648
+ "load_paths": [
649
+ "lib",
650
+ "test/lib"
651
+ ],
652
+ "extconf_args": [],
653
+ "sos": [
654
+ {
655
+ "from": "lib/strscan.so",
656
+ "to": "lib/strscan.so"
657
+ }
658
+ ],
659
+ "test_deps": [
660
+ "test-unit",
661
+ "test-unit-ruby-core"
662
+ ],
663
+ "test_dep_versions": {},
664
+ "sanity": {
665
+ "requires": [
666
+ "strscan"
667
+ ],
668
+ "expression": "injected_so_loaded?"
669
+ },
670
+ "recipe_fingerprint": "b678487a20e60dd27d82305c29bb3a2e50d3e8fa81e17ab3955f5d1e319db047"
671
+ },
672
+ "execution_context": {
673
+ "environment": "glibc x86_64 / ruby 3.4.5",
674
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
675
+ "host_cpu": "x86_64",
676
+ "ruby_arch": "x86_64-linux",
677
+ "cc": null,
678
+ "make": null,
679
+ "pkg_config": null,
680
+ "rubycc_mode": "control"
681
+ },
682
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
683
+ "rubycc_worktree_dirty": true
684
+ },
685
+ {
686
+ "name": "stringio",
687
+ "version": "3.2.0",
688
+ "status": "pass",
689
+ "sanity": true,
690
+ "evidence": [
691
+ "no rubycc traces (host cc)"
692
+ ],
693
+ "summary": {
694
+ "line": "103 tests, 626 assertions, 0 failures, 0 errors",
695
+ "tests": 103,
696
+ "assertions": 626,
697
+ "failures": 0,
698
+ "errors": 0,
699
+ "other": {}
700
+ },
701
+ "mode": "control",
702
+ "build_state": "pass",
703
+ "extension_load_state": "pass",
704
+ "suite_state": "pass",
705
+ "provenance": {
706
+ "gem_url": "https://rubygems.org/downloads/stringio-3.2.0.gem",
707
+ "gem_sha256": "c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1",
708
+ "source_kind": "source_tarball",
709
+ "source_url": "https://github.com/ruby/stringio/archive/refs/tags/v3.2.0.tar.gz",
710
+ "source_sha256": "c8363b991c7cb46835530e984a69327d2e3cfceed37555208c59a6742a6e6966",
711
+ "source_relative_path": "r10-m4a/stringio-3.2.0-src.tar.gz"
712
+ },
713
+ "recipe": {
714
+ "name": "stringio",
715
+ "version": "3.2.0",
716
+ "source_kind": "source_tarball",
717
+ "source_url": "https://github.com/ruby/stringio/archive/refs/tags/v3.2.0.tar.gz",
718
+ "runner": "test_unit",
719
+ "test_glob": "test/**/test_*.rb",
720
+ "exclude": [],
721
+ "load_paths": [
722
+ "lib",
723
+ "test/lib"
724
+ ],
725
+ "extconf_args": [],
726
+ "sos": [
727
+ {
728
+ "from": "lib/stringio.so",
729
+ "to": "lib/stringio.so"
730
+ }
731
+ ],
732
+ "test_deps": [
733
+ "test-unit",
734
+ "test-unit-ruby-core"
735
+ ],
736
+ "test_dep_versions": {},
737
+ "sanity": {
738
+ "requires": [
739
+ "stringio"
740
+ ],
741
+ "expression": "injected_so_loaded?"
742
+ },
743
+ "recipe_fingerprint": "f84d284ce6b0375aaba07c45027916cc7c06d5298433e94ac4368f62bb03596b"
744
+ },
745
+ "execution_context": {
746
+ "environment": "glibc x86_64 / ruby 3.4.5",
747
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
748
+ "host_cpu": "x86_64",
749
+ "ruby_arch": "x86_64-linux",
750
+ "cc": null,
751
+ "make": null,
752
+ "pkg_config": null,
753
+ "rubycc_mode": "control"
754
+ },
755
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
756
+ "rubycc_worktree_dirty": true
757
+ }
758
+ ],
759
+ "rubycc": [
760
+ {
761
+ "name": "json",
762
+ "version": "2.21.1",
763
+ "status": "pass",
764
+ "sanity": true,
765
+ "evidence": [
766
+ "gem_make.out:rmake",
767
+ "Makefile:CC=rubycc",
768
+ "mkmf.log:rubycc"
769
+ ],
770
+ "summary": {
771
+ "line": "603 tests, 3425 assertions, 0 failures, 0 errors",
772
+ "tests": 603,
773
+ "assertions": 3425,
774
+ "failures": 0,
775
+ "errors": 0,
776
+ "other": {}
777
+ },
778
+ "mode": "rubycc",
779
+ "build_state": "pass",
780
+ "extension_load_state": "pass",
781
+ "suite_state": "pass",
782
+ "provenance": {
783
+ "gem_url": "https://rubygems.org/downloads/json-2.21.1.gem",
784
+ "gem_sha256": "13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583",
785
+ "source_kind": "source_tarball",
786
+ "source_url": "https://github.com/ruby/json/archive/refs/tags/v2.21.1.tar.gz",
787
+ "source_sha256": "b7b12ee6d17468d90ed86dc29bbd75a8af7820dcad6fe5e1b01b5182ea892de3",
788
+ "source_relative_path": "r10-m4a/json-2.21.1-src.tar.gz"
789
+ },
790
+ "recipe": {
791
+ "name": "json",
792
+ "version": "2.21.1",
793
+ "source_kind": "source_tarball",
794
+ "source_url": "https://github.com/ruby/json/archive/refs/tags/v2.21.1.tar.gz",
795
+ "runner": "test_unit",
796
+ "test_glob": "test/json/*_test.rb",
797
+ "exclude": [],
798
+ "load_paths": [
799
+ "lib",
800
+ "test"
801
+ ],
802
+ "extconf_args": [],
803
+ "sos": [
804
+ {
805
+ "from": "lib/json/ext/parser.so",
806
+ "to": "lib/json/ext/parser.so"
807
+ },
808
+ {
809
+ "from": "lib/json/ext/generator.so",
810
+ "to": "lib/json/ext/generator.so"
811
+ }
812
+ ],
813
+ "test_deps": [
814
+ "test-unit",
815
+ "test-unit-ruby-core"
816
+ ],
817
+ "test_dep_versions": {},
818
+ "sanity": {
819
+ "requires": [
820
+ "json"
821
+ ],
822
+ "expression": "JSON.parser.to_s == \"JSON::Ext::Parser\""
823
+ },
824
+ "recipe_fingerprint": "d9b03a4d5a88474a8c2bd4be12504f5ebe9198c59834ddfc9c5618c83108def3"
825
+ },
826
+ "execution_context": {
827
+ "environment": "glibc x86_64 / ruby 3.4.5",
828
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
829
+ "host_cpu": "x86_64",
830
+ "ruby_arch": "x86_64-linux",
831
+ "cc": null,
832
+ "make": null,
833
+ "pkg_config": null,
834
+ "rubycc_mode": "rubycc"
835
+ },
836
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
837
+ "rubycc_worktree_dirty": true
838
+ },
839
+ {
840
+ "name": "msgpack",
841
+ "version": "1.8.3",
842
+ "status": "pass",
843
+ "sanity": true,
844
+ "evidence": [
845
+ "gem_make.out:rmake",
846
+ "Makefile:CC=rubycc",
847
+ "mkmf.log:rubycc"
848
+ ],
849
+ "summary": {
850
+ "line": "455 examples, 0 failures, 1 pending",
851
+ "tests": 455,
852
+ "assertions": null,
853
+ "failures": 0,
854
+ "errors": 0,
855
+ "other": {
856
+ "pendings": 1
857
+ }
858
+ },
859
+ "mode": "rubycc",
860
+ "build_state": "pass",
861
+ "extension_load_state": "pass",
862
+ "suite_state": "pass",
863
+ "provenance": {
864
+ "gem_url": "https://rubygems.org/downloads/msgpack-1.8.3.gem",
865
+ "gem_sha256": "8bda4a6428d3244e50d6bd55854d354edbada88a4e1f4f5731a39a0f86bee6a1",
866
+ "source_kind": "source_tarball",
867
+ "source_url": "https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v1.8.3.tar.gz",
868
+ "source_sha256": "2b8a119620d49ccad3164aaf5bc7311627960a58ee3b2b60f04d1cf19021f1b5",
869
+ "source_relative_path": "r10-m4a/msgpack-1.8.3-src.tar.gz"
870
+ },
871
+ "recipe": {
872
+ "name": "msgpack",
873
+ "version": "1.8.3",
874
+ "source_kind": "source_tarball",
875
+ "source_url": "https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v1.8.3.tar.gz",
876
+ "runner": "rspec",
877
+ "test_glob": "spec/**/*_spec.rb",
878
+ "exclude": [
879
+ "spec/jruby/**/*"
880
+ ],
881
+ "load_paths": [
882
+ "lib",
883
+ "spec"
884
+ ],
885
+ "extconf_args": [],
886
+ "sos": [
887
+ {
888
+ "from": "lib/msgpack/msgpack.so",
889
+ "to": "lib/msgpack/msgpack.so"
890
+ }
891
+ ],
892
+ "test_deps": [
893
+ "rspec"
894
+ ],
895
+ "test_dep_versions": {},
896
+ "sanity": {
897
+ "requires": [
898
+ "msgpack"
899
+ ],
900
+ "expression": "injected_so_loaded?"
901
+ },
902
+ "recipe_fingerprint": "be34de5febc88c980c5212dd59acbc78937d81462c43fceb91ddf3e2b2209148"
903
+ },
904
+ "execution_context": {
905
+ "environment": "glibc x86_64 / ruby 3.4.5",
906
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
907
+ "host_cpu": "x86_64",
908
+ "ruby_arch": "x86_64-linux",
909
+ "cc": null,
910
+ "make": null,
911
+ "pkg_config": null,
912
+ "rubycc_mode": "rubycc"
913
+ },
914
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
915
+ "rubycc_worktree_dirty": true
916
+ },
917
+ {
918
+ "name": "bigdecimal",
919
+ "version": "4.1.2",
920
+ "status": "pass",
921
+ "sanity": true,
922
+ "evidence": [
923
+ "gem_make.out:rmake",
924
+ "Makefile:CC=rubycc",
925
+ "mkmf.log:rubycc"
926
+ ],
927
+ "summary": {
928
+ "line": "265 tests, 8267 assertions, 0 failures, 0 errors, 11 omissions",
929
+ "tests": 265,
930
+ "assertions": 8267,
931
+ "failures": 0,
932
+ "errors": 0,
933
+ "other": {
934
+ "omissions": 11
935
+ }
936
+ },
937
+ "mode": "rubycc",
938
+ "build_state": "pass",
939
+ "extension_load_state": "pass",
940
+ "suite_state": "pass",
941
+ "provenance": {
942
+ "gem_url": "https://rubygems.org/downloads/bigdecimal-4.1.2.gem",
943
+ "gem_sha256": "53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd",
944
+ "source_kind": "source_tarball",
945
+ "source_url": "https://github.com/ruby/bigdecimal/archive/refs/tags/v4.1.2.tar.gz",
946
+ "source_sha256": "2a2f61355a348d576360576405fd16ec9830c28a88894b325035464f44fb9c17",
947
+ "source_relative_path": "r10-m4a/bigdecimal-4.1.2-src.tar.gz"
948
+ },
949
+ "recipe": {
950
+ "name": "bigdecimal",
951
+ "version": "4.1.2",
952
+ "source_kind": "source_tarball",
953
+ "source_url": "https://github.com/ruby/bigdecimal/archive/refs/tags/v4.1.2.tar.gz",
954
+ "runner": "test_unit",
955
+ "test_glob": "test/bigdecimal/**/test_*.rb",
956
+ "exclude": [],
957
+ "load_paths": [
958
+ "lib",
959
+ "test/lib"
960
+ ],
961
+ "extconf_args": [],
962
+ "sos": [
963
+ {
964
+ "from": "lib/bigdecimal.so",
965
+ "to": "lib/bigdecimal.so"
966
+ }
967
+ ],
968
+ "test_deps": [
969
+ "test-unit",
970
+ "test-unit-ruby-core"
971
+ ],
972
+ "test_dep_versions": {},
973
+ "sanity": {
974
+ "requires": [
975
+ "bigdecimal"
976
+ ],
977
+ "expression": "injected_so_loaded?"
978
+ },
979
+ "recipe_fingerprint": "c459860476646f3ad0174347cb685c41b717d5d3e513f70c5a41676f5aa77773"
980
+ },
981
+ "execution_context": {
982
+ "environment": "glibc x86_64 / ruby 3.4.5",
983
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
984
+ "host_cpu": "x86_64",
985
+ "ruby_arch": "x86_64-linux",
986
+ "cc": null,
987
+ "make": null,
988
+ "pkg_config": null,
989
+ "rubycc_mode": "rubycc"
990
+ },
991
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
992
+ "rubycc_worktree_dirty": true
993
+ },
994
+ {
995
+ "name": "date",
996
+ "version": "3.5.1",
997
+ "status": "pass",
998
+ "sanity": true,
999
+ "evidence": [
1000
+ "gem_make.out:rmake",
1001
+ "Makefile:CC=rubycc",
1002
+ "mkmf.log:rubycc"
1003
+ ],
1004
+ "summary": {
1005
+ "line": "143 tests, 162593 assertions, 0 failures, 0 errors",
1006
+ "tests": 143,
1007
+ "assertions": 162593,
1008
+ "failures": 0,
1009
+ "errors": 0,
1010
+ "other": {}
1011
+ },
1012
+ "mode": "rubycc",
1013
+ "build_state": "pass",
1014
+ "extension_load_state": "pass",
1015
+ "suite_state": "pass",
1016
+ "provenance": {
1017
+ "gem_url": "https://rubygems.org/downloads/date-3.5.1.gem",
1018
+ "gem_sha256": "750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0",
1019
+ "source_kind": "source_tarball",
1020
+ "source_url": "https://github.com/ruby/date/archive/refs/tags/v3.5.1.tar.gz",
1021
+ "source_sha256": "a942710d42da8a0003ca0ba45e87bf70c66a5ae612b9fe34812028dd88443cbf",
1022
+ "source_relative_path": "r10-m4a/date-3.5.1-src.tar.gz"
1023
+ },
1024
+ "recipe": {
1025
+ "name": "date",
1026
+ "version": "3.5.1",
1027
+ "source_kind": "source_tarball",
1028
+ "source_url": "https://github.com/ruby/date/archive/refs/tags/v3.5.1.tar.gz",
1029
+ "runner": "test_unit",
1030
+ "test_glob": "test/**/test_*.rb",
1031
+ "exclude": [],
1032
+ "load_paths": [
1033
+ "lib",
1034
+ "test/lib"
1035
+ ],
1036
+ "extconf_args": [],
1037
+ "sos": [
1038
+ {
1039
+ "from": "lib/date_core.so",
1040
+ "to": "lib/date_core.so"
1041
+ }
1042
+ ],
1043
+ "test_deps": [
1044
+ "test-unit",
1045
+ "test-unit-ruby-core"
1046
+ ],
1047
+ "test_dep_versions": {},
1048
+ "sanity": {
1049
+ "requires": [
1050
+ "date"
1051
+ ],
1052
+ "expression": "injected_so_loaded?"
1053
+ },
1054
+ "recipe_fingerprint": "4b452f866ba4547d6b883541d8ec54966bafc804a163638f22171c4919a66521"
1055
+ },
1056
+ "execution_context": {
1057
+ "environment": "glibc x86_64 / ruby 3.4.5",
1058
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1059
+ "host_cpu": "x86_64",
1060
+ "ruby_arch": "x86_64-linux",
1061
+ "cc": null,
1062
+ "make": null,
1063
+ "pkg_config": null,
1064
+ "rubycc_mode": "rubycc"
1065
+ },
1066
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1067
+ "rubycc_worktree_dirty": true
1068
+ },
1069
+ {
1070
+ "name": "redcarpet",
1071
+ "version": "3.6.1",
1072
+ "status": "pass",
1073
+ "sanity": true,
1074
+ "evidence": [
1075
+ "gem_make.out:rmake",
1076
+ "Makefile:CC=rubycc"
1077
+ ],
1078
+ "summary": {
1079
+ "line": "136 tests, 206 assertions, 0 failures, 0 errors",
1080
+ "tests": 136,
1081
+ "assertions": 206,
1082
+ "failures": 0,
1083
+ "errors": 0,
1084
+ "other": {}
1085
+ },
1086
+ "mode": "rubycc",
1087
+ "build_state": "pass",
1088
+ "extension_load_state": "pass",
1089
+ "suite_state": "pass",
1090
+ "provenance": {
1091
+ "gem_url": "https://rubygems.org/downloads/redcarpet-3.6.1.gem",
1092
+ "gem_sha256": "d444910e6aa55480c6bcdc0cdb057626e8a32c054c29e793fa642ba2f155f445",
1093
+ "source_kind": "source_tarball",
1094
+ "source_url": "https://github.com/vmg/redcarpet/archive/refs/tags/v3.6.1.tar.gz",
1095
+ "source_sha256": "9f1a4ed476f2a3df54d08c4c052123290f2629a2e99367c6d3fb17dda6b751ec",
1096
+ "source_relative_path": "r10-m4a/redcarpet-3.6.1-src.tar.gz"
1097
+ },
1098
+ "recipe": {
1099
+ "name": "redcarpet",
1100
+ "version": "3.6.1",
1101
+ "source_kind": "source_tarball",
1102
+ "source_url": "https://github.com/vmg/redcarpet/archive/refs/tags/v3.6.1.tar.gz",
1103
+ "runner": "test_unit",
1104
+ "test_glob": "test/*_test.rb",
1105
+ "exclude": [],
1106
+ "load_paths": [
1107
+ "lib",
1108
+ "test"
1109
+ ],
1110
+ "extconf_args": [],
1111
+ "sos": [
1112
+ {
1113
+ "from": "lib/redcarpet.so",
1114
+ "to": "lib/redcarpet.so"
1115
+ }
1116
+ ],
1117
+ "test_deps": [
1118
+ "test-unit"
1119
+ ],
1120
+ "test_dep_versions": {},
1121
+ "sanity": {
1122
+ "requires": [
1123
+ "redcarpet"
1124
+ ],
1125
+ "expression": "injected_so_loaded?"
1126
+ },
1127
+ "recipe_fingerprint": "f80445cfc924d14712ea65e6fbe449023498f3fa801f1a24d36705aa5f71f2e8"
1128
+ },
1129
+ "execution_context": {
1130
+ "environment": "glibc x86_64 / ruby 3.4.5",
1131
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1132
+ "host_cpu": "x86_64",
1133
+ "ruby_arch": "x86_64-linux",
1134
+ "cc": null,
1135
+ "make": null,
1136
+ "pkg_config": null,
1137
+ "rubycc_mode": "rubycc"
1138
+ },
1139
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1140
+ "rubycc_worktree_dirty": true
1141
+ },
1142
+ {
1143
+ "name": "racc",
1144
+ "version": "1.8.1",
1145
+ "status": "pass",
1146
+ "sanity": true,
1147
+ "evidence": [
1148
+ "gem_make.out:rmake",
1149
+ "Makefile:CC=rubycc"
1150
+ ],
1151
+ "summary": {
1152
+ "line": "71 tests, 319 assertions, 0 failures, 0 errors",
1153
+ "tests": 71,
1154
+ "assertions": 319,
1155
+ "failures": 0,
1156
+ "errors": 0,
1157
+ "other": {}
1158
+ },
1159
+ "mode": "rubycc",
1160
+ "build_state": "pass",
1161
+ "extension_load_state": "pass",
1162
+ "suite_state": "pass",
1163
+ "provenance": {
1164
+ "gem_url": "https://rubygems.org/downloads/racc-1.8.1.gem",
1165
+ "gem_sha256": "4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f",
1166
+ "source_kind": "source_tarball",
1167
+ "source_url": "https://github.com/ruby/racc/archive/refs/tags/v1.8.1.tar.gz",
1168
+ "source_sha256": "affc4397e1f90ed8baf9eeaf30aeba1b9f25ac7e22e4bacb644415fe7886cacc",
1169
+ "source_relative_path": "r10-m4a/racc-1.8.1-src.tar.gz"
1170
+ },
1171
+ "recipe": {
1172
+ "name": "racc",
1173
+ "version": "1.8.1",
1174
+ "source_kind": "source_tarball",
1175
+ "source_url": "https://github.com/ruby/racc/archive/refs/tags/v1.8.1.tar.gz",
1176
+ "runner": "test_unit",
1177
+ "test_glob": "test/**/test_*.rb",
1178
+ "exclude": [],
1179
+ "load_paths": [
1180
+ "lib",
1181
+ "test/lib"
1182
+ ],
1183
+ "extconf_args": [],
1184
+ "sos": [
1185
+ {
1186
+ "from": "lib/racc/cparse.so",
1187
+ "to": "lib/racc/cparse.so"
1188
+ }
1189
+ ],
1190
+ "test_deps": [
1191
+ "test-unit",
1192
+ "test-unit-ruby-core"
1193
+ ],
1194
+ "test_dep_versions": {
1195
+ "test-unit": "3.6.1",
1196
+ "test-unit-ruby-core": "1.0.5"
1197
+ },
1198
+ "sanity": {
1199
+ "requires": [
1200
+ "racc/parser"
1201
+ ],
1202
+ "expression": "Racc::Parser::Racc_Runtime_Type == \"c\""
1203
+ },
1204
+ "recipe_fingerprint": "4d8047d195e8d8ed5906fad8fc37a1df28d3284bb74e2ee3710a4a5d318b4ac0"
1205
+ },
1206
+ "execution_context": {
1207
+ "environment": "glibc x86_64 / ruby 3.4.5",
1208
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1209
+ "host_cpu": "x86_64",
1210
+ "ruby_arch": "x86_64-linux",
1211
+ "cc": null,
1212
+ "make": null,
1213
+ "pkg_config": null,
1214
+ "rubycc_mode": "rubycc"
1215
+ },
1216
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1217
+ "rubycc_worktree_dirty": true
1218
+ },
1219
+ {
1220
+ "name": "stackprof",
1221
+ "version": "0.2.28",
1222
+ "status": "pass",
1223
+ "sanity": true,
1224
+ "evidence": [
1225
+ "gem_make.out:rmake",
1226
+ "Makefile:CC=rubycc",
1227
+ "mkmf.log:rubycc"
1228
+ ],
1229
+ "summary": {
1230
+ "line": "31 runs, 184 assertions, 0 failures, 0 errors",
1231
+ "tests": 31,
1232
+ "assertions": 184,
1233
+ "failures": 0,
1234
+ "errors": 0,
1235
+ "other": {}
1236
+ },
1237
+ "mode": "rubycc",
1238
+ "build_state": "pass",
1239
+ "extension_load_state": "pass",
1240
+ "suite_state": "pass",
1241
+ "provenance": {
1242
+ "gem_url": "https://rubygems.org/downloads/stackprof-0.2.28.gem",
1243
+ "gem_sha256": "4ec2ace02f386012b40ca20ef80c030ad711831f59511da12e83b34efb0f9a04",
1244
+ "source_kind": "source_tarball",
1245
+ "source_url": "https://github.com/tmm1/stackprof/archive/refs/tags/v0.2.28.tar.gz",
1246
+ "source_sha256": "8b9a5fa0b143f0aacee617233644b5bbcfabdfdb94631f3bea945895972e49b8",
1247
+ "source_relative_path": "r10-m4a/stackprof-0.2.28-src.tar.gz"
1248
+ },
1249
+ "recipe": {
1250
+ "name": "stackprof",
1251
+ "version": "0.2.28",
1252
+ "source_kind": "source_tarball",
1253
+ "source_url": "https://github.com/tmm1/stackprof/archive/refs/tags/v0.2.28.tar.gz",
1254
+ "runner": "test_unit",
1255
+ "test_glob": "test/**/test_*.rb",
1256
+ "exclude": [],
1257
+ "load_paths": [
1258
+ "lib",
1259
+ "test"
1260
+ ],
1261
+ "extconf_args": [],
1262
+ "sos": [
1263
+ {
1264
+ "from": "lib/stackprof/stackprof.so",
1265
+ "to": "lib/stackprof/stackprof.so"
1266
+ }
1267
+ ],
1268
+ "test_deps": [
1269
+ "minitest"
1270
+ ],
1271
+ "test_dep_versions": {},
1272
+ "sanity": {
1273
+ "requires": [
1274
+ "stackprof"
1275
+ ],
1276
+ "expression": "injected_so_loaded?"
1277
+ },
1278
+ "recipe_fingerprint": "7902149d9373f4f177be3a4e9df2d558faeafc01434dcc1bf1f52c2a52d4b9d4"
1279
+ },
1280
+ "execution_context": {
1281
+ "environment": "glibc x86_64 / ruby 3.4.5",
1282
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1283
+ "host_cpu": "x86_64",
1284
+ "ruby_arch": "x86_64-linux",
1285
+ "cc": null,
1286
+ "make": null,
1287
+ "pkg_config": null,
1288
+ "rubycc_mode": "rubycc"
1289
+ },
1290
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1291
+ "rubycc_worktree_dirty": true
1292
+ },
1293
+ {
1294
+ "name": "nkf",
1295
+ "version": "0.3.0",
1296
+ "status": "fail",
1297
+ "comparison": "inconclusive",
1298
+ "sanity": true,
1299
+ "evidence": [
1300
+ "gem_make.out:rmake",
1301
+ "Makefile:CC=rubycc"
1302
+ ],
1303
+ "summary": {
1304
+ "line": "8 tests, 44 assertions, 0 failures, 1 error",
1305
+ "tests": 8,
1306
+ "assertions": 44,
1307
+ "failures": 0,
1308
+ "errors": 1,
1309
+ "other": {}
1310
+ },
1311
+ "reason": "test-unit-ruby-core-1.0.5 calls Ractor#value; the same NoMethodError occurred in control and rubycc",
1312
+ "mode": "rubycc",
1313
+ "build_state": "pass",
1314
+ "extension_load_state": "pass",
1315
+ "suite_state": "fail",
1316
+ "provenance": {
1317
+ "gem_url": "https://rubygems.org/downloads/nkf-0.3.0.gem",
1318
+ "gem_sha256": "357a8dbeba38b727b75930f665146546076a394a1c243faf634ff176e3588895",
1319
+ "source_kind": "source_tarball",
1320
+ "source_url": "https://github.com/ruby/nkf/archive/refs/tags/v0.3.0.tar.gz",
1321
+ "source_sha256": "eeafd34ec8b9a7cfa4791d931ecb3a6e42293ec4675ce5d8e5a164e174121a16",
1322
+ "source_relative_path": "r10-m4a/nkf-0.3.0-src.tar.gz"
1323
+ },
1324
+ "recipe": {
1325
+ "name": "nkf",
1326
+ "version": "0.3.0",
1327
+ "source_kind": "source_tarball",
1328
+ "source_url": "https://github.com/ruby/nkf/archive/refs/tags/v0.3.0.tar.gz",
1329
+ "runner": "test_unit",
1330
+ "test_glob": "test/**/test_*.rb",
1331
+ "exclude": [],
1332
+ "load_paths": [
1333
+ "lib",
1334
+ "test"
1335
+ ],
1336
+ "extconf_args": [],
1337
+ "sos": [
1338
+ {
1339
+ "from": "lib/nkf.so",
1340
+ "to": "lib/nkf.so"
1341
+ }
1342
+ ],
1343
+ "test_deps": [
1344
+ "test-unit",
1345
+ "test-unit-ruby-core"
1346
+ ],
1347
+ "test_dep_versions": {},
1348
+ "sanity": {
1349
+ "requires": [
1350
+ "nkf"
1351
+ ],
1352
+ "expression": "injected_so_loaded?"
1353
+ },
1354
+ "recipe_fingerprint": "d9f9d9657e60fdef49aa90e78b73b4cb08de01adc7f49d923c276499a16ee256"
1355
+ },
1356
+ "execution_context": {
1357
+ "environment": "glibc x86_64 / ruby 3.4.5",
1358
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1359
+ "host_cpu": "x86_64",
1360
+ "ruby_arch": "x86_64-linux",
1361
+ "cc": null,
1362
+ "make": null,
1363
+ "pkg_config": null,
1364
+ "rubycc_mode": "rubycc"
1365
+ },
1366
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1367
+ "rubycc_worktree_dirty": true
1368
+ },
1369
+ {
1370
+ "name": "strscan",
1371
+ "version": "3.1.6",
1372
+ "status": "pass",
1373
+ "sanity": true,
1374
+ "evidence": [
1375
+ "gem_make.out:rmake",
1376
+ "Makefile:CC=rubycc",
1377
+ "mkmf.log:rubycc"
1378
+ ],
1379
+ "summary": {
1380
+ "line": "150 tests, 1047 assertions, 0 failures, 0 errors",
1381
+ "tests": 150,
1382
+ "assertions": 1047,
1383
+ "failures": 0,
1384
+ "errors": 0,
1385
+ "other": {}
1386
+ },
1387
+ "mode": "rubycc",
1388
+ "build_state": "pass",
1389
+ "extension_load_state": "pass",
1390
+ "suite_state": "pass",
1391
+ "provenance": {
1392
+ "gem_url": "https://rubygems.org/downloads/strscan-3.1.6.gem",
1393
+ "gem_sha256": "ebd56df0b0468b00a1f2004b4078c34df58c3506b2bba939e7531892aece81f3",
1394
+ "source_kind": "source_tarball",
1395
+ "source_url": "https://github.com/ruby/strscan/archive/refs/tags/v3.1.6.tar.gz",
1396
+ "source_sha256": "444fc94d8ebcb9fcf20d9d63212dbc42d4460ace429bc33f82080d2708442a5d",
1397
+ "source_relative_path": "r10-m4a/strscan-3.1.6-src.tar.gz"
1398
+ },
1399
+ "recipe": {
1400
+ "name": "strscan",
1401
+ "version": "3.1.6",
1402
+ "source_kind": "source_tarball",
1403
+ "source_url": "https://github.com/ruby/strscan/archive/refs/tags/v3.1.6.tar.gz",
1404
+ "runner": "test_unit",
1405
+ "test_glob": "test/**/test_*.rb",
1406
+ "exclude": [],
1407
+ "load_paths": [
1408
+ "lib",
1409
+ "test/lib"
1410
+ ],
1411
+ "extconf_args": [],
1412
+ "sos": [
1413
+ {
1414
+ "from": "lib/strscan.so",
1415
+ "to": "lib/strscan.so"
1416
+ }
1417
+ ],
1418
+ "test_deps": [
1419
+ "test-unit",
1420
+ "test-unit-ruby-core"
1421
+ ],
1422
+ "test_dep_versions": {},
1423
+ "sanity": {
1424
+ "requires": [
1425
+ "strscan"
1426
+ ],
1427
+ "expression": "injected_so_loaded?"
1428
+ },
1429
+ "recipe_fingerprint": "b678487a20e60dd27d82305c29bb3a2e50d3e8fa81e17ab3955f5d1e319db047"
1430
+ },
1431
+ "execution_context": {
1432
+ "environment": "glibc x86_64 / ruby 3.4.5",
1433
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1434
+ "host_cpu": "x86_64",
1435
+ "ruby_arch": "x86_64-linux",
1436
+ "cc": null,
1437
+ "make": null,
1438
+ "pkg_config": null,
1439
+ "rubycc_mode": "rubycc"
1440
+ },
1441
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1442
+ "rubycc_worktree_dirty": true
1443
+ },
1444
+ {
1445
+ "name": "stringio",
1446
+ "version": "3.2.0",
1447
+ "status": "pass",
1448
+ "sanity": true,
1449
+ "evidence": [
1450
+ "gem_make.out:rmake",
1451
+ "Makefile:CC=rubycc",
1452
+ "mkmf.log:rubycc"
1453
+ ],
1454
+ "summary": {
1455
+ "line": "103 tests, 626 assertions, 0 failures, 0 errors",
1456
+ "tests": 103,
1457
+ "assertions": 626,
1458
+ "failures": 0,
1459
+ "errors": 0,
1460
+ "other": {}
1461
+ },
1462
+ "mode": "rubycc",
1463
+ "build_state": "pass",
1464
+ "extension_load_state": "pass",
1465
+ "suite_state": "pass",
1466
+ "provenance": {
1467
+ "gem_url": "https://rubygems.org/downloads/stringio-3.2.0.gem",
1468
+ "gem_sha256": "c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1",
1469
+ "source_kind": "source_tarball",
1470
+ "source_url": "https://github.com/ruby/stringio/archive/refs/tags/v3.2.0.tar.gz",
1471
+ "source_sha256": "c8363b991c7cb46835530e984a69327d2e3cfceed37555208c59a6742a6e6966",
1472
+ "source_relative_path": "r10-m4a/stringio-3.2.0-src.tar.gz"
1473
+ },
1474
+ "recipe": {
1475
+ "name": "stringio",
1476
+ "version": "3.2.0",
1477
+ "source_kind": "source_tarball",
1478
+ "source_url": "https://github.com/ruby/stringio/archive/refs/tags/v3.2.0.tar.gz",
1479
+ "runner": "test_unit",
1480
+ "test_glob": "test/**/test_*.rb",
1481
+ "exclude": [],
1482
+ "load_paths": [
1483
+ "lib",
1484
+ "test/lib"
1485
+ ],
1486
+ "extconf_args": [],
1487
+ "sos": [
1488
+ {
1489
+ "from": "lib/stringio.so",
1490
+ "to": "lib/stringio.so"
1491
+ }
1492
+ ],
1493
+ "test_deps": [
1494
+ "test-unit",
1495
+ "test-unit-ruby-core"
1496
+ ],
1497
+ "test_dep_versions": {},
1498
+ "sanity": {
1499
+ "requires": [
1500
+ "stringio"
1501
+ ],
1502
+ "expression": "injected_so_loaded?"
1503
+ },
1504
+ "recipe_fingerprint": "f84d284ce6b0375aaba07c45027916cc7c06d5298433e94ac4368f62bb03596b"
1505
+ },
1506
+ "execution_context": {
1507
+ "environment": "glibc x86_64 / ruby 3.4.5",
1508
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1509
+ "host_cpu": "x86_64",
1510
+ "ruby_arch": "x86_64-linux",
1511
+ "cc": null,
1512
+ "make": null,
1513
+ "pkg_config": null,
1514
+ "rubycc_mode": "rubycc"
1515
+ },
1516
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1517
+ "rubycc_worktree_dirty": true
1518
+ }
1519
+ ],
1520
+ "execution_context": {
1521
+ "environment": "glibc x86_64 / ruby 3.4.5",
1522
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1523
+ "host_cpu": "x86_64",
1524
+ "ruby_arch": "x86_64-linux",
1525
+ "cc": null,
1526
+ "make": null,
1527
+ "pkg_config": null
1528
+ },
1529
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1530
+ "rubycc_worktree_dirty": true
1531
+ }