ffi 1.9.24 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (457) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +348 -0
  4. data/Gemfile +4 -5
  5. data/README.md +44 -17
  6. data/Rakefile +74 -148
  7. data/ext/ffi_c/AbstractMemory.c +89 -70
  8. data/ext/ffi_c/AbstractMemory.h +3 -2
  9. data/ext/ffi_c/ArrayType.c +49 -13
  10. data/ext/ffi_c/ArrayType.h +1 -0
  11. data/ext/ffi_c/Buffer.c +90 -38
  12. data/ext/ffi_c/Call.c +55 -56
  13. data/ext/ffi_c/Call.h +12 -6
  14. data/ext/ffi_c/ClosurePool.c +333 -0
  15. data/ext/ffi_c/{Closure.h → ClosurePool.h} +25 -13
  16. data/ext/ffi_c/DynamicLibrary.c +91 -33
  17. data/ext/ffi_c/Function.c +306 -235
  18. data/ext/ffi_c/Function.h +3 -5
  19. data/ext/ffi_c/FunctionInfo.c +87 -32
  20. data/ext/ffi_c/LastError.c +74 -15
  21. data/ext/ffi_c/LongDouble.c +12 -10
  22. data/ext/ffi_c/LongDouble.h +0 -4
  23. data/ext/ffi_c/MappedType.c +66 -23
  24. data/ext/ffi_c/MappedType.h +0 -2
  25. data/ext/ffi_c/MemoryPointer.c +37 -15
  26. data/ext/ffi_c/MemoryPointer.h +0 -4
  27. data/ext/ffi_c/MethodHandle.c +265 -38
  28. data/ext/ffi_c/MethodHandle.h +3 -2
  29. data/ext/ffi_c/Platform.c +5 -56
  30. data/ext/ffi_c/Pointer.c +93 -55
  31. data/ext/ffi_c/Pointer.h +1 -4
  32. data/ext/ffi_c/Struct.c +202 -134
  33. data/ext/ffi_c/Struct.h +18 -9
  34. data/ext/ffi_c/StructByValue.c +50 -23
  35. data/ext/ffi_c/StructLayout.c +135 -64
  36. data/ext/ffi_c/Thread.c +4 -228
  37. data/ext/ffi_c/Thread.h +1 -20
  38. data/ext/ffi_c/Type.c +105 -55
  39. data/ext/ffi_c/Type.h +3 -2
  40. data/ext/ffi_c/Types.c +8 -9
  41. data/ext/ffi_c/Types.h +3 -4
  42. data/ext/ffi_c/Variadic.c +88 -47
  43. data/ext/ffi_c/compat.h +26 -22
  44. data/ext/ffi_c/extconf.rb +75 -32
  45. data/ext/ffi_c/ffi.c +9 -10
  46. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  47. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  48. data/ext/ffi_c/libffi/.appveyor.yml +53 -19
  49. data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
  50. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  51. data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
  52. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  53. data/ext/ffi_c/libffi/.ci/install.sh +78 -0
  54. data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
  55. data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +1 -1
  56. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  57. data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
  58. data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
  59. data/ext/ffi_c/libffi/.ci/site.exp +29 -0
  60. data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
  61. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  62. data/ext/ffi_c/libffi/.gitattributes +4 -0
  63. data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
  64. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
  65. data/ext/ffi_c/libffi/.gitignore +10 -2
  66. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  67. data/ext/ffi_c/libffi/LICENSE +1 -1
  68. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  69. data/ext/ffi_c/libffi/Makefile.am +64 -73
  70. data/ext/ffi_c/libffi/Makefile.in +553 -235
  71. data/ext/ffi_c/libffi/README.md +165 -100
  72. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  73. data/ext/ffi_c/libffi/compile +348 -0
  74. data/ext/ffi_c/libffi/config.guess +950 -662
  75. data/ext/ffi_c/libffi/config.sub +1362 -1306
  76. data/ext/ffi_c/libffi/configure +4909 -4096
  77. data/ext/ffi_c/libffi/configure.ac +93 -32
  78. data/ext/ffi_c/libffi/configure.host +76 -28
  79. data/ext/ffi_c/libffi/doc/Makefile.in +15 -8
  80. data/ext/ffi_c/libffi/doc/libffi.texi +107 -46
  81. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  82. data/ext/ffi_c/libffi/fficonfig.h.in +22 -44
  83. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +165 -56
  84. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  85. data/ext/ffi_c/libffi/include/Makefile.in +17 -12
  86. data/ext/ffi_c/libffi/include/ffi.h.in +64 -48
  87. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  88. data/ext/ffi_c/libffi/include/ffi_common.h +34 -1
  89. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  90. data/ext/ffi_c/libffi/install-sh +107 -74
  91. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  92. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  93. data/ext/ffi_c/libffi/libtool-version +2 -2
  94. data/ext/ffi_c/libffi/ltmain.sh +576 -284
  95. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  96. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  97. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  98. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  99. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  100. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -44
  101. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  102. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  103. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  104. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  105. data/ext/ffi_c/libffi/man/Makefile.in +15 -8
  106. data/ext/ffi_c/libffi/missing +8 -8
  107. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  108. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  109. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  110. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  111. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  112. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  113. data/ext/ffi_c/libffi/msvcc.sh +39 -14
  114. data/ext/ffi_c/libffi/src/aarch64/ffi.c +286 -98
  115. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  116. data/ext/ffi_c/libffi/src/aarch64/internal.h +33 -0
  117. data/ext/ffi_c/libffi/src/aarch64/sysv.S +142 -37
  118. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  119. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  120. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  121. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  122. data/ext/ffi_c/libffi/src/arm/ffi.c +112 -10
  123. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  124. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  125. data/ext/ffi_c/libffi/src/arm/sysv.S +117 -44
  126. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  127. data/ext/ffi_c/libffi/src/closures.c +189 -48
  128. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  129. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  130. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  131. data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
  132. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  133. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  134. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  135. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  136. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  137. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  138. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  139. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
  140. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  141. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  142. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  143. data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
  144. data/ext/ffi_c/libffi/src/mips/ffi.c +245 -66
  145. data/ext/ffi_c/libffi/src/mips/ffitarget.h +8 -1
  146. data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
  147. data/ext/ffi_c/libffi/src/mips/o32.S +63 -4
  148. data/ext/ffi_c/libffi/src/moxie/ffi.c +48 -23
  149. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  150. data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
  151. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  152. data/ext/ffi_c/libffi/src/pa/ffitarget.h +20 -11
  153. data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
  154. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  155. data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
  156. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  157. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  158. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  159. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  160. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  161. data/ext/ffi_c/libffi/src/powerpc/linux64.S +93 -28
  162. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +83 -5
  163. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  164. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  165. data/ext/ffi_c/libffi/src/prep_cif.c +26 -4
  166. data/ext/ffi_c/libffi/src/riscv/ffi.c +79 -10
  167. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
  168. data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
  169. data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
  170. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  171. data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
  172. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  173. data/ext/ffi_c/libffi/src/x86/ffi.c +128 -49
  174. data/ext/ffi_c/libffi/src/x86/ffi64.c +89 -23
  175. data/ext/ffi_c/libffi/src/x86/ffitarget.h +21 -4
  176. data/ext/ffi_c/libffi/src/x86/ffiw64.c +63 -10
  177. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  178. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  179. data/ext/ffi_c/libffi/src/x86/sysv.S +274 -45
  180. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
  181. data/ext/ffi_c/libffi/src/x86/unix64.S +190 -4
  182. data/ext/ffi_c/libffi/src/x86/win64.S +32 -10
  183. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  184. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  185. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  186. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  187. data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -109
  188. data/ext/ffi_c/libffi/testsuite/Makefile.in +144 -88
  189. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  190. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  191. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
  192. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  193. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  194. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  195. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +71 -25
  196. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  197. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  198. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +5 -4
  199. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  200. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  231. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
  232. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
  233. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
  234. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
  235. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
  236. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
  237. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
  238. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
  239. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +6 -0
  240. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +18 -0
  241. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +22 -0
  242. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +24 -0
  243. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +29 -0
  244. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +4 -0
  245. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +19 -1
  246. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +21 -1
  247. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +35 -3
  248. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +13 -0
  249. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +19 -0
  250. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +13 -0
  251. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +13 -0
  252. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +18 -0
  253. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +22 -0
  254. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +13 -0
  255. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +29 -1
  256. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +19 -1
  257. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +24 -0
  258. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +28 -1
  259. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +24 -2
  260. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +39 -1
  261. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +25 -1
  262. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +14 -0
  263. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +14 -1
  264. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +14 -2
  265. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +19 -1
  266. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +19 -1
  267. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +20 -1
  268. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +40 -25
  269. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +40 -3
  270. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +19 -1
  271. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +18 -1
  272. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +18 -3
  273. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +18 -1
  274. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +18 -1
  275. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +19 -1
  276. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +19 -1
  277. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +3 -1
  278. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +9 -1
  279. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
  280. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +11 -1
  281. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +22 -3
  282. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
  283. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
  284. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
  285. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
  286. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
  287. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
  288. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +5 -0
  289. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +10 -0
  290. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
  291. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
  292. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
  293. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +11 -0
  294. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
  295. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
  296. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +4 -0
  297. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +4 -0
  298. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +2 -0
  299. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
  301. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +24 -22
  302. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +32 -9
  303. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +1 -1
  304. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +12 -0
  305. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +21 -5
  306. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  308. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +10 -1
  309. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +10 -1
  310. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +9 -0
  311. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +9 -0
  312. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +11 -0
  313. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +9 -0
  314. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +11 -0
  315. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +11 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  319. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +1 -1
  320. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +1 -1
  321. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +6 -1
  322. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +2 -1
  323. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +1 -0
  324. data/ext/ffi_c/libffi.bsd.mk +2 -2
  325. data/ext/ffi_c/libffi.darwin.mk +1 -1
  326. data/ext/ffi_c/libffi.gnu.mk +2 -2
  327. data/ext/ffi_c/rbffi.h +1 -3
  328. data/ffi.gemspec +15 -9
  329. data/lib/ffi/abstract_memory.rb +44 -0
  330. data/lib/ffi/autopointer.rb +8 -23
  331. data/lib/ffi/compat.rb +43 -0
  332. data/lib/ffi/data_converter.rb +67 -0
  333. data/lib/ffi/dynamic_library.rb +89 -0
  334. data/lib/ffi/enum.rb +18 -11
  335. data/lib/ffi/ffi.rb +6 -0
  336. data/lib/ffi/function.rb +71 -0
  337. data/lib/ffi/io.rb +3 -3
  338. data/lib/ffi/library.rb +65 -77
  339. data/lib/ffi/library_path.rb +109 -0
  340. data/lib/ffi/managedstruct.rb +3 -3
  341. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  342. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  343. data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  344. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  345. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  346. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  347. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  348. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  349. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  350. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  351. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  352. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  353. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  354. data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
  355. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  356. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  357. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  358. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  359. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  360. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  361. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  362. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  363. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  364. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  365. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  366. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  367. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  368. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  369. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  370. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  371. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  372. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  373. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  374. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  375. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  376. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  377. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  378. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  379. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  380. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  381. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  382. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  383. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  384. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  385. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  386. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  387. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  388. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  389. data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -90
  390. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  391. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  392. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  393. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  394. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  395. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  396. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  397. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  398. data/lib/ffi/platform.rb +43 -20
  399. data/lib/ffi/pointer.rb +26 -20
  400. data/lib/ffi/struct.rb +14 -68
  401. data/lib/ffi/struct_by_reference.rb +72 -0
  402. data/lib/ffi/struct_layout.rb +96 -0
  403. data/lib/ffi/struct_layout_builder.rb +1 -1
  404. data/lib/ffi/tools/const_generator.rb +11 -8
  405. data/lib/ffi/tools/generator.rb +47 -2
  406. data/lib/ffi/tools/generator_task.rb +13 -17
  407. data/lib/ffi/tools/struct_generator.rb +6 -5
  408. data/lib/ffi/tools/types_generator.rb +7 -4
  409. data/lib/ffi/types.rb +33 -7
  410. data/lib/ffi/variadic.rb +20 -18
  411. data/lib/ffi/version.rb +1 -1
  412. data/lib/ffi.rb +10 -3
  413. data/rakelib/ffi_gem_helper.rb +65 -0
  414. data/samples/getlogin.rb +1 -1
  415. data/samples/getpid.rb +1 -1
  416. data/samples/gettimeofday.rb +8 -8
  417. data/samples/hello.rb +2 -1
  418. data/samples/hello_ractor.rb +11 -0
  419. data/samples/inotify.rb +1 -1
  420. data/samples/pty.rb +1 -2
  421. data/samples/qsort.rb +0 -1
  422. data/samples/qsort_ractor.rb +28 -0
  423. data.tar.gz.sig +0 -0
  424. metadata +252 -153
  425. metadata.gz.sig +0 -0
  426. data/.gitignore +0 -22
  427. data/.gitmodules +0 -3
  428. data/.travis.yml +0 -52
  429. data/.yardopts +0 -5
  430. data/appveyor.yml +0 -22
  431. data/ext/ffi_c/Closure.c +0 -54
  432. data/ext/ffi_c/DataConverter.c +0 -91
  433. data/ext/ffi_c/StructByReference.c +0 -190
  434. data/ext/ffi_c/StructByReference.h +0 -50
  435. data/ext/ffi_c/libffi/.travis/build.sh +0 -34
  436. data/ext/ffi_c/libffi/.travis/install.sh +0 -22
  437. data/ext/ffi_c/libffi/.travis/site.exp +0 -18
  438. data/ext/ffi_c/libffi/.travis.yml +0 -34
  439. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  440. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  441. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  442. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  443. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  444. data/ext/ffi_c/win32/stdbool.h +0 -8
  445. data/ext/ffi_c/win32/stdint.h +0 -201
  446. data/samples/sample_helper.rb +0 -6
  447. data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  448. data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  450. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  451. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  452. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  453. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  454. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  455. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  456. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  457. data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +79 -79
