serrano-vk 0.1.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 (588) hide show
  1. checksums.yaml +7 -0
  2. data/EXAMPLES.md +271 -0
  3. data/README.md +170 -0
  4. data/bin/serrano +6 -0
  5. data/examples/demo_crud/Gemfile +9 -0
  6. data/examples/demo_crud/Gemfile.lock +31 -0
  7. data/examples/demo_crud/app/controllers/articles_controller.rb +92 -0
  8. data/examples/demo_crud/app/controllers/categories_controller.rb +92 -0
  9. data/examples/demo_crud/app/entities/article.rb +17 -0
  10. data/examples/demo_crud/app/entities/category.rb +17 -0
  11. data/examples/demo_crud/app/entities/concerns/validatable.rb +136 -0
  12. data/examples/demo_crud/app/repositories/article_repository.rb +42 -0
  13. data/examples/demo_crud/app/repositories/category_repository.rb +42 -0
  14. data/examples/demo_crud/app/services/articles/create.rb +29 -0
  15. data/examples/demo_crud/app/services/articles/destroy.rb +20 -0
  16. data/examples/demo_crud/app/services/articles/index.rb +17 -0
  17. data/examples/demo_crud/app/services/articles/show.rb +20 -0
  18. data/examples/demo_crud/app/services/articles/update.rb +26 -0
  19. data/examples/demo_crud/app/services/categories/create.rb +27 -0
  20. data/examples/demo_crud/app/services/categories/destroy.rb +20 -0
  21. data/examples/demo_crud/app/services/categories/index.rb +17 -0
  22. data/examples/demo_crud/app/services/categories/show.rb +20 -0
  23. data/examples/demo_crud/app/services/categories/update.rb +26 -0
  24. data/examples/demo_crud/config/db.rb +3 -0
  25. data/examples/demo_crud/config.ru +19 -0
  26. data/examples/demo_crud/db/development.sqlite3 +0 -0
  27. data/examples/demo_crud/db/migrations/20260307212844_create_articles.rb +14 -0
  28. data/examples/demo_crud/db/migrations/20260307212845_create_categories.rb +12 -0
  29. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/rackup +29 -0
  30. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/rackup.bat +2 -0
  31. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/sequel +29 -0
  32. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/sequel.bat +2 -0
  33. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/serrano +29 -0
  34. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/bin/serrano.bat +2 -0
  35. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/bigdecimal-4.0.1.gem +0 -0
  36. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/rack-3.2.5.gem +0 -0
  37. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/rackup-2.3.1.gem +0 -0
  38. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/sequel-5.102.0.gem +0 -0
  39. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/sqlite3-2.9.1-x64-mingw-ucrt.gem +0 -0
  40. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/cache/webrick-1.9.2.gem +0 -0
  41. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/extensions/x64-mingw-ucrt/3.4.0/bigdecimal-4.0.1/bigdecimal.so +0 -0
  42. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/extensions/x64-mingw-ucrt/3.4.0/bigdecimal-4.0.1/gem.build_complete +0 -0
  43. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/extensions/x64-mingw-ucrt/3.4.0/bigdecimal-4.0.1/gem_make.out +43 -0
  44. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/extensions/x64-mingw-ucrt/3.4.0/bigdecimal-4.0.1/mkmf.log +669 -0
  45. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/LICENSE +56 -0
  46. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/bigdecimal.gemspec +57 -0
  47. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/Makefile +278 -0
  48. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.c +6206 -0
  49. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bigdecimal.h +292 -0
  50. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/bits.h +144 -0
  51. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/extconf.rb +60 -0
  52. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/feature.h +68 -0
  53. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing/dtoa.c +3462 -0
  54. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.c +28 -0
  55. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/missing.h +104 -0
  56. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/ext/bigdecimal/static_assert.h +54 -0
  57. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal/jacobian.rb +92 -0
  58. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal/ludcmp.rb +91 -0
  59. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal/math.rb +948 -0
  60. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal/newton.rb +82 -0
  61. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal/util.rb +186 -0
  62. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal.rb +360 -0
  63. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/lib/bigdecimal.so +0 -0
  64. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/sample/linear.rb +74 -0
  65. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/sample/nlsolve.rb +40 -0
  66. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.0.1/sample/pi.rb +21 -0
  67. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/CHANGELOG.md +1314 -0
  68. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/CONTRIBUTING.md +144 -0
  69. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/MIT-LICENSE +20 -0
  70. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/README.md +384 -0
  71. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/SPEC.rdoc +258 -0
  72. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/auth/abstract/handler.rb +41 -0
  73. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/auth/abstract/request.rb +51 -0
  74. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/auth/basic.rb +58 -0
  75. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/bad_request.rb +8 -0
  76. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/body_proxy.rb +63 -0
  77. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/builder.rb +296 -0
  78. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/cascade.rb +67 -0
  79. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/common_logger.rb +89 -0
  80. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/conditional_get.rb +87 -0
  81. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/config.rb +22 -0
  82. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/constants.rb +68 -0
  83. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/content_length.rb +34 -0
  84. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/content_type.rb +33 -0
  85. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/deflater.rb +158 -0
  86. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/directory.rb +208 -0
  87. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/etag.rb +71 -0
  88. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/events.rb +172 -0
  89. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/files.rb +216 -0
  90. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/head.rb +25 -0
  91. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/headers.rb +238 -0
  92. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/lint.rb +964 -0
  93. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/lock.rb +29 -0
  94. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/media_type.rb +52 -0
  95. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/method_override.rb +56 -0
  96. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/mime.rb +694 -0
  97. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/mock.rb +3 -0
  98. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/mock_request.rb +161 -0
  99. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/mock_response.rb +156 -0
  100. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/multipart/generator.rb +99 -0
  101. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/multipart/parser.rb +580 -0
  102. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/multipart/uploaded_file.rb +82 -0
  103. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/multipart.rb +77 -0
  104. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/null_logger.rb +48 -0
  105. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/query_parser.rb +261 -0
  106. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/recursive.rb +66 -0
  107. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/reloader.rb +112 -0
  108. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/request.rb +790 -0
  109. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/response.rb +403 -0
  110. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/rewindable_input.rb +116 -0
  111. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/runtime.rb +35 -0
  112. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/sendfile.rb +197 -0
  113. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/show_exceptions.rb +409 -0
  114. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/show_status.rb +121 -0
  115. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/static.rb +188 -0
  116. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/tempfile_reaper.rb +33 -0
  117. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/urlmap.rb +99 -0
  118. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/utils.rb +622 -0
  119. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack/version.rb +17 -0
  120. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rack-3.2.5/lib/rack.rb +64 -0
  121. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/bin/rackup +5 -0
  122. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/handler/cgi.rb +61 -0
  123. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/handler/webrick.rb +196 -0
  124. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/handler.rb +113 -0
  125. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/lobster.rb +81 -0
  126. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/server.rb +462 -0
  127. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/stream.rb +199 -0
  128. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup/version.rb +8 -0
  129. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/lib/rackup.rb +21 -0
  130. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/license.md +80 -0
  131. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/readme.md +82 -0
  132. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/releases.md +28 -0
  133. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/rackup-2.3.1/security.md +3 -0
  134. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/MIT-LICENSE +19 -0
  135. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/bin/sequel +280 -0
  136. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/ado/access.rb +335 -0
  137. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/ado/mssql.rb +62 -0
  138. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/ado.rb +283 -0
  139. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/amalgalite.rb +184 -0
  140. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/ibmdb.rb +423 -0
  141. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/db2.rb +83 -0
  142. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/derby.rb +318 -0
  143. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/h2.rb +290 -0
  144. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/hsqldb.rb +228 -0
  145. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/jtds.rb +39 -0
  146. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/mssql.rb +30 -0
  147. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/mysql.rb +89 -0
  148. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/oracle.rb +146 -0
  149. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/postgresql.rb +239 -0
  150. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/sqlanywhere.rb +87 -0
  151. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/sqlite.rb +133 -0
  152. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/sqlserver.rb +92 -0
  153. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc/transactions.rb +95 -0
  154. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/jdbc.rb +850 -0
  155. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/mock.rb +381 -0
  156. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/mysql.rb +380 -0
  157. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/mysql2.rb +307 -0
  158. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/odbc/db2.rb +11 -0
  159. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/odbc/mssql.rb +57 -0
  160. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/odbc/oracle.rb +11 -0
  161. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/odbc.rb +150 -0
  162. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/oracle.rb +427 -0
  163. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/postgres.rb +863 -0
  164. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/postgresql.rb +3 -0
  165. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/access.rb +301 -0
  166. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/db2.rb +509 -0
  167. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/mssql.rb +1238 -0
  168. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/mysql.rb +1175 -0
  169. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/oracle.rb +732 -0
  170. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/postgres.rb +3022 -0
  171. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/sqlanywhere.rb +470 -0
  172. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/shared/sqlite.rb +1073 -0
  173. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/sqlanywhere.rb +192 -0
  174. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/sqlite.rb +475 -0
  175. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/tinytds.rb +259 -0
  176. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/trilogy.rb +116 -0
  177. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/columns_limit_1.rb +22 -0
  178. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/emulate_offset_with_reverse_and_count.rb +74 -0
  179. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/emulate_offset_with_row_number.rb +93 -0
  180. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/mysql_mysql2.rb +87 -0
  181. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/mysql_prepared_statements.rb +56 -0
  182. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/replace.rb +35 -0
  183. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/split_alter_table.rb +46 -0
  184. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/stored_procedures.rb +61 -0
  185. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/adapters/utils/unmodified_identifiers.rb +28 -0
  186. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/ast_transformer.rb +132 -0
  187. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/sharded_single.rb +113 -0
  188. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/sharded_threaded.rb +392 -0
  189. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/sharded_timed_queue.rb +399 -0
  190. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/single.rb +57 -0
  191. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/threaded.rb +307 -0
  192. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool/timed_queue.rb +288 -0
  193. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/connection_pool.rb +175 -0
  194. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/core.rb +476 -0
  195. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/connecting.rb +349 -0
  196. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/dataset.rb +89 -0
  197. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/dataset_defaults.rb +93 -0
  198. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/features.rb +150 -0
  199. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/logging.rb +91 -0
  200. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/misc.rb +663 -0
  201. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/query.rb +436 -0
  202. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/schema_generator.rb +720 -0
  203. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/schema_methods.rb +1157 -0
  204. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database/transactions.rb +552 -0
  205. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/database.rb +37 -0
  206. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/actions.rb +1412 -0
  207. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/dataset_module.rb +46 -0
  208. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/deprecated_singleton_class_methods.rb +42 -0
  209. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/features.rb +284 -0
  210. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/graph.rb +297 -0
  211. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/misc.rb +381 -0
  212. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/placeholder_literalizer.rb +230 -0
  213. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/prepared_statements.rb +474 -0
  214. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/query.rb +1571 -0
  215. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset/sql.rb +1863 -0
  216. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/dataset.rb +60 -0
  217. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/deprecated.rb +70 -0
  218. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/exceptions.rb +130 -0
  219. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/_model_constraint_validations.rb +16 -0
  220. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/_model_pg_row.rb +31 -0
  221. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/_pretty_table.rb +85 -0
  222. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/any_not_empty.rb +45 -0
  223. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/arbitrary_servers.rb +114 -0
  224. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/async_thread_pool.rb +446 -0
  225. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/auto_cast_date_and_time.rb +94 -0
  226. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/auto_literal_strings.rb +74 -0
  227. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/blank.rb +57 -0
  228. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/caller_logging.rb +80 -0
  229. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/columns_introspection.rb +88 -0
  230. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/connection_checkout_event_callback.rb +151 -0
  231. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/connection_expiration.rb +105 -0
  232. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/connection_validator.rb +133 -0
  233. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/constant_sql_override.rb +65 -0
  234. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/constraint_validations.rb +510 -0
  235. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/core_extensions.rb +222 -0
  236. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/core_refinements.rb +244 -0
  237. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/current_datetime_timestamp.rb +59 -0
  238. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/dataset_run.rb +41 -0
  239. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/dataset_source_alias.rb +95 -0
  240. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/date_arithmetic.rb +254 -0
  241. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/date_parse_input_handler.rb +67 -0
  242. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/datetime_parse_to_time.rb +41 -0
  243. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/duplicate_columns_handler.rb +95 -0
  244. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/empty_array_consider_nulls.rb +46 -0
  245. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/error_sql.rb +76 -0
  246. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/escaped_like.rb +100 -0
  247. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/eval_inspect.rb +185 -0
  248. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/exclude_or_null.rb +68 -0
  249. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/fiber_concurrency.rb +24 -0
  250. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/freeze_datasets.rb +3 -0
  251. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/from_block.rb +3 -0
  252. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/graph_each.rb +88 -0
  253. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/identifier_mangling.rb +180 -0
  254. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/implicit_subquery.rb +48 -0
  255. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/index_caching.rb +113 -0
  256. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/inflector.rb +258 -0
  257. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/integer64.rb +32 -0
  258. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/is_distinct_from.rb +141 -0
  259. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/looser_typecasting.rb +50 -0
  260. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/migration.rb +867 -0
  261. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/mssql_emulate_lateral_with_apply.rb +84 -0
  262. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/named_timezones.rb +184 -0
  263. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/no_auto_literal_strings.rb +4 -0
  264. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/null_dataset.rb +109 -0
  265. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pagination.rb +140 -0
  266. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_array.rb +556 -0
  267. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_array_ops.rb +377 -0
  268. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_auto_parameterize.rb +516 -0
  269. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_auto_parameterize_duplicate_query_detection.rb +191 -0
  270. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_auto_parameterize_in_array.rb +194 -0
  271. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_enum.rb +199 -0
  272. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_extended_date_support.rb +261 -0
  273. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_extended_integer_support.rb +116 -0
  274. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_hstore.rb +353 -0
  275. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_hstore_ops.rb +418 -0
  276. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_inet.rb +136 -0
  277. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_inet_ops.rb +204 -0
  278. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_interval.rb +224 -0
  279. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_json.rb +644 -0
  280. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_json_ops.rb +1460 -0
  281. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_loose_count.rb +39 -0
  282. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_multirange.rb +367 -0
  283. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_range.rb +572 -0
  284. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_range_ops.rb +195 -0
  285. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_row.rb +585 -0
  286. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_row_ops.rb +217 -0
  287. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_schema_caching.rb +90 -0
  288. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_static_cache_updater.rb +144 -0
  289. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pg_timestamptz.rb +52 -0
  290. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/pretty_table.rb +40 -0
  291. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/provenance.rb +108 -0
  292. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/query.rb +85 -0
  293. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/query_blocker.rb +172 -0
  294. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/round_timestamps.rb +49 -0
  295. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/run_transaction_hooks.rb +72 -0
  296. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/s.rb +60 -0
  297. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/schema_caching.rb +103 -0
  298. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/schema_dumper.rb +550 -0
  299. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/select_remove.rb +52 -0
  300. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/sequel_4_dataset_methods.rb +85 -0
  301. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/server_block.rb +179 -0
  302. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/server_logging.rb +61 -0
  303. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/set_literalizer.rb +39 -0
  304. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/split_array_nil.rb +80 -0
  305. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/sql_comments.rb +203 -0
  306. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/sql_expr.rb +23 -0
  307. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/sql_log_normalizer.rb +108 -0
  308. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/sqlite_json_ops.rb +313 -0
  309. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/stdio_logger.rb +48 -0
  310. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/string_agg.rb +194 -0
  311. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/string_date_time.rb +48 -0
  312. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/symbol_aref.rb +55 -0
  313. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/symbol_aref_refinement.rb +43 -0
  314. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/symbol_as.rb +23 -0
  315. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/symbol_as_refinement.rb +37 -0
  316. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/synchronize_sql.rb +45 -0
  317. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/temporarily_release_connection.rb +178 -0
  318. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/thread_local_timezones.rb +59 -0
  319. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/to_dot.rb +169 -0
  320. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/transaction_connection_validator.rb +78 -0
  321. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/extensions/virtual_row_method_block.rb +45 -0
  322. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/associations.rb +4066 -0
  323. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/base.rb +2360 -0
  324. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/dataset_module.rb +36 -0
  325. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/default_inflections.rb +47 -0
  326. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/errors.rb +67 -0
  327. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/exceptions.rb +67 -0
  328. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/inflections.rb +151 -0
  329. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model/plugins.rb +165 -0
  330. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/model.rb +85 -0
  331. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/accessed_columns.rb +63 -0
  332. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/active_model.rb +124 -0
  333. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/after_initialize.rb +39 -0
  334. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/association_dependencies.rb +106 -0
  335. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/association_lazy_eager_option.rb +66 -0
  336. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/association_multi_add_remove.rb +85 -0
  337. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/association_pks.rb +316 -0
  338. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/association_proxies.rb +131 -0
  339. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/async_thread_pool.rb +39 -0
  340. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/auto_restrict_eager_graph.rb +62 -0
  341. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/auto_validations.rb +302 -0
  342. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/auto_validations_constraint_validations_presence_message.rb +68 -0
  343. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/before_after_save.rb +8 -0
  344. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/blacklist_security.rb +104 -0
  345. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/boolean_readers.rb +59 -0
  346. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/boolean_subsets.rb +64 -0
  347. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/caching.rb +164 -0
  348. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/class_table_inheritance.rb +439 -0
  349. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/class_table_inheritance_constraint_validations.rb +82 -0
  350. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/column_conflicts.rb +108 -0
  351. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/column_encryption.rb +749 -0
  352. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/column_select.rb +61 -0
  353. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/columns_updated.rb +42 -0
  354. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/composition.rb +205 -0
  355. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/concurrent_eager_loading.rb +174 -0
  356. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/constraint_validations.rb +259 -0
  357. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/csv_serializer.rb +196 -0
  358. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/dataset_associations.rb +152 -0
  359. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/def_dataset_method.rb +90 -0
  360. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/defaults_setter.rb +158 -0
  361. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/delay_add_association.rb +53 -0
  362. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/deprecated_associations.rb +151 -0
  363. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/detect_unnecessary_association_options.rb +164 -0
  364. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/dirty.rb +276 -0
  365. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/eager_each.rb +88 -0
  366. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/eager_graph_eager.rb +139 -0
  367. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/empty_failure_backtraces.rb +38 -0
  368. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/enum.rb +124 -0
  369. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/error_splitter.rb +61 -0
  370. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/finder.rb +248 -0
  371. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/forbid_lazy_load.rb +229 -0
  372. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/force_encoding.rb +78 -0
  373. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/hook_class_methods.rb +110 -0
  374. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/input_transformer.rb +89 -0
  375. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/insert_conflict.rb +76 -0
  376. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/insert_returning_select.rb +81 -0
  377. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/inspect_pk.rb +44 -0
  378. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/instance_filters.rb +138 -0
  379. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/instance_hooks.rb +115 -0
  380. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/instance_specific_default.rb +113 -0
  381. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/inverted_subsets.rb +60 -0
  382. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/json_serializer.rb +445 -0
  383. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/lazy_attributes.rb +126 -0
  384. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/list.rb +208 -0
  385. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/many_through_many.rb +437 -0
  386. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/modification_detection.rb +102 -0
  387. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/mssql_optimistic_locking.rb +65 -0
  388. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/nested_attributes.rb +340 -0
  389. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/optimistic_locking.rb +54 -0
  390. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/optimistic_locking_base.rb +55 -0
  391. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/paged_operations.rb +184 -0
  392. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_array_associations.rb +580 -0
  393. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_auto_constraint_validations.rb +361 -0
  394. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_auto_validate_enums.rb +88 -0
  395. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_eager_any_typed_array.rb +95 -0
  396. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_row.rb +79 -0
  397. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/pg_xmin_optimistic_locking.rb +109 -0
  398. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/prepared_statements.rb +196 -0
  399. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/prepared_statements_safe.rb +82 -0
  400. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/primary_key_lookup_check_values.rb +154 -0
  401. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/rcte_tree.rb +343 -0
  402. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/require_valid_schema.rb +67 -0
  403. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/serialization.rb +242 -0
  404. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/serialization_modification_detection.rb +87 -0
  405. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/sharding.rb +126 -0
  406. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/single_statement_dataset_destroy.rb +49 -0
  407. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/single_table_inheritance.rb +271 -0
  408. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/singular_table_names.rb +33 -0
  409. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/skip_create_refresh.rb +37 -0
  410. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/skip_saving_columns.rb +108 -0
  411. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/split_values.rb +81 -0
  412. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/sql_comments.rb +194 -0
  413. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/static_cache.rb +315 -0
  414. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/static_cache_cache.rb +94 -0
  415. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/string_stripper.rb +59 -0
  416. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/subclasses.rb +96 -0
  417. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/subset_conditions.rb +128 -0
  418. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/subset_static_cache.rb +278 -0
  419. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/table_select.rb +50 -0
  420. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/tactical_eager_loading.rb +216 -0
  421. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/throw_failures.rb +110 -0
  422. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/timestamps.rb +109 -0
  423. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/touch.rb +153 -0
  424. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/tree.rb +188 -0
  425. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/typecast_on_load.rb +90 -0
  426. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/unlimited_update.rb +27 -0
  427. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/unused_associations.rb +529 -0
  428. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/update_or_create.rb +64 -0
  429. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/update_primary_key.rb +72 -0
  430. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/update_refresh.rb +88 -0
  431. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/uuid.rb +70 -0
  432. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/validate_associated.rb +85 -0
  433. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/validation_class_methods.rb +460 -0
  434. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/validation_contexts.rb +49 -0
  435. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/validation_helpers.rb +351 -0
  436. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/validation_helpers_generic_type_messages.rb +73 -0
  437. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/whitelist_security.rb +122 -0
  438. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/plugins/xml_serializer.rb +411 -0
  439. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/sql.rb +2061 -0
  440. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/timezones.rb +254 -0
  441. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel/version.rb +25 -0
  442. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sequel-5.102.0/lib/sequel.rb +3 -0
  443. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/CHANGELOG.md +1014 -0
  444. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/CONTRIBUTING.md +60 -0
  445. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/FAQ.md +399 -0
  446. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/INSTALLATION.md +267 -0
  447. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/LICENSE +23 -0
  448. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/README.md +198 -0
  449. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/dependencies.yml +13 -0
  450. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/aggregator.c +270 -0
  451. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/aggregator.h +10 -0
  452. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/backup.c +190 -0
  453. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/backup.h +15 -0
  454. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/database.c +1006 -0
  455. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/database.h +28 -0
  456. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/exception.c +122 -0
  457. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/exception.h +12 -0
  458. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/extconf.rb +297 -0
  459. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/sqlite3.c +225 -0
  460. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/sqlite3_ruby.h +48 -0
  461. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/statement.c +739 -0
  462. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/statement.h +17 -0
  463. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/ext/sqlite3/timespec.h +20 -0
  464. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/3.2/sqlite3_native.so +0 -0
  465. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/3.3/sqlite3_native.so +0 -0
  466. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/3.4/sqlite3_native.so +0 -0
  467. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/4.0/sqlite3_native.so +0 -0
  468. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/constants.rb +198 -0
  469. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/database.rb +798 -0
  470. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/errors.rb +88 -0
  471. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/fork_safety.rb +66 -0
  472. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/pragmas.rb +648 -0
  473. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/resultset.rb +96 -0
  474. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/statement.rb +190 -0
  475. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/value.rb +54 -0
  476. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/version.rb +4 -0
  477. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3/version_info.rb +17 -0
  478. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/sqlite3-2.9.1-x64-mingw-ucrt/lib/sqlite3.rb +19 -0
  479. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/Gemfile +10 -0
  480. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/LICENSE.txt +22 -0
  481. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/README.md +63 -0
  482. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/Rakefile +10 -0
  483. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/accesslog.rb +157 -0
  484. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/cgi.rb +313 -0
  485. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/compat.rb +36 -0
  486. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/config.rb +158 -0
  487. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/cookie.rb +172 -0
  488. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/htmlutils.rb +30 -0
  489. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/authenticator.rb +117 -0
  490. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/basicauth.rb +116 -0
  491. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/digestauth.rb +395 -0
  492. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/htdigest.rb +132 -0
  493. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/htgroup.rb +97 -0
  494. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/htpasswd.rb +158 -0
  495. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth/userdb.rb +53 -0
  496. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpauth.rb +96 -0
  497. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpproxy.rb +354 -0
  498. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httprequest.rb +668 -0
  499. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpresponse.rb +588 -0
  500. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/https.rb +152 -0
  501. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpserver.rb +294 -0
  502. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/abstract.rb +152 -0
  503. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  504. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/cgihandler.rb +126 -0
  505. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/erbhandler.rb +88 -0
  506. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/filehandler.rb +552 -0
  507. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet/prochandler.rb +48 -0
  508. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpservlet.rb +23 -0
  509. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpstatus.rb +194 -0
  510. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httputils.rb +543 -0
  511. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/httpversion.rb +76 -0
  512. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/log.rb +156 -0
  513. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/server.rb +380 -0
  514. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/ssl.rb +219 -0
  515. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/utils.rb +265 -0
  516. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick/version.rb +18 -0
  517. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/lib/webrick.rb +232 -0
  518. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/accesslog.rbs +24 -0
  519. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/cgi.rbs +92 -0
  520. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/compat.rbs +18 -0
  521. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/config.rbs +17 -0
  522. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/cookie.rbs +37 -0
  523. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/htmlutils.rbs +5 -0
  524. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/authenticator.rbs +55 -0
  525. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/basicauth.rbs +29 -0
  526. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/digestauth.rbs +85 -0
  527. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/htdigest.rbs +31 -0
  528. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/htgroup.rbs +21 -0
  529. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/htpasswd.rbs +31 -0
  530. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth/userdb.rbs +13 -0
  531. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpauth.rbs +13 -0
  532. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpproxy.rbs +61 -0
  533. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httprequest.rbs +167 -0
  534. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpresponse.rbs +117 -0
  535. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/https.rbs +49 -0
  536. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpserver.rbs +71 -0
  537. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/abstract.rbs +36 -0
  538. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/cgi_runner.rbs +3 -0
  539. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/cgihandler.rbs +23 -0
  540. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/erbhandler.rbs +17 -0
  541. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/filehandler.rbs +76 -0
  542. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet/prochandler.rbs +21 -0
  543. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpservlet.rbs +4 -0
  544. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpstatus.rbs +255 -0
  545. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httputils.rbs +116 -0
  546. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/httpversion.rbs +17 -0
  547. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/log.rbs +93 -0
  548. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/manifest.yaml +8 -0
  549. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/server.rbs +57 -0
  550. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/ssl.rbs +19 -0
  551. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/utils.rbs +122 -0
  552. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/sig/version.rbs +3 -0
  553. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.2/webrick.gemspec +105 -0
  554. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/bigdecimal-4.0.1.gemspec +25 -0
  555. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/rack-3.2.5.gemspec +31 -0
  556. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/rackup-2.3.1.gemspec +26 -0
  557. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/sequel-5.102.0.gemspec +36 -0
  558. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/sqlite3-2.9.1-x64-mingw-ucrt.gemspec +25 -0
  559. data/examples/demo_crud/vendor/bundle/ruby/3.4.0/specifications/webrick-1.9.2.gemspec +22 -0
  560. data/lib/serrano/application.rb +36 -0
  561. data/lib/serrano/cli/base.rb +92 -0
  562. data/lib/serrano/cli/generate.rb +285 -0
  563. data/lib/serrano/cli/templates/controller.rb.tt +92 -0
  564. data/lib/serrano/cli/templates/entity.rb.tt +43 -0
  565. data/lib/serrano/cli/templates/entity_validatable.rb.tt +136 -0
  566. data/lib/serrano/cli/templates/migration.rb.tt +19 -0
  567. data/lib/serrano/cli/templates/new_default_config.ru.tt +6 -0
  568. data/lib/serrano/cli/templates/new_default_db.rb.tt +3 -0
  569. data/lib/serrano/cli/templates/new_default_gemfile.tt +6 -0
  570. data/lib/serrano/cli/templates/new_minimal_config.ru.tt +5 -0
  571. data/lib/serrano/cli/templates/new_minimal_gemfile.tt +4 -0
  572. data/lib/serrano/cli/templates/new_project_config.ru.tt +8 -0
  573. data/lib/serrano/cli/templates/new_project_db.rb.tt +3 -0
  574. data/lib/serrano/cli/templates/new_project_gemfile.tt +8 -0
  575. data/lib/serrano/cli/templates/repository.rb.tt +42 -0
  576. data/lib/serrano/cli/templates/service_create.rb.tt +40 -0
  577. data/lib/serrano/cli/templates/service_destroy.rb.tt +20 -0
  578. data/lib/serrano/cli/templates/service_generic.rb.tt +15 -0
  579. data/lib/serrano/cli/templates/service_index.rb.tt +17 -0
  580. data/lib/serrano/cli/templates/service_show.rb.tt +20 -0
  581. data/lib/serrano/cli/templates/service_update.rb.tt +41 -0
  582. data/lib/serrano/dispatcher.rb +53 -0
  583. data/lib/serrano/request.rb +78 -0
  584. data/lib/serrano/response.rb +33 -0
  585. data/lib/serrano/router.rb +80 -0
  586. data/lib/serrano/version.rb +5 -0
  587. data/lib/serrano.rb +11 -0
  588. metadata +768 -0
