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,318 @@
1
+ {
2
+ "schema_version": 2,
3
+ "artifact_kind": "r10-gem-verification-summary",
4
+ "batch": "R10-M4D",
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
+ "profile": {
11
+ "sqlite3": "sqlite3-system-libraries / --enable-system-libraries",
12
+ "pg": "pg-native-source / system libpq"
13
+ },
14
+ "precondition": "The host lacks sqlite3.h/libsqlite3 development files and pg_config/pkg-config/libpq-fe.h; both profiles stop during extconf in control and rubycc.",
15
+ "control": [
16
+ {
17
+ "name": "sqlite3",
18
+ "version": "2.9.5",
19
+ "status": "fail",
20
+ "profile_state": "inconclusive",
21
+ "suite_state": "not_run",
22
+ "sanity": null,
23
+ "evidence": [
24
+ "gem install failed during extconf",
25
+ "mkmf.log: sqlite3.h not found",
26
+ "mkmf.log: pkg-config for sqlite3 not found"
27
+ ],
28
+ "summary": null,
29
+ "reason": "system-library profile cannot build without sqlite3 development headers/library",
30
+ "mode": "control",
31
+ "build_state": "inconclusive",
32
+ "extension_load_state": "not_run",
33
+ "provenance": {
34
+ "gem_url": "https://rubygems.org/downloads/sqlite3-2.9.5.gem",
35
+ "gem_sha256": "04572973a3f943ad50a8adfffc8dd752a5f06e4c3db2026f71838fed8a982606",
36
+ "source_kind": "source_tarball",
37
+ "source_url": "https://github.com/sparklemotion/sqlite3-ruby/archive/refs/tags/v2.9.5.tar.gz",
38
+ "source_sha256": "693cdb52695cc56e1d3e76986b5835629ac269572e9d4535d3b87b687d3b84ce",
39
+ "source_relative_path": "r10-sqlite-src.Q8UyDu/sqlite3.tar.gz"
40
+ },
41
+ "recipe": {
42
+ "name": "sqlite3",
43
+ "version": "2.9.5",
44
+ "source_kind": "source_tarball",
45
+ "source_url": "https://github.com/sparklemotion/sqlite3-ruby/archive/refs/tags/v2.9.5.tar.gz",
46
+ "runner": "test_unit",
47
+ "test_glob": "test/**/test_*.rb",
48
+ "exclude": [],
49
+ "load_paths": [
50
+ "test",
51
+ "lib"
52
+ ],
53
+ "extconf_args": [
54
+ "--enable-system-libraries"
55
+ ],
56
+ "sos": [
57
+ {
58
+ "from": "lib/sqlite3/sqlite3_native.so",
59
+ "to": "lib/sqlite3/sqlite3_native.so"
60
+ }
61
+ ],
62
+ "test_deps": [
63
+ "minitest"
64
+ ],
65
+ "test_dep_versions": {
66
+ "minitest": "6.0.6"
67
+ },
68
+ "sanity": {
69
+ "requires": [
70
+ "sqlite3"
71
+ ],
72
+ "expression": "injected_so_loaded? && SQLite3::SQLITE_PACKAGED_LIBRARIES == false"
73
+ },
74
+ "recipe_fingerprint": "fa13005f379ad13ffe3ed740d869decc7305c06ae9a32c11af5d46694b003059"
75
+ },
76
+ "execution_context": {
77
+ "environment": "glibc x86_64 / ruby 3.4.5",
78
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
79
+ "host_cpu": "x86_64",
80
+ "ruby_arch": "x86_64-linux",
81
+ "cc": null,
82
+ "make": null,
83
+ "pkg_config": null,
84
+ "rubycc_mode": "control"
85
+ },
86
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
87
+ "rubycc_worktree_dirty": true
88
+ },
89
+ {
90
+ "name": "pg",
91
+ "version": "1.6.3",
92
+ "status": "fail",
93
+ "profile_state": "inconclusive",
94
+ "suite_state": "not_run",
95
+ "sanity": null,
96
+ "evidence": [
97
+ "gem install failed during extconf",
98
+ "mkmf.log: pg_config not found",
99
+ "mkmf.log: pkg-config for libpq not found",
100
+ "mkmf.log: libpq-fe.h not found"
101
+ ],
102
+ "summary": null,
103
+ "reason": "native-source profile cannot build without system libpq development files",
104
+ "mode": "control",
105
+ "build_state": "inconclusive",
106
+ "extension_load_state": "not_run",
107
+ "provenance": {
108
+ "gem_url": "https://rubygems.org/downloads/pg-1.6.3.gem",
109
+ "gem_sha256": "1388d0563e13d2758c1089e35e973a3249e955c659592d10e5b77c468f628a99",
110
+ "source_kind": "source_tarball",
111
+ "source_url": "https://github.com/ged/ruby-pg/archive/refs/tags/v1.6.3.tar.gz",
112
+ "source_sha256": "b8018cb91daca6396d7de17d33645d00c7f3d7fe0ad8b9fa248bb24f2ec7efe8",
113
+ "source_relative_path": "r10-pg-src.l8kfiV/pg.tar.gz"
114
+ },
115
+ "recipe": {
116
+ "name": "pg",
117
+ "version": "1.6.3",
118
+ "source_kind": "source_tarball",
119
+ "source_url": "https://github.com/ged/ruby-pg/archive/refs/tags/v1.6.3.tar.gz",
120
+ "runner": "rspec",
121
+ "test_glob": "spec/**/*_spec.rb",
122
+ "exclude": [],
123
+ "load_paths": [
124
+ "lib",
125
+ "spec"
126
+ ],
127
+ "extconf_args": [],
128
+ "sos": [
129
+ {
130
+ "from": "lib/pg_ext.so",
131
+ "to": "lib/pg_ext.so"
132
+ }
133
+ ],
134
+ "test_deps": [
135
+ "rspec"
136
+ ],
137
+ "test_dep_versions": {},
138
+ "sanity": {
139
+ "requires": [
140
+ "pg"
141
+ ],
142
+ "expression": "injected_so_loaded? && PG::IS_BINARY_GEM == false"
143
+ },
144
+ "recipe_fingerprint": "50df7414d3292cd32182534121b121a9ddac7fbe1a093cb6ae4d3e68c2cd9cfb"
145
+ },
146
+ "execution_context": {
147
+ "environment": "glibc x86_64 / ruby 3.4.5",
148
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
149
+ "host_cpu": "x86_64",
150
+ "ruby_arch": "x86_64-linux",
151
+ "cc": null,
152
+ "make": null,
153
+ "pkg_config": null,
154
+ "rubycc_mode": "control"
155
+ },
156
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
157
+ "rubycc_worktree_dirty": true
158
+ }
159
+ ],
160
+ "rubycc": [
161
+ {
162
+ "name": "sqlite3",
163
+ "version": "2.9.5",
164
+ "status": "fail",
165
+ "profile_state": "inconclusive",
166
+ "suite_state": "not_run",
167
+ "sanity": null,
168
+ "evidence": [
169
+ "RUBYCC=1 gem install failed during extconf",
170
+ "mkmf.log: sqlite3.h not found",
171
+ "mkmf.log: pkg-config for sqlite3 not found"
172
+ ],
173
+ "summary": null,
174
+ "reason": "system-library profile cannot build without sqlite3 development headers/library",
175
+ "mode": "rubycc",
176
+ "build_state": "inconclusive",
177
+ "extension_load_state": "not_run",
178
+ "provenance": {
179
+ "gem_url": "https://rubygems.org/downloads/sqlite3-2.9.5.gem",
180
+ "gem_sha256": "04572973a3f943ad50a8adfffc8dd752a5f06e4c3db2026f71838fed8a982606",
181
+ "source_kind": "source_tarball",
182
+ "source_url": "https://github.com/sparklemotion/sqlite3-ruby/archive/refs/tags/v2.9.5.tar.gz",
183
+ "source_sha256": "693cdb52695cc56e1d3e76986b5835629ac269572e9d4535d3b87b687d3b84ce",
184
+ "source_relative_path": "r10-sqlite-src.Q8UyDu/sqlite3.tar.gz"
185
+ },
186
+ "recipe": {
187
+ "name": "sqlite3",
188
+ "version": "2.9.5",
189
+ "source_kind": "source_tarball",
190
+ "source_url": "https://github.com/sparklemotion/sqlite3-ruby/archive/refs/tags/v2.9.5.tar.gz",
191
+ "runner": "test_unit",
192
+ "test_glob": "test/**/test_*.rb",
193
+ "exclude": [],
194
+ "load_paths": [
195
+ "test",
196
+ "lib"
197
+ ],
198
+ "extconf_args": [
199
+ "--enable-system-libraries"
200
+ ],
201
+ "sos": [
202
+ {
203
+ "from": "lib/sqlite3/sqlite3_native.so",
204
+ "to": "lib/sqlite3/sqlite3_native.so"
205
+ }
206
+ ],
207
+ "test_deps": [
208
+ "minitest"
209
+ ],
210
+ "test_dep_versions": {
211
+ "minitest": "6.0.6"
212
+ },
213
+ "sanity": {
214
+ "requires": [
215
+ "sqlite3"
216
+ ],
217
+ "expression": "injected_so_loaded? && SQLite3::SQLITE_PACKAGED_LIBRARIES == false"
218
+ },
219
+ "recipe_fingerprint": "fa13005f379ad13ffe3ed740d869decc7305c06ae9a32c11af5d46694b003059"
220
+ },
221
+ "execution_context": {
222
+ "environment": "glibc x86_64 / ruby 3.4.5",
223
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
224
+ "host_cpu": "x86_64",
225
+ "ruby_arch": "x86_64-linux",
226
+ "cc": null,
227
+ "make": null,
228
+ "pkg_config": null,
229
+ "rubycc_mode": "rubycc"
230
+ },
231
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
232
+ "rubycc_worktree_dirty": true
233
+ },
234
+ {
235
+ "name": "pg",
236
+ "version": "1.6.3",
237
+ "status": "fail",
238
+ "profile_state": "inconclusive",
239
+ "suite_state": "not_run",
240
+ "sanity": null,
241
+ "evidence": [
242
+ "RUBYCC=1 gem install failed during extconf",
243
+ "mkmf.log: pg_config not found",
244
+ "mkmf.log: pkg-config for libpq not found",
245
+ "mkmf.log: libpq-fe.h not found"
246
+ ],
247
+ "summary": null,
248
+ "reason": "native-source profile cannot build without system libpq development files",
249
+ "mode": "rubycc",
250
+ "build_state": "inconclusive",
251
+ "extension_load_state": "not_run",
252
+ "provenance": {
253
+ "gem_url": "https://rubygems.org/downloads/pg-1.6.3.gem",
254
+ "gem_sha256": "1388d0563e13d2758c1089e35e973a3249e955c659592d10e5b77c468f628a99",
255
+ "source_kind": "source_tarball",
256
+ "source_url": "https://github.com/ged/ruby-pg/archive/refs/tags/v1.6.3.tar.gz",
257
+ "source_sha256": "b8018cb91daca6396d7de17d33645d00c7f3d7fe0ad8b9fa248bb24f2ec7efe8",
258
+ "source_relative_path": "r10-pg-src.l8kfiV/pg.tar.gz"
259
+ },
260
+ "recipe": {
261
+ "name": "pg",
262
+ "version": "1.6.3",
263
+ "source_kind": "source_tarball",
264
+ "source_url": "https://github.com/ged/ruby-pg/archive/refs/tags/v1.6.3.tar.gz",
265
+ "runner": "rspec",
266
+ "test_glob": "spec/**/*_spec.rb",
267
+ "exclude": [],
268
+ "load_paths": [
269
+ "lib",
270
+ "spec"
271
+ ],
272
+ "extconf_args": [],
273
+ "sos": [
274
+ {
275
+ "from": "lib/pg_ext.so",
276
+ "to": "lib/pg_ext.so"
277
+ }
278
+ ],
279
+ "test_deps": [
280
+ "rspec"
281
+ ],
282
+ "test_dep_versions": {},
283
+ "sanity": {
284
+ "requires": [
285
+ "pg"
286
+ ],
287
+ "expression": "injected_so_loaded? && PG::IS_BINARY_GEM == false"
288
+ },
289
+ "recipe_fingerprint": "50df7414d3292cd32182534121b121a9ddac7fbe1a093cb6ae4d3e68c2cd9cfb"
290
+ },
291
+ "execution_context": {
292
+ "environment": "glibc x86_64 / ruby 3.4.5",
293
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
294
+ "host_cpu": "x86_64",
295
+ "ruby_arch": "x86_64-linux",
296
+ "cc": null,
297
+ "make": null,
298
+ "pkg_config": null,
299
+ "rubycc_mode": "rubycc"
300
+ },
301
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
302
+ "rubycc_worktree_dirty": true
303
+ }
304
+ ],
305
+ "suite_state": "not_run",
306
+ "review_note": "This is an explicit external-profile inconclusive result, not a skip or a pass. The bundled sqlite3 and pg cross-build profiles remain different profiles.",
307
+ "execution_context": {
308
+ "environment": "glibc x86_64 / ruby 3.4.5",
309
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
310
+ "host_cpu": "x86_64",
311
+ "ruby_arch": "x86_64-linux",
312
+ "cc": null,
313
+ "make": null,
314
+ "pkg_config": null
315
+ },
316
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
317
+ "rubycc_worktree_dirty": true
318
+ }
@@ -0,0 +1,192 @@
1
+ {
2
+ "schema_version": 2,
3
+ "artifact_kind": "r10-gem-verification-summary",
4
+ "batch": "R10-M4C-RBS",
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
+ "comparison": "inconclusive: control and rubycc have identical suite result; extension build/load passed in both",
11
+ "control": [
12
+ {
13
+ "name": "rbs",
14
+ "version": "3.10.0",
15
+ "mode": "control",
16
+ "status": "fail",
17
+ "reason": "22 failures / 7 errors",
18
+ "sanity": true,
19
+ "evidence": [
20
+ "no rubycc traces (host cc)"
21
+ ],
22
+ "files": 54,
23
+ "summary": {
24
+ "line": "707 tests, 5400 assertions, 22 failures, 7 errors, 0 pendings, 10 omissions, 0 notifications",
25
+ "tests": 707,
26
+ "assertions": 5400,
27
+ "failures": 22,
28
+ "errors": 7,
29
+ "other": {
30
+ "omissions": 10
31
+ }
32
+ },
33
+ "environment": "glibc x86_64 / ruby 3.4.5",
34
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
35
+ "work_dir": "<VERIFY_WORK>",
36
+ "build_state": "pass",
37
+ "extension_load_state": "pass",
38
+ "suite_state": "fail",
39
+ "provenance": {
40
+ "gem_url": "https://rubygems.org/downloads/rbs-3.10.0.gem",
41
+ "gem_sha256": "e75b5f1313c71c9ee0fcea68bf97d3e5fe8ec7a641d4b5cd18bbc28c94ddf298",
42
+ "source_kind": "source_tarball",
43
+ "source_url": "https://github.com/ruby/rbs/archive/refs/tags/v3.10.0.tar.gz",
44
+ "source_sha256": "ab404bf2c4c6bb619ee489d2fe9e39fb46e0c5485dd471ec633296a0c873a4dd",
45
+ "source_relative_path": "r10-rbs-control/rbs-3.10.0-src.tar.gz"
46
+ },
47
+ "recipe": {
48
+ "name": "rbs",
49
+ "version": "3.10.0",
50
+ "source_kind": "source_tarball",
51
+ "source_url": "https://github.com/ruby/rbs/archive/refs/tags/v3.10.0.tar.gz",
52
+ "runner": "test_unit",
53
+ "test_glob": "test/**/*_test.rb",
54
+ "exclude": [
55
+ "test/stdlib/**/*"
56
+ ],
57
+ "load_paths": [
58
+ "test",
59
+ "lib"
60
+ ],
61
+ "extconf_args": [],
62
+ "sos": [
63
+ {
64
+ "from": "lib/rbs_extension.so",
65
+ "to": "lib/rbs_extension.so"
66
+ }
67
+ ],
68
+ "test_deps": [
69
+ "test-unit",
70
+ "json-schema"
71
+ ],
72
+ "test_dep_versions": {},
73
+ "sanity": {
74
+ "requires": [
75
+ "rbs"
76
+ ],
77
+ "expression": "injected_so_loaded?"
78
+ },
79
+ "recipe_fingerprint": "887e082c61193be868211d398052c289cea1fca44fb3993edb1e5125e43e599c"
80
+ },
81
+ "execution_context": {
82
+ "environment": "glibc x86_64 / ruby 3.4.5",
83
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
84
+ "host_cpu": "x86_64",
85
+ "ruby_arch": "x86_64-linux",
86
+ "cc": null,
87
+ "make": null,
88
+ "pkg_config": null,
89
+ "rubycc_mode": "control"
90
+ },
91
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
92
+ "rubycc_worktree_dirty": true
93
+ }
94
+ ],
95
+ "rubycc": [
96
+ {
97
+ "name": "rbs",
98
+ "version": "3.10.0",
99
+ "mode": "rubycc",
100
+ "status": "fail",
101
+ "reason": "22 failures / 7 errors",
102
+ "sanity": true,
103
+ "evidence": [
104
+ "gem_make.out:rmake",
105
+ "Makefile:CC=rubycc",
106
+ "mkmf.log:rubycc"
107
+ ],
108
+ "files": 54,
109
+ "summary": {
110
+ "line": "707 tests, 5400 assertions, 22 failures, 7 errors, 0 pendings, 10 omissions, 0 notifications",
111
+ "tests": 707,
112
+ "assertions": 5400,
113
+ "failures": 22,
114
+ "errors": 7,
115
+ "other": {
116
+ "omissions": 10
117
+ }
118
+ },
119
+ "environment": "glibc x86_64 / ruby 3.4.5",
120
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
121
+ "work_dir": "<VERIFY_WORK>",
122
+ "build_state": "pass",
123
+ "extension_load_state": "pass",
124
+ "suite_state": "fail",
125
+ "provenance": {
126
+ "gem_url": "https://rubygems.org/downloads/rbs-3.10.0.gem",
127
+ "gem_sha256": "e75b5f1313c71c9ee0fcea68bf97d3e5fe8ec7a641d4b5cd18bbc28c94ddf298",
128
+ "source_kind": "source_tarball",
129
+ "source_url": "https://github.com/ruby/rbs/archive/refs/tags/v3.10.0.tar.gz",
130
+ "source_sha256": "ab404bf2c4c6bb619ee489d2fe9e39fb46e0c5485dd471ec633296a0c873a4dd",
131
+ "source_relative_path": "r10-rbs-control/rbs-3.10.0-src.tar.gz"
132
+ },
133
+ "recipe": {
134
+ "name": "rbs",
135
+ "version": "3.10.0",
136
+ "source_kind": "source_tarball",
137
+ "source_url": "https://github.com/ruby/rbs/archive/refs/tags/v3.10.0.tar.gz",
138
+ "runner": "test_unit",
139
+ "test_glob": "test/**/*_test.rb",
140
+ "exclude": [
141
+ "test/stdlib/**/*"
142
+ ],
143
+ "load_paths": [
144
+ "test",
145
+ "lib"
146
+ ],
147
+ "extconf_args": [],
148
+ "sos": [
149
+ {
150
+ "from": "lib/rbs_extension.so",
151
+ "to": "lib/rbs_extension.so"
152
+ }
153
+ ],
154
+ "test_deps": [
155
+ "test-unit",
156
+ "json-schema"
157
+ ],
158
+ "test_dep_versions": {},
159
+ "sanity": {
160
+ "requires": [
161
+ "rbs"
162
+ ],
163
+ "expression": "injected_so_loaded?"
164
+ },
165
+ "recipe_fingerprint": "887e082c61193be868211d398052c289cea1fca44fb3993edb1e5125e43e599c"
166
+ },
167
+ "execution_context": {
168
+ "environment": "glibc x86_64 / ruby 3.4.5",
169
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
170
+ "host_cpu": "x86_64",
171
+ "ruby_arch": "x86_64-linux",
172
+ "cc": null,
173
+ "make": null,
174
+ "pkg_config": null,
175
+ "rubycc_mode": "rubycc"
176
+ },
177
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
178
+ "rubycc_worktree_dirty": true
179
+ }
180
+ ],
181
+ "execution_context": {
182
+ "environment": "glibc x86_64 / ruby 3.4.5",
183
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
184
+ "host_cpu": "x86_64",
185
+ "ruby_arch": "x86_64-linux",
186
+ "cc": null,
187
+ "make": null,
188
+ "pkg_config": null
189
+ },
190
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
191
+ "rubycc_worktree_dirty": true
192
+ }