@@ -0,0 +1,333 @@
1
+ #!/usr/bin/perl -w
2
+
3
+ # make_sunver.pl
4
+ #
5
+ # This script takes at least two arguments, a GNU style version script and
6
+ # a list of object and archive files, and generates a corresponding Sun
7
+ # style version script as follows:
8
+ #
9
+ # Each glob pattern, C++ mangled pattern or literal in the input script is
10
+ # matched against all global symbols in the input objects, emitting those
11
+ # that matched (or nothing if no match was found).
12
+ # A comment with the original pattern and its type is left in the output
13
+ # file to make it easy to understand the matches.
14
+ #
15
+ # It uses elfdump when present (native), GNU readelf otherwise.
16
+ # It depends on the GNU version of c++filt, since it must understand the
17
+ # GNU mangling style.
18
+
19
+ use FileHandle;
20
+ use IPC::Open2;
21
+
22
+ # Enforce C locale.
23
+ $ENV{'LC_ALL'} = "C";
24
+ $ENV{'LANG'} = "C";
25
+
26
+ # Input version script, GNU style.
27
+ my $symvers = shift;
28
+
29
+ ##########
30
+ # Get all the symbols from the library, match them, and add them to a hash.
31
+
32
+ my %sym_hash = ();
33
+
34
+ # List of objects and archives to process.
35
+ my @OBJECTS = ();
36
+
37
+ # List of shared objects to omit from processing.
38
+ my @SHAREDOBJS = ();
39
+
40
+ # Filter out those input archives that have corresponding shared objects to
41
+ # avoid adding all symbols matched in the archive to the output map.
42
+ foreach $file (@ARGV) {
43
+ if (($so = $file) =~ s/\.a$/.so/ && -e $so) {
44
+ printf STDERR "omitted $file -> $so\n";
45
+ push (@SHAREDOBJS, $so);
46
+ } else {
47
+ push (@OBJECTS, $file);
48
+ }
49
+ }
50
+
51
+ # We need to detect and ignore hidden symbols. Solaris nm can only detect
52
+ # this in the harder to parse default output format, and GNU nm not at all,
53
+ # so use elfdump -s in the native case and GNU readelf -s otherwise.
54
+ # GNU objdump -t cannot be used since it produces a variable number of
55
+ # columns.
56
+
57
+ # The path to elfdump.
58
+ my $elfdump = "/usr/ccs/bin/elfdump";
59
+
60
+ if (-f $elfdump) {
61
+ open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;
62
+ my $skip_arsym = 0;
63
+
64
+ while (<ELFDUMP>) {
65
+ chomp;
66
+
67
+ # Ignore empty lines.
68
+ if (/^$/) {
69
+ # End of archive symbol table, stop skipping.
70
+ $skip_arsym = 0 if $skip_arsym;
71
+ next;
72
+ }
73
+
74
+ # Keep skipping until end of archive symbol table.
75
+ next if ($skip_arsym);
76
+
77
+ # Ignore object name header for individual objects and archives.
78
+ next if (/:$/);
79
+
80
+ # Ignore table header lines.
81
+ next if (/^Symbol Table Section:/);
82
+ next if (/index.*value.*size/);
83
+
84
+ # Start of archive symbol table: start skipping.
85
+ if (/^Symbol Table: \(archive/) {
86
+ $skip_arsym = 1;
87
+ next;
88
+ }
89
+
90
+ # Split table.
91
+ (undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
92
+
93
+ # Error out for unknown input.
94
+ die "unknown input line:\n$_" unless defined($bind);
95
+
96
+ # Ignore local symbols.
97
+ next if ($bind eq "LOCL");
98
+ # Ignore hidden symbols.
99
+ next if ($oth eq "H");
100
+ # Ignore undefined symbols.
101
+ next if ($shndx eq "UNDEF");
102
+ # Error out for unhandled cases.
103
+ if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
104
+ die "unhandled symbol:\n$_";
105
+ }
106
+
107
+ # Remember symbol.
108
+ $sym_hash{$name}++;
109
+ }
110
+ close ELFDUMP or die "$elfdump error";
111
+ } else {
112
+ open READELF, 'readelf -s -W '.(join ' ',@OBJECTS).'|' or die $!;
113
+ # Process each symbol.
114
+ while (<READELF>) {
115
+ chomp;
116
+
117
+ # Ignore empty lines.
118
+ next if (/^$/);
119
+
120
+ # Ignore object name header.
121
+ next if (/^File: .*$/);
122
+
123
+ # Ignore table header lines.
124
+ next if (/^Symbol table.*contains.*:/);
125
+ next if (/Num:.*Value.*Size/);
126
+
127
+ # Split table.
128
+ (undef, undef, undef, undef, $bind, $vis, $ndx, $name) = split;
129
+
130
+ # Error out for unknown input.
131
+ die "unknown input line:\n$_" unless defined($bind);
132
+
133
+ # Ignore local symbols.
134
+ next if ($bind eq "LOCAL");
135
+ # Ignore hidden symbols.
136
+ next if ($vis eq "HIDDEN");
137
+ # Ignore undefined symbols.
138
+ next if ($ndx eq "UND");
139
+ # Error out for unhandled cases.
140
+ if ($bind !~ /^(GLOBAL|WEAK)/ or $vis ne "DEFAULT") {
141
+ die "unhandled symbol:\n$_";
142
+ }
143
+
144
+ # Remember symbol.
145
+ $sym_hash{$name}++;
146
+ }
147
+ close READELF or die "readelf error";
148
+ }
149
+
150
+ ##########
151
+ # The various types of glob patterns.
152
+ #
153
+ # A glob pattern that is to be applied to the demangled name: 'cxx'.
154
+ # A glob patterns that applies directly to the name in the .o files: 'glob'.
155
+ # This pattern is ignored; used for local variables (usually just '*'): 'ign'.
156
+
157
+ # The type of the current pattern.
158
+ my $glob = 'glob';
159
+
160
+ # We're currently inside `extern "C++"', which Sun ld doesn't understand.
161
+ my $in_extern = 0;
162
+
163
+ # The c++filt command to use. This *must* be GNU c++filt; the Sun Studio
164
+ # c++filt doesn't handle the GNU mangling style.
165
+ my $cxxfilt = $ENV{'CXXFILT'} || "c++filt";
166
+
167
+ # The current version name.
168
+ my $current_version = "";
169
+
170
+ # Was there any attempt to match a symbol to this version?
171
+ my $matches_attempted;
172
+
173
+ # The number of versions which matched this symbol.
174
+ my $matched_symbols;
175
+
176
+ open F,$symvers or die $!;
177
+
178
+ # Print information about generating this file
179
+ print "# This file was generated by make_sunver.pl. DO NOT EDIT!\n";
180
+ print "# It was generated by:\n";
181
+ printf "# %s %s %s\n", $0, $symvers, (join ' ',@ARGV);
182
+ printf "# Omitted archives with corresponding shared libraries: %s\n",
183
+ (join ' ', @SHAREDOBJS) if $#SHAREDOBJS >= 0;
184
+ print "#\n\n";
185
+
186
+ while (<F>) {
187
+ # Lines of the form '};'
188
+ if (/^([ \t]*)(\}[ \t]*;[ \t]*)$/) {
189
+ $glob = 'glob';
190
+ if ($in_extern) {
191
+ $in_extern--;
192
+ print "$1##$2\n";
193
+ } else {
194
+ print;
195
+ }
196
+ next;
197
+ }
198
+
199
+ # Lines of the form '} SOME_VERSION_NAME_1.0;'
200
+ if (/^[ \t]*\}[ \tA-Z0-9_.a-z]+;[ \t]*$/) {
201
+ $glob = 'glob';
202
+ # We tried to match symbols agains this version, but none matched.
203
+ # Emit dummy hidden symbol to avoid marking this version WEAK.
204
+ if ($matches_attempted && $matched_symbols == 0) {
205
+ print " hidden:\n";
206
+ print " .force_WEAK_off_$current_version = DATA S0x0 V0x0;\n";
207
+ }
208
+ print; next;
209
+ }
210
+
211
+ # Comment and blank lines
212
+ if (/^[ \t]*\#/) { print; next; }
213
+ if (/^[ \t]*$/) { print; next; }
214
+
215
+ # Lines of the form '{'
216
+ if (/^([ \t]*){$/) {
217
+ if ($in_extern) {
218
+ print "$1##{\n";
219
+ } else {
220
+ print;
221
+ }
222
+ next;
223
+ }
224
+
225
+ # Lines of the form 'SOME_VERSION_NAME_1.1 {'
226
+ if (/^([A-Z0-9_.]+)[ \t]+{$/) {
227
+ # Record version name.
228
+ $current_version = $1;
229
+ # Reset match attempts, #matched symbols for this version.
230
+ $matches_attempted = 0;
231
+ $matched_symbols = 0;
232
+ print;
233
+ next;
234
+ }
235
+
236
+ # Ignore 'global:'
237
+ if (/^[ \t]*global:$/) { print; next; }
238
+
239
+ # After 'local:', globs should be ignored, they won't be exported.
240
+ if (/^[ \t]*local:$/) {
241
+ $glob = 'ign';
242
+ print;
243
+ next;
244
+ }
245
+
246
+ # After 'extern "C++"', globs are C++ patterns
247
+ if (/^([ \t]*)(extern \"C\+\+\"[ \t]*)$/) {
248
+ $in_extern++;
249
+ $glob = 'cxx';
250
+ # Need to comment, Sun ld cannot handle this.
251
+ print "$1##$2\n"; next;
252
+ }
253
+
254
+ # Chomp newline now we're done with passing through the input file.
255
+ chomp;
256
+
257
+ # Catch globs. Note that '{}' is not allowed in globs by this script,
258
+ # so only '*' and '[]' are available.
259
+ if (/^([ \t]*)([^ \t;{}#]+);?[ \t]*$/) {
260
+ my $ws = $1;
261
+ my $ptn = $2;
262
+ # Turn the glob into a regex by replacing '*' with '.*', '?' with '.'.
263
+ # Keep $ptn so we can still print the original form.
264
+ ($pattern = $ptn) =~ s/\*/\.\*/g;
265
+ $pattern =~ s/\?/\./g;
266
+
267
+ if ($glob eq 'ign') {
268
+ # We're in a local: * section; just continue.
269
+ print "$_\n";
270
+ next;
271
+ }
272
+
273
+ # Print the glob commented for human readers.
274
+ print "$ws##$ptn ($glob)\n";
275
+ # We tried to match a symbol to this version.
276
+ $matches_attempted++;
277
+
278
+ if ($glob eq 'glob') {
279
+ my %ptn_syms = ();
280
+
281
+ # Match ptn against symbols in %sym_hash.
282
+ foreach my $sym (keys %sym_hash) {
283
+ # Maybe it matches one of the patterns based on the symbol in
284
+ # the .o file.
285
+ $ptn_syms{$sym}++ if ($sym =~ /^$pattern$/);
286
+ }
287
+
288
+ foreach my $sym (sort keys(%ptn_syms)) {
289
+ $matched_symbols++;
290
+ print "$ws$sym;\n";
291
+ }
292
+ } elsif ($glob eq 'cxx') {
293
+ my %dem_syms = ();
294
+
295
+ # Verify that we're actually using GNU c++filt. Other versions
296
+ # most likely cannot handle GNU style symbol mangling.
297
+ my $cxxout = `$cxxfilt --version 2>&1`;
298
+ $cxxout =~ m/GNU/ or die "$0 requires GNU c++filt to function";
299
+
300
+ # Talk to c++filt through a pair of file descriptors.
301
+ # Need to start a fresh instance per pattern, otherwise the
302
+ # process grows to 500+ MB.
303
+ my $pid = open2(*FILTIN, *FILTOUT, $cxxfilt) or die $!;
304
+
305
+ # Match ptn against symbols in %sym_hash.
306
+ foreach my $sym (keys %sym_hash) {
307
+ # No? Well, maybe its demangled form matches one of those
308
+ # patterns.
309
+ printf FILTOUT "%s\n",$sym;
310
+ my $dem = <FILTIN>;
311
+ chomp $dem;
312
+ $dem_syms{$sym}++ if ($dem =~ /^$pattern$/);
313
+ }
314
+
315
+ close FILTOUT or die "c++filt error";
316
+ close FILTIN or die "c++filt error";
317
+ # Need to wait for the c++filt process to avoid lots of zombies.
318
+ waitpid $pid, 0;
319
+
320
+ foreach my $sym (sort keys(%dem_syms)) {
321
+ $matched_symbols++;
322
+ print "$ws$sym;\n";
323
+ }
324
+ } else {
325
+ # No? Well, then ignore it.
326
+ }
327
+ next;
328
+ }
329
+ # Important sanity check. This script can't handle lots of formats
330
+ # that GNU ld can, so be sure to error out if one is seen!
331
+ die "strange line `$_'";
332
+ }
333
+ close F;
@@ -1,7 +1,7 @@
1
- # Makefile.in generated by automake 1.15 from Makefile.am.
1
+ # Makefile.in generated by automake 1.16.5 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994-2014 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2021 Free Software Foundation, Inc.
5
5
 
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
@@ -91,7 +91,6 @@ target_triplet = @target@
91
91
  subdir = man
92
92
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
93
93
  am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
94
- $(top_srcdir)/m4/ax_append_flag.m4 \
95
94
  $(top_srcdir)/m4/ax_cc_maxopt.m4 \
96
95
  $(top_srcdir)/m4/ax_cflags_warn_all.m4 \
97
96
  $(top_srcdir)/m4/ax_check_compile_flag.m4 \
@@ -100,6 +99,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
100
99
  $(top_srcdir)/m4/ax_enable_builddir.m4 \
101
100
  $(top_srcdir)/m4/ax_gcc_archflag.m4 \
102
101
  $(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
102
+ $(top_srcdir)/m4/ax_prepend_flag.m4 \
103
+ $(top_srcdir)/m4/ax_require_defined.m4 \
103
104
  $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
104
105
  $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
105
106
  $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
@@ -165,7 +166,6 @@ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
165
166
  am__DIST_COMMON = $(srcdir)/Makefile.in
166
167
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
167
168
  ACLOCAL = @ACLOCAL@
168
- ALLOCA = @ALLOCA@
169
169
  AMTAR = @AMTAR@
170
170
  AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
171
171
  AM_LTLDFLAGS = @AM_LTLDFLAGS@
@@ -181,8 +181,9 @@ CCASDEPMODE = @CCASDEPMODE@
181
181
  CCASFLAGS = @CCASFLAGS@
182
182
  CCDEPMODE = @CCDEPMODE@
183
183
  CFLAGS = @CFLAGS@
184
- CPP = @CPP@
185
184
  CPPFLAGS = @CPPFLAGS@
185
+ CSCOPE = @CSCOPE@
186
+ CTAGS = @CTAGS@
186
187
  CXX = @CXX@
187
188
  CXXCPP = @CXXCPP@
188
189
  CXXDEPMODE = @CXXDEPMODE@
@@ -197,9 +198,11 @@ ECHO_C = @ECHO_C@
197
198
  ECHO_N = @ECHO_N@
198
199
  ECHO_T = @ECHO_T@
199
200
  EGREP = @EGREP@
201
+ ETAGS = @ETAGS@
200
202
  EXEEXT = @EXEEXT@
201
203
  FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
202
204
  FGREP = @FGREP@
205
+ FILECMD = @FILECMD@
203
206
  GREP = @GREP@
204
207
  HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
205
208
  HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
@@ -238,6 +241,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
238
241
  PATH_SEPARATOR = @PATH_SEPARATOR@
239
242
  PRTDIAG = @PRTDIAG@
240
243
  RANLIB = @RANLIB@
244
+ READELF = @READELF@
241
245
  SECTION_LDFLAGS = @SECTION_LDFLAGS@
242
246
  SED = @SED@
243
247
  SET_MAKE = @SET_MAKE@
@@ -304,6 +308,7 @@ target_alias = @target_alias@
304
308
  target_cpu = @target_cpu@
305
309
  target_os = @target_os@
306
310
  target_vendor = @target_vendor@
311
+ tmake_file = @tmake_file@
307
312
  toolexecdir = @toolexecdir@
308
313
  toolexeclibdir = @toolexeclibdir@
309
314
  top_build_prefix = @top_build_prefix@
@@ -332,8 +337,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
332
337
  *config.status*) \
333
338
  cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
334
339
  *) \
335
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
336
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
340
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
341
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
337
342
  esac;
338
343
 
339
344
  $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -399,8 +404,10 @@ ctags CTAGS:
399
404
 
400
405
  cscope cscopelist:
401
406
 
407
+ distdir: $(BUILT_SOURCES)
408
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
402
409
 
403
- distdir: $(DISTFILES)
410
+ distdir-am: $(DISTFILES)
404
411
  @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
405
412
  topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
406
413
  list='$(DISTFILES)'; \
@@ -1,9 +1,9 @@
1
1
  #! /bin/sh
2
2
  # Common wrapper for a few potentially missing GNU programs.
3
3
 
4
- scriptversion=2013-10-28.13; # UTC
4
+ scriptversion=2018-03-07.03; # UTC
5
5
 
6
- # Copyright (C) 1996-2014 Free Software Foundation, Inc.
6
+ # Copyright (C) 1996-2021 Free Software Foundation, Inc.
7
7
  # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
8
8
 
9
9
  # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2013-10-28.13; # UTC
17
17
  # GNU General Public License for more details.
18
18
 
19
19
  # You should have received a copy of the GNU General Public License
20
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
21
21
 
22
22
  # As a special exception to the GNU General Public License, if you
23
23
  # distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@ else
101
101
  exit $st
102
102
  fi
103
103
 
104
- perl_URL=http://www.perl.org/
105
- flex_URL=http://flex.sourceforge.net/
106
- gnu_software_URL=http://www.gnu.org/software
104
+ perl_URL=https://www.perl.org/
105
+ flex_URL=https://github.com/westes/flex
106
+ gnu_software_URL=https://www.gnu.org/software
107
107
 
108
108
  program_details ()
109
109
  {
@@ -207,9 +207,9 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
207
207
  exit $st
208
208
 
209
209
  # Local variables:
210
- # eval: (add-hook 'write-file-hooks 'time-stamp)
210
+ # eval: (add-hook 'before-save-hook 'time-stamp)
211
211
  # time-stamp-start: "scriptversion="
212
212
  # time-stamp-format: "%:y-%02m-%02d.%02H"
213
- # time-stamp-time-zone: "UTC"
213
+ # time-stamp-time-zone: "UTC0"
214
214
  # time-stamp-end: "; # UTC"
215
215
  # End:
@@ -0,0 +1,33 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio 15
4
+ VisualStudioVersion = 15.0.28302.56
5
+ MinimumVisualStudioVersion = 10.0.40219.1
6
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ffi_staticLib_arm64", "Ffi_staticLib.vcxproj", "{115502C0-BE05-4767-BF19-5C87D805FAD6}"
7
+ EndProject
8
+ Global
9
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
+ Debug|ARM64 = Debug|ARM64
11
+ Debug|x64 = Debug|x64
12
+ Debug|x86 = Debug|x86
13
+ Release|ARM64 = Release|ARM64
14
+ Release|x64 = Release|x64
15
+ Release|x86 = Release|x86
16
+ EndGlobalSection
17
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
18
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
19
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.Build.0 = Debug|ARM64
20
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x64.ActiveCfg = Debug|ARM64
21
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x86.ActiveCfg = Debug|ARM64
22
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.ActiveCfg = Release|ARM64
23
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.Build.0 = Release|ARM64
24
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x64.ActiveCfg = Release|ARM64
25
+ {115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x86.ActiveCfg = Release|ARM64
26
+ EndGlobalSection
27
+ GlobalSection(SolutionProperties) = preSolution
28
+ HideSolutionNode = FALSE
29
+ EndGlobalSection
30
+ GlobalSection(ExtensibilityGlobals) = postSolution
31
+ SolutionGuid = {241C54C7-20DD-4897-9376-E6B6D1B43BD5}
32
+ EndGlobalSection
33
+ EndGlobal
@@ -0,0 +1,130 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <ItemGroup Label="ProjectConfigurations">
4
+ <ProjectConfiguration Include="Debug|ARM64">
5
+ <Configuration>Debug</Configuration>
6
+ <Platform>ARM64</Platform>
7
+ </ProjectConfiguration>
8
+ <ProjectConfiguration Include="Release|ARM64">
9
+ <Configuration>Release</Configuration>
10
+ <Platform>ARM64</Platform>
11
+ </ProjectConfiguration>
12
+ </ItemGroup>
13
+ <PropertyGroup Label="Globals">
14
+ <VCProjectVersion>15.0</VCProjectVersion>
15
+ <ProjectGuid>{115502C0-BE05-4767-BF19-5C87D805FAD6}</ProjectGuid>
16
+ <Keyword>Win32Proj</Keyword>
17
+ <RootNamespace>FfistaticLib</RootNamespace>
18
+ <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
19
+ <ProjectName>Ffi_staticLib_arm64</ProjectName>
20
+ </PropertyGroup>
21
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
22
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
23
+ <ConfigurationType>StaticLibrary</ConfigurationType>
24
+ <UseDebugLibraries>true</UseDebugLibraries>
25
+ <PlatformToolset>v141</PlatformToolset>
26
+ <CharacterSet>Unicode</CharacterSet>
27
+ </PropertyGroup>
28
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
29
+ <ConfigurationType>StaticLibrary</ConfigurationType>
30
+ <UseDebugLibraries>false</UseDebugLibraries>
31
+ <PlatformToolset>v141</PlatformToolset>
32
+ <WholeProgramOptimization>true</WholeProgramOptimization>
33
+ <CharacterSet>Unicode</CharacterSet>
34
+ </PropertyGroup>
35
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
36
+ <ImportGroup Label="ExtensionSettings">
37
+ </ImportGroup>
38
+ <ImportGroup Label="Shared">
39
+ </ImportGroup>
40
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
41
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
42
+ </ImportGroup>
43
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
44
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
45
+ </ImportGroup>
46
+ <PropertyGroup Label="UserMacros" />
47
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
48
+ <LinkIncremental>true</LinkIncremental>
49
+ </PropertyGroup>
50
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
51
+ <LinkIncremental>false</LinkIncremental>
52
+ </PropertyGroup>
53
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
54
+ <ClCompile>
55
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
56
+ <WarningLevel>Level3</WarningLevel>
57
+ <Optimization>Disabled</Optimization>
58
+ <SDLCheck>true</SDLCheck>
59
+ <PreprocessorDefinitions>FFI_BUILDING_DLL;_DEBUG;_LIB;USE_DL_PREFIX;ARM64;_M_ARM64;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
60
+ <ConformanceMode>true</ConformanceMode>
61
+ <AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
62
+ <IgnoreStandardIncludePath>false</IgnoreStandardIncludePath>
63
+ <BrowseInformation>true</BrowseInformation>
64
+ <OmitFramePointers>
65
+ </OmitFramePointers>
66
+ <WholeProgramOptimization>false</WholeProgramOptimization>
67
+ </ClCompile>
68
+ <Link>
69
+ <SubSystem>Windows</SubSystem>
70
+ <GenerateDebugInformation>true</GenerateDebugInformation>
71
+ </Link>
72
+ </ItemDefinitionGroup>
73
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
74
+ <ClCompile>
75
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
76
+ <WarningLevel>Level3</WarningLevel>
77
+ <Optimization>MaxSpeed</Optimization>
78
+ <FunctionLevelLinking>true</FunctionLevelLinking>
79
+ <IntrinsicFunctions>true</IntrinsicFunctions>
80
+ <SDLCheck>true</SDLCheck>
81
+ <PreprocessorDefinitions>FFI_BUILDING_DLL;USE_DL_PREFIX;ARM64;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
82
+ <ConformanceMode>true</ConformanceMode>
83
+ <AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
84
+ <OmitFramePointers>true</OmitFramePointers>
85
+ <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
86
+ <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
87
+ <AdditionalUsingDirectories>..\..\src;..\..\src\aarch64;%(AdditionalUsingDirectories)</AdditionalUsingDirectories>
88
+ </ClCompile>
89
+ <Link>
90
+ <SubSystem>Windows</SubSystem>
91
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
92
+ <OptimizeReferences>true</OptimizeReferences>
93
+ <GenerateDebugInformation>true</GenerateDebugInformation>
94
+ </Link>
95
+ <ProjectReference>
96
+ <LinkLibraryDependencies>true</LinkLibraryDependencies>
97
+ </ProjectReference>
98
+ </ItemDefinitionGroup>
99
+ <ItemGroup>
100
+ <ClInclude Include=".\aarch64_include\ffi.h" />
101
+ <ClInclude Include=".\aarch64_include\fficonfig.h" />
102
+ <ClInclude Include="..\..\src\aarch64\ffitarget.h" />
103
+ <ClInclude Include="..\include\ffi_cfi.h" />
104
+ <ClInclude Include="..\include\ffi_common.h" />
105
+ <ClInclude Include="..\..\src\aarch64\internal.h" />
106
+ </ItemGroup>
107
+ <ItemGroup>
108
+ <ClCompile Include="..\..\src\closures.c" />
109
+ <ClCompile Include="..\..\src\dlmalloc.c" />
110
+ <ClCompile Include="..\..\src\aarch64\ffi.c" />
111
+ <ClCompile Include="..\..\src\prep_cif.c" />
112
+ <ClCompile Include="..\..\src\types.c" />
113
+ </ItemGroup>
114
+ <!--ItemGroup>
115
+ <Object Include="..\..\..\..\Downloads\libffi-master-win64\src\aarch64\win64_armasm.obj" />
116
+ </ItemGroup-->
117
+ <ItemGroup>
118
+ <CustomBuild Include="..\..\src\aarch64\win64_armasm.S">
119
+ <!--ExcludedFromBuild Condition="'$(Platform)'!='ARM64'">true</ExcludedFromBuild -->
120
+ <Command>
121
+ cl /FA /EP /nologo /I"..\..\include" /I".\aarch64_include" /I"..\..\src\aarch64" "%(FullPath)" &gt; $(IntDir)win64_armasm.i
122
+ armasm64 $(IntDir)win64_armasm.i /I"src\" /I"..\..\include" /I"..\..\src\aarch64" -o "$(IntDir)win64_armasm.obj"
123
+ </Command>
124
+ <Outputs>win64_armasm.obj;%(Outputs)</Outputs>
125
+ </CustomBuild>
126
+ </ItemGroup>
127
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
128
+ <ImportGroup Label="ExtensionTargets">
129
+ </ImportGroup>
130
+ </Project>