@@ -0,0 +1,669 @@
1
+ have_builtin_func: checking for __builtin_clz()... -------------------- yes
2
+
3
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
4
+ checked program was:
5
+ /* begin */
6
+ 1: #include "ruby.h"
7
+ 2:
8
+ 3: #include <winsock2.h>
9
+ 4: #include <windows.h>
10
+ 5: int main(int argc, char **argv)
11
+ 6: {
12
+ 7: return !!argv[argc];
13
+ 8: }
14
+ /* end */
15
+
16
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
17
+ checked program was:
18
+ /* begin */
19
+ 1: #include "ruby.h"
20
+ 2:
21
+ 3: #include <winsock2.h>
22
+ 4: #include <windows.h>
23
+ 5: int foo;
24
+ 6: int main() { __builtin_clz(0); return 0; }
25
+ /* end */
26
+
27
+ --------------------
28
+
29
+ have_builtin_func: checking for __builtin_clzl()... -------------------- yes
30
+
31
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
32
+ checked program was:
33
+ /* begin */
34
+ 1: #include "ruby.h"
35
+ 2:
36
+ 3: #include <winsock2.h>
37
+ 4: #include <windows.h>
38
+ 5: int foo;
39
+ 6: int main() { __builtin_clzl(0); return 0; }
40
+ /* end */
41
+
42
+ --------------------
43
+
44
+ have_builtin_func: checking for __builtin_clzll()... -------------------- yes
45
+
46
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
47
+ checked program was:
48
+ /* begin */
49
+ 1: #include "ruby.h"
50
+ 2:
51
+ 3: #include <winsock2.h>
52
+ 4: #include <windows.h>
53
+ 5: int foo;
54
+ 6: int main() { __builtin_clzll(0); return 0; }
55
+ /* end */
56
+
57
+ --------------------
58
+
59
+ have_header: checking for float.h... -------------------- yes
60
+
61
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
62
+ checked program was:
63
+ /* begin */
64
+ 1: #include "ruby.h"
65
+ 2:
66
+ 3: #include <winsock2.h>
67
+ 4: #include <windows.h>
68
+ 5: #include <float.h>
69
+ /* end */
70
+
71
+ --------------------
72
+
73
+ have_header: checking for math.h... -------------------- yes
74
+
75
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
76
+ checked program was:
77
+ /* begin */
78
+ 1: #include "ruby.h"
79
+ 2:
80
+ 3: #include <winsock2.h>
81
+ 4: #include <windows.h>
82
+ 5: #include <math.h>
83
+ /* end */
84
+
85
+ --------------------
86
+
87
+ have_header: checking for stdbool.h... -------------------- yes
88
+
89
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
90
+ checked program was:
91
+ /* begin */
92
+ 1: #include "ruby.h"
93
+ 2:
94
+ 3: #include <winsock2.h>
95
+ 4: #include <windows.h>
96
+ 5: #include <stdbool.h>
97
+ /* end */
98
+
99
+ --------------------
100
+
101
+ have_header: checking for stdlib.h... -------------------- yes
102
+
103
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
104
+ checked program was:
105
+ /* begin */
106
+ 1: #include "ruby.h"
107
+ 2:
108
+ 3: #include <winsock2.h>
109
+ 4: #include <windows.h>
110
+ 5: #include <stdlib.h>
111
+ /* end */
112
+
113
+ --------------------
114
+
115
+ have_header: checking for x86intrin.h... -------------------- yes
116
+
117
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
118
+ checked program was:
119
+ /* begin */
120
+ 1: #include "ruby.h"
121
+ 2:
122
+ 3: #include <winsock2.h>
123
+ 4: #include <windows.h>
124
+ 5: #include <x86intrin.h>
125
+ /* end */
126
+
127
+ --------------------
128
+
129
+ have_func: checking for _lzcnt_u32() in x86intrin.h... -------------------- no
130
+
131
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
132
+ C:/Ruby34-x64/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/15.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\jeesu\AppData\Local\Temp\ccHvx170.o:conftest.c:(.rdata$.refptr._lzcnt_u32[.refptr._lzcnt_u32]+0x0): undefined reference to `_lzcnt_u32'
133
+ collect2.exe: error: ld returned 1 exit status
134
+ checked program was:
135
+ /* begin */
136
+ 1: #include "ruby.h"
137
+ 2:
138
+ 3: #include <winsock2.h>
139
+ 4: #include <windows.h>
140
+ 5: #include <x86intrin.h>
141
+ 6:
142
+ 7: /*top*/
143
+ 8: extern int t(void);
144
+ 9: int main(int argc, char **argv)
145
+ 10: {
146
+ 11: if (argc > 1000000) {
147
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
148
+ 13: printf("%d", (*tp)());
149
+ 14: }
150
+ 15:
151
+ 16: return !!argv[argc];
152
+ 17: }
153
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))_lzcnt_u32; return !p; }
154
+ /* end */
155
+
156
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
157
+ conftest.c:18:13: error: conflicting types for '_lzcnt_u32'; have 'void(void)'
158
+ 18 | extern void _lzcnt_u32();
159
+ | ^~~~~~~~~~
160
+ In file included from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86gprintrin.h:61,
161
+ from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86intrin.h:27,
162
+ from C:/Ruby34-x64/msys64/ucrt64/include/winnt.h:1695,
163
+ from C:/Ruby34-x64/msys64/ucrt64/include/minwindef.h:163,
164
+ from C:/Ruby34-x64/msys64/ucrt64/include/windef.h:9,
165
+ from C:/Ruby34-x64/msys64/ucrt64/include/windows.h:69,
166
+ from C:/Ruby34-x64/msys64/ucrt64/include/winsock2.h:23,
167
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/win32.h:36,
168
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/internal/dosish.h:38,
169
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/defines.h:78,
170
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/ruby.h:25,
171
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby.h:38,
172
+ from conftest.c:1:
173
+ C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/lzcntintrin.h:51:1: note: previous definition of '_lzcnt_u32' with type 'unsigned int(unsigned int)'
174
+ 51 | _lzcnt_u32 (unsigned int __X)
175
+ | ^~~~~~~~~~
176
+ checked program was:
177
+ /* begin */
178
+ 1: #include "ruby.h"
179
+ 2:
180
+ 3: #include <winsock2.h>
181
+ 4: #include <windows.h>
182
+ 5: #include <x86intrin.h>
183
+ 6:
184
+ 7: /*top*/
185
+ 8: extern int t(void);
186
+ 9: int main(int argc, char **argv)
187
+ 10: {
188
+ 11: if (argc > 1000000) {
189
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
190
+ 13: printf("%d", (*tp)());
191
+ 14: }
192
+ 15:
193
+ 16: return !!argv[argc];
194
+ 17: }
195
+ 18: extern void _lzcnt_u32();
196
+ 19: int t(void) { _lzcnt_u32(); return 0; }
197
+ /* end */
198
+
199
+ --------------------
200
+
201
+ have_func: checking for _lzcnt_u64() in x86intrin.h... -------------------- no
202
+
203
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
204
+ C:/Ruby34-x64/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/15.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\jeesu\AppData\Local\Temp\cc8jVhZs.o:conftest.c:(.rdata$.refptr._lzcnt_u64[.refptr._lzcnt_u64]+0x0): undefined reference to `_lzcnt_u64'
205
+ collect2.exe: error: ld returned 1 exit status
206
+ checked program was:
207
+ /* begin */
208
+ 1: #include "ruby.h"
209
+ 2:
210
+ 3: #include <winsock2.h>
211
+ 4: #include <windows.h>
212
+ 5: #include <x86intrin.h>
213
+ 6:
214
+ 7: /*top*/
215
+ 8: extern int t(void);
216
+ 9: int main(int argc, char **argv)
217
+ 10: {
218
+ 11: if (argc > 1000000) {
219
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
220
+ 13: printf("%d", (*tp)());
221
+ 14: }
222
+ 15:
223
+ 16: return !!argv[argc];
224
+ 17: }
225
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))_lzcnt_u64; return !p; }
226
+ /* end */
227
+
228
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
229
+ conftest.c:18:13: error: conflicting types for '_lzcnt_u64'; have 'void(void)'
230
+ 18 | extern void _lzcnt_u64();
231
+ | ^~~~~~~~~~
232
+ In file included from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86gprintrin.h:61,
233
+ from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86intrin.h:27,
234
+ from C:/Ruby34-x64/msys64/ucrt64/include/winnt.h:1695,
235
+ from C:/Ruby34-x64/msys64/ucrt64/include/minwindef.h:163,
236
+ from C:/Ruby34-x64/msys64/ucrt64/include/windef.h:9,
237
+ from C:/Ruby34-x64/msys64/ucrt64/include/windows.h:69,
238
+ from C:/Ruby34-x64/msys64/ucrt64/include/winsock2.h:23,
239
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/win32.h:36,
240
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/internal/dosish.h:38,
241
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/defines.h:78,
242
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/ruby.h:25,
243
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby.h:38,
244
+ from conftest.c:1:
245
+ C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/lzcntintrin.h:64:1: note: previous definition of '_lzcnt_u64' with type 'long long unsigned int(long long unsigned int)'
246
+ 64 | _lzcnt_u64 (unsigned long long __X)
247
+ | ^~~~~~~~~~
248
+ checked program was:
249
+ /* begin */
250
+ 1: #include "ruby.h"
251
+ 2:
252
+ 3: #include <winsock2.h>
253
+ 4: #include <windows.h>
254
+ 5: #include <x86intrin.h>
255
+ 6:
256
+ 7: /*top*/
257
+ 8: extern int t(void);
258
+ 9: int main(int argc, char **argv)
259
+ 10: {
260
+ 11: if (argc > 1000000) {
261
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
262
+ 13: printf("%d", (*tp)());
263
+ 14: }
264
+ 15:
265
+ 16: return !!argv[argc];
266
+ 17: }
267
+ 18: extern void _lzcnt_u64();
268
+ 19: int t(void) { _lzcnt_u64(); return 0; }
269
+ /* end */
270
+
271
+ --------------------
272
+
273
+ have_header: checking for intrin.h... -------------------- yes
274
+
275
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
276
+ checked program was:
277
+ /* begin */
278
+ 1: #include "ruby.h"
279
+ 2:
280
+ 3: #include <winsock2.h>
281
+ 4: #include <windows.h>
282
+ 5: #include <intrin.h>
283
+ /* end */
284
+
285
+ --------------------
286
+
287
+ have_func: checking for __lzcnt() in intrin.h... -------------------- no
288
+
289
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
290
+ conftest.c: In function 't':
291
+ conftest.c:18:57: error: '__lzcnt' undeclared (first use in this function); did you mean '__lzcnt64'?
292
+ 18 | int t(void) { void ((*volatile p)()); p = (void ((*)()))__lzcnt; return !p; }
293
+ | ^~~~~~~
294
+ | __lzcnt64
295
+ conftest.c:18:57: note: each undeclared identifier is reported only once for each function it appears in
296
+ checked program was:
297
+ /* begin */
298
+ 1: #include "ruby.h"
299
+ 2:
300
+ 3: #include <winsock2.h>
301
+ 4: #include <windows.h>
302
+ 5: #include <intrin.h>
303
+ 6:
304
+ 7: /*top*/
305
+ 8: extern int t(void);
306
+ 9: int main(int argc, char **argv)
307
+ 10: {
308
+ 11: if (argc > 1000000) {
309
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
310
+ 13: printf("%d", (*tp)());
311
+ 14: }
312
+ 15:
313
+ 16: return !!argv[argc];
314
+ 17: }
315
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))__lzcnt; return !p; }
316
+ /* end */
317
+
318
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
319
+ C:/Ruby34-x64/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/15.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\jeesu\AppData\Local\Temp\cc3Ng5hs.o:conftest.c:(.text+0x5): undefined reference to `__lzcnt'
320
+ collect2.exe: error: ld returned 1 exit status
321
+ checked program was:
322
+ /* begin */
323
+ 1: #include "ruby.h"
324
+ 2:
325
+ 3: #include <winsock2.h>
326
+ 4: #include <windows.h>
327
+ 5: #include <intrin.h>
328
+ 6:
329
+ 7: /*top*/
330
+ 8: extern int t(void);
331
+ 9: int main(int argc, char **argv)
332
+ 10: {
333
+ 11: if (argc > 1000000) {
334
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
335
+ 13: printf("%d", (*tp)());
336
+ 14: }
337
+ 15:
338
+ 16: return !!argv[argc];
339
+ 17: }
340
+ 18: extern void __lzcnt();
341
+ 19: int t(void) { __lzcnt(); return 0; }
342
+ /* end */
343
+
344
+ --------------------
345
+
346
+ have_func: checking for __lzcnt64() in intrin.h... -------------------- no
347
+
348
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
349
+ C:/Ruby34-x64/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/15.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\jeesu\AppData\Local\Temp\cc26WXoQ.o:conftest.c:(.rdata$.refptr.__lzcnt64[.refptr.__lzcnt64]+0x0): undefined reference to `__lzcnt64'
350
+ collect2.exe: error: ld returned 1 exit status
351
+ checked program was:
352
+ /* begin */
353
+ 1: #include "ruby.h"
354
+ 2:
355
+ 3: #include <winsock2.h>
356
+ 4: #include <windows.h>
357
+ 5: #include <intrin.h>
358
+ 6:
359
+ 7: /*top*/
360
+ 8: extern int t(void);
361
+ 9: int main(int argc, char **argv)
362
+ 10: {
363
+ 11: if (argc > 1000000) {
364
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
365
+ 13: printf("%d", (*tp)());
366
+ 14: }
367
+ 15:
368
+ 16: return !!argv[argc];
369
+ 17: }
370
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))__lzcnt64; return !p; }
371
+ /* end */
372
+
373
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
374
+ conftest.c:18:13: error: conflicting types for '__lzcnt64'; have 'void(void)'
375
+ 18 | extern void __lzcnt64();
376
+ | ^~~~~~~~~
377
+ In file included from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86gprintrin.h:61,
378
+ from C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/x86intrin.h:27,
379
+ from C:/Ruby34-x64/msys64/ucrt64/include/winnt.h:1695,
380
+ from C:/Ruby34-x64/msys64/ucrt64/include/minwindef.h:163,
381
+ from C:/Ruby34-x64/msys64/ucrt64/include/windef.h:9,
382
+ from C:/Ruby34-x64/msys64/ucrt64/include/windows.h:69,
383
+ from C:/Ruby34-x64/msys64/ucrt64/include/winsock2.h:23,
384
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/win32.h:36,
385
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/internal/dosish.h:38,
386
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/defines.h:78,
387
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby/ruby.h:25,
388
+ from C:/Ruby34-x64/include/ruby-3.4.0/ruby.h:38,
389
+ from conftest.c:1:
390
+ C:/Ruby34-x64/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include/lzcntintrin.h:58:1: note: previous definition of '__lzcnt64' with type 'long long unsigned int(long long unsigned int)'
391
+ 58 | __lzcnt64 (unsigned long long __X)
392
+ | ^~~~~~~~~
393
+ checked program was:
394
+ /* begin */
395
+ 1: #include "ruby.h"
396
+ 2:
397
+ 3: #include <winsock2.h>
398
+ 4: #include <windows.h>
399
+ 5: #include <intrin.h>
400
+ 6:
401
+ 7: /*top*/
402
+ 8: extern int t(void);
403
+ 9: int main(int argc, char **argv)
404
+ 10: {
405
+ 11: if (argc > 1000000) {
406
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
407
+ 13: printf("%d", (*tp)());
408
+ 14: }
409
+ 15:
410
+ 16: return !!argv[argc];
411
+ 17: }
412
+ 18: extern void __lzcnt64();
413
+ 19: int t(void) { __lzcnt64(); return 0; }
414
+ /* end */
415
+
416
+ --------------------
417
+
418
+ have_func: checking for _BitScanReverse() in intrin.h... -------------------- yes
419
+
420
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
421
+ checked program was:
422
+ /* begin */
423
+ 1: #include "ruby.h"
424
+ 2:
425
+ 3: #include <winsock2.h>
426
+ 4: #include <windows.h>
427
+ 5: #include <intrin.h>
428
+ 6:
429
+ 7: /*top*/
430
+ 8: extern int t(void);
431
+ 9: int main(int argc, char **argv)
432
+ 10: {
433
+ 11: if (argc > 1000000) {
434
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
435
+ 13: printf("%d", (*tp)());
436
+ 14: }
437
+ 15:
438
+ 16: return !!argv[argc];
439
+ 17: }
440
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))_BitScanReverse; return !p; }
441
+ /* end */
442
+
443
+ --------------------
444
+
445
+ have_func: checking for _BitScanReverse64() in intrin.h... -------------------- yes
446
+
447
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
448
+ checked program was:
449
+ /* begin */
450
+ 1: #include "ruby.h"
451
+ 2:
452
+ 3: #include <winsock2.h>
453
+ 4: #include <windows.h>
454
+ 5: #include <intrin.h>
455
+ 6:
456
+ 7: /*top*/
457
+ 8: extern int t(void);
458
+ 9: int main(int argc, char **argv)
459
+ 10: {
460
+ 11: if (argc > 1000000) {
461
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
462
+ 13: printf("%d", (*tp)());
463
+ 14: }
464
+ 15:
465
+ 16: return !!argv[argc];
466
+ 17: }
467
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))_BitScanReverse64; return !p; }
468
+ /* end */
469
+
470
+ --------------------
471
+
472
+ have_header: checking for ruby/atomic.h... -------------------- yes
473
+
474
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
475
+ checked program was:
476
+ /* begin */
477
+ 1: #include "ruby.h"
478
+ 2:
479
+ 3: #include <winsock2.h>
480
+ 4: #include <windows.h>
481
+ 5: #include <ruby/atomic.h>
482
+ /* end */
483
+
484
+ --------------------
485
+
486
+ have_header: checking for ruby/internal/has/builtin.h... -------------------- yes
487
+
488
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
489
+ checked program was:
490
+ /* begin */
491
+ 1: #include "ruby.h"
492
+ 2:
493
+ 3: #include <winsock2.h>
494
+ 4: #include <windows.h>
495
+ 5: #include <ruby/internal/has/builtin.h>
496
+ /* end */
497
+
498
+ --------------------
499
+
500
+ have_header: checking for ruby/internal/static_assert.h... -------------------- yes
501
+
502
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
503
+ checked program was:
504
+ /* begin */
505
+ 1: #include "ruby.h"
506
+ 2:
507
+ 3: #include <winsock2.h>
508
+ 4: #include <windows.h>
509
+ 5: #include <ruby/internal/static_assert.h>
510
+ /* end */
511
+
512
+ --------------------
513
+
514
+ have_func: checking for rb_complex_real() in ruby.h... -------------------- yes
515
+
516
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
517
+ checked program was:
518
+ /* begin */
519
+ 1: #include "ruby.h"
520
+ 2:
521
+ 3: #include <winsock2.h>
522
+ 4: #include <windows.h>
523
+ 5: #include <ruby.h>
524
+ 6:
525
+ 7: /*top*/
526
+ 8: extern int t(void);
527
+ 9: int main(int argc, char **argv)
528
+ 10: {
529
+ 11: if (argc > 1000000) {
530
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
531
+ 13: printf("%d", (*tp)());
532
+ 14: }
533
+ 15:
534
+ 16: return !!argv[argc];
535
+ 17: }
536
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_complex_real; return !p; }
537
+ /* end */
538
+
539
+ --------------------
540
+
541
+ have_func: checking for rb_complex_imag() in ruby.h... -------------------- yes
542
+
543
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
544
+ checked program was:
545
+ /* begin */
546
+ 1: #include "ruby.h"
547
+ 2:
548
+ 3: #include <winsock2.h>
549
+ 4: #include <windows.h>
550
+ 5: #include <ruby.h>
551
+ 6:
552
+ 7: /*top*/
553
+ 8: extern int t(void);
554
+ 9: int main(int argc, char **argv)
555
+ 10: {
556
+ 11: if (argc > 1000000) {
557
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
558
+ 13: printf("%d", (*tp)());
559
+ 14: }
560
+ 15:
561
+ 16: return !!argv[argc];
562
+ 17: }
563
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_complex_imag; return !p; }
564
+ /* end */
565
+
566
+ --------------------
567
+
568
+ have_func: checking for rb_opts_exception_p() in ruby.h... -------------------- yes
569
+
570
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
571
+ conftest.c: In function 't':
572
+ conftest.c:18:57: error: 'rb_opts_exception_p' undeclared (first use in this function); did you mean 'rb_make_exception'?
573
+ 18 | int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_opts_exception_p; return !p; }
574
+ | ^~~~~~~~~~~~~~~~~~~
575
+ | rb_make_exception
576
+ conftest.c:18:57: note: each undeclared identifier is reported only once for each function it appears in
577
+ checked program was:
578
+ /* begin */
579
+ 1: #include "ruby.h"
580
+ 2:
581
+ 3: #include <winsock2.h>
582
+ 4: #include <windows.h>
583
+ 5: #include <ruby.h>
584
+ 6:
585
+ 7: /*top*/
586
+ 8: extern int t(void);
587
+ 9: int main(int argc, char **argv)
588
+ 10: {
589
+ 11: if (argc > 1000000) {
590
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
591
+ 13: printf("%d", (*tp)());
592
+ 14: }
593
+ 15:
594
+ 16: return !!argv[argc];
595
+ 17: }
596
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_opts_exception_p; return !p; }
597
+ /* end */
598
+
599
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
600
+ checked program was:
601
+ /* begin */
602
+ 1: #include "ruby.h"
603
+ 2:
604
+ 3: #include <winsock2.h>
605
+ 4: #include <windows.h>
606
+ 5: #include <ruby.h>
607
+ 6:
608
+ 7: /*top*/
609
+ 8: extern int t(void);
610
+ 9: int main(int argc, char **argv)
611
+ 10: {
612
+ 11: if (argc > 1000000) {
613
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
614
+ 13: printf("%d", (*tp)());
615
+ 14: }
616
+ 15:
617
+ 16: return !!argv[argc];
618
+ 17: }
619
+ 18: extern void rb_opts_exception_p();
620
+ 19: int t(void) { rb_opts_exception_p(); return 0; }
621
+ /* end */
622
+
623
+ --------------------
624
+
625
+ have_func: checking for rb_category_warn() in ruby.h... -------------------- yes
626
+
627
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -o conftest.exe -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong conftest.c -L. -LC:/Ruby34-x64/lib -L. -pipe -s -fstack-protector-strong -lpthread -Wl,--no-as-needed -lx64-ucrt-ruby340 -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt "
628
+ checked program was:
629
+ /* begin */
630
+ 1: #include "ruby.h"
631
+ 2:
632
+ 3: #include <winsock2.h>
633
+ 4: #include <windows.h>
634
+ 5: #include <ruby.h>
635
+ 6:
636
+ 7: /*top*/
637
+ 8: extern int t(void);
638
+ 9: int main(int argc, char **argv)
639
+ 10: {
640
+ 11: if (argc > 1000000) {
641
+ 12: int (* volatile tp)(void)=(int (*)(void))&t;
642
+ 13: printf("%d", (*tp)());
643
+ 14: }
644
+ 15:
645
+ 16: return !!argv[argc];
646
+ 17: }
647
+ 18: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_category_warn; return !p; }
648
+ /* end */
649
+
650
+ --------------------
651
+
652
+ have_const: checking for RB_WARN_CATEGORY_DEPRECATED in ruby.h... -------------------- yes
653
+
654
+ PATH=".;C:/Ruby34-x64/lib;C:\Ruby34-x64\bin;C:\Ruby34-x64\msys64\ucrt64\bin;C:\Ruby34-x64\msys64\usr\bin;C:\Users\jeesu\.codex\tmp\arg0\codex-arg0r130ng;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code;C:\Program Files\Alacritty\;C:\Program Files\Eclipse Adoptium\jdk-17.0.17.10-hotspot\bin;C:\Python314\Scripts\;C:\Python314\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Python312\Scripts\;C:\Python312\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Amazon\AWSCLIV2\;C:\ProgramData\chocolatey\bin;c:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Program Files\Go\bin;C:\Program Files\GitHub CLI\;C:\Program Files\nodejs\;C:\Program Files\UVtools\;C:\Program Files\Git\cmd;C:\Program Files\Tailscale\;C:\Program Files\WezTerm;C:\Ruby34-x64\bin;C:\Users\jeesu\.local\bin;C:\Users\jeesu\AppData\Local\Microsoft\WindowsApps;C:\Users\jeesu\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jeesu\AppData\Local\GitHubDesktop\bin;C:\Users\jeesu\AppData\Local\Programs\cursor\resources\app\bin;C:\Users\jeesu\go\bin;C:\Users\jeesu\AppData\Roaming\npm;C:\Users\jeesu\AppData\Local\Android\Sdk\platform-tools;C:\Users\jeesu\AppData\Local\Android\Sdk\emulator;C:\Users\jeesu\AppData\Local\Programs\Antigravity\bin;C:\Users\jeesu\AppData\Local\Programs\Ollama;C:\Users\jeesu\.bun\bin;c:\Users\jeesu\.vscode\extensions\openai.chatgpt-26.304.20706-win32-x64\bin\windows-x86_64" ASAN_OPTIONS=detect_leaks=0 "gcc -IC:/Ruby34-x64/include/ruby-3.4.0/x64-mingw-ucrt -IC:/Ruby34-x64/include/ruby-3.4.0/ruby/backward -IC:/Ruby34-x64/include/ruby-3.4.0 -I. -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -O3 -fstack-protector-strong -c conftest.c"
655
+ checked program was:
656
+ /* begin */
657
+ 1: #include "ruby.h"
658
+ 2:
659
+ 3: #include <winsock2.h>
660
+ 4: #include <windows.h>
661
+ 5: #include <ruby.h>
662
+ 6:
663
+ 7: /*top*/
664
+ 8: typedef int conftest_type;
665
+ 9: conftest_type conftestval = (int)RB_WARN_CATEGORY_DEPRECATED;
666
+ /* end */
667
+
668
+ --------------------
669
+