ffi 1.10.0 → 1.15.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (349) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +240 -0
  3. data/Gemfile +3 -4
  4. data/README.md +42 -18
  5. data/Rakefile +68 -145
  6. data/ext/ffi_c/AbstractMemory.c +29 -34
  7. data/ext/ffi_c/Buffer.c +4 -9
  8. data/ext/ffi_c/Call.c +17 -50
  9. data/ext/ffi_c/Call.h +4 -7
  10. data/ext/ffi_c/ClosurePool.c +75 -25
  11. data/ext/ffi_c/ClosurePool.h +3 -1
  12. data/ext/ffi_c/DynamicLibrary.c +2 -7
  13. data/ext/ffi_c/Function.c +47 -131
  14. data/ext/ffi_c/Function.h +0 -4
  15. data/ext/ffi_c/FunctionInfo.c +3 -8
  16. data/ext/ffi_c/LastError.c +2 -6
  17. data/ext/ffi_c/LongDouble.c +12 -10
  18. data/ext/ffi_c/LongDouble.h +0 -4
  19. data/ext/ffi_c/MemoryPointer.c +3 -8
  20. data/ext/ffi_c/MemoryPointer.h +0 -4
  21. data/ext/ffi_c/MethodHandle.c +21 -31
  22. data/ext/ffi_c/MethodHandle.h +3 -2
  23. data/ext/ffi_c/Platform.c +5 -56
  24. data/ext/ffi_c/Pointer.c +25 -26
  25. data/ext/ffi_c/Pointer.h +0 -4
  26. data/ext/ffi_c/Struct.c +49 -56
  27. data/ext/ffi_c/Struct.h +12 -6
  28. data/ext/ffi_c/StructByValue.c +2 -7
  29. data/ext/ffi_c/StructLayout.c +22 -20
  30. data/ext/ffi_c/Thread.c +4 -228
  31. data/ext/ffi_c/Thread.h +1 -20
  32. data/ext/ffi_c/Type.c +1 -19
  33. data/ext/ffi_c/Type.h +0 -1
  34. data/ext/ffi_c/Types.c +7 -8
  35. data/ext/ffi_c/Types.h +3 -4
  36. data/ext/ffi_c/Variadic.c +23 -24
  37. data/ext/ffi_c/compat.h +4 -0
  38. data/ext/ffi_c/extconf.rb +56 -30
  39. data/ext/ffi_c/ffi.c +3 -8
  40. data/ext/ffi_c/libffi/.appveyor.yml +29 -13
  41. data/ext/ffi_c/libffi/.gitattributes +4 -0
  42. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  43. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  44. data/ext/ffi_c/libffi/.travis/build-in-container.sh +12 -0
  45. data/ext/ffi_c/libffi/.travis/build.sh +116 -8
  46. data/ext/ffi_c/libffi/.travis/install.sh +65 -16
  47. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  48. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
  49. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  50. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  51. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  52. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  53. data/ext/ffi_c/libffi/.travis.yml +51 -2
  54. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  55. data/ext/ffi_c/libffi/LICENSE +1 -1
  56. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  57. data/ext/ffi_c/libffi/Makefile.am +56 -72
  58. data/ext/ffi_c/libffi/Makefile.in +458 -207
  59. data/ext/ffi_c/libffi/README.md +33 -8
  60. data/ext/ffi_c/libffi/config.guess +552 -331
  61. data/ext/ffi_c/libffi/config.sub +1321 -1306
  62. data/ext/ffi_c/libffi/configure +414 -342
  63. data/ext/ffi_c/libffi/configure.ac +37 -12
  64. data/ext/ffi_c/libffi/configure.host +56 -27
  65. data/ext/ffi_c/libffi/doc/Makefile.in +9 -5
  66. data/ext/ffi_c/libffi/doc/libffi.texi +26 -14
  67. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  68. data/ext/ffi_c/libffi/fficonfig.h.in +13 -0
  69. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +2 -4
  70. data/ext/ffi_c/libffi/include/Makefile.in +10 -6
  71. data/ext/ffi_c/libffi/include/ffi.h.in +19 -7
  72. data/ext/ffi_c/libffi/include/ffi_common.h +5 -1
  73. data/ext/ffi_c/libffi/install-sh +23 -13
  74. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  75. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  76. data/ext/ffi_c/libffi/libtool-version +1 -1
  77. data/ext/ffi_c/libffi/ltmain.sh +156 -61
  78. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  79. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  80. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  81. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  82. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  83. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  84. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  85. data/ext/ffi_c/libffi/man/Makefile.in +9 -5
  86. data/ext/ffi_c/libffi/missing +8 -8
  87. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  88. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  89. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  90. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  91. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  92. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  93. data/ext/ffi_c/libffi/msvcc.sh +38 -13
  94. data/ext/ffi_c/libffi/src/aarch64/ffi.c +153 -69
  95. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  96. data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
  97. data/ext/ffi_c/libffi/src/aarch64/sysv.S +22 -9
  98. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  99. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -5
  100. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  101. data/ext/ffi_c/libffi/src/arm/sysv.S +6 -4
  102. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  103. data/ext/ffi_c/libffi/src/closures.c +69 -14
  104. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  105. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  106. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  107. data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
  108. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  109. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  110. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  111. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  112. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  113. data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
  114. data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
  115. data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
  116. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  117. data/ext/ffi_c/libffi/src/moxie/ffi.c +1 -1
  118. data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
  119. data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
  120. data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
  121. data/ext/ffi_c/libffi/src/pa/linux.S +27 -4
  122. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  123. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  124. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  125. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  126. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  127. data/ext/ffi_c/libffi/src/powerpc/linux64.S +91 -28
  128. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +81 -5
  129. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  130. data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
  131. data/ext/ffi_c/libffi/src/riscv/ffi.c +42 -6
  132. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
  133. data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
  134. data/ext/ffi_c/libffi/src/x86/ffi.c +29 -12
  135. data/ext/ffi_c/libffi/src/x86/ffi64.c +22 -11
  136. data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
  137. data/ext/ffi_c/libffi/src/x86/ffiw64.c +20 -10
  138. data/ext/ffi_c/libffi/src/x86/sysv.S +105 -10
  139. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  140. data/ext/ffi_c/libffi/src/x86/unix64.S +100 -4
  141. data/ext/ffi_c/libffi/src/x86/win64.S +12 -3
  142. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  143. data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
  144. data/ext/ffi_c/libffi/testsuite/Makefile.in +124 -84
  145. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +32 -8
  146. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  147. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
  148. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  149. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  150. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  151. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
  152. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  153. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  154. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +3 -1
  155. data/ext/ffi_c/libffi.darwin.mk +1 -1
  156. data/ext/ffi_c/rbffi.h +0 -2
  157. data/ffi.gemspec +13 -7
  158. data/lib/ffi/abstract_memory.rb +44 -0
  159. data/lib/ffi/autopointer.rb +1 -1
  160. data/lib/ffi/data_converter.rb +67 -0
  161. data/lib/ffi/ffi.rb +3 -0
  162. data/lib/ffi/io.rb +3 -3
  163. data/lib/ffi/library.rb +13 -9
  164. data/lib/ffi/managedstruct.rb +2 -2
  165. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  166. data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
  167. data/lib/ffi/platform/aarch64-freebsd12/types.conf +162 -109
  168. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  169. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  170. data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
  171. data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
  172. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  173. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  174. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  175. data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
  176. data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
  177. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  178. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  179. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  180. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  181. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  182. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  183. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  184. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  185. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  186. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  187. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  188. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  189. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  190. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  191. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  192. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  193. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  194. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  195. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  196. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  197. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  198. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  199. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  200. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  201. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  202. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  203. data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
  204. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  205. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  206. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  207. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  208. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  209. data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
  210. data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
  211. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  212. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  213. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  214. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  215. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  216. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  217. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  218. data/lib/ffi/platform.rb +24 -9
  219. data/lib/ffi/pointer.rb +22 -15
  220. data/lib/ffi/struct.rb +13 -68
  221. data/lib/ffi/struct_by_reference.rb +72 -0
  222. data/lib/ffi/struct_layout.rb +96 -0
  223. data/lib/ffi/tools/const_generator.rb +11 -8
  224. data/lib/ffi/tools/generator.rb +47 -2
  225. data/lib/ffi/tools/generator_task.rb +13 -17
  226. data/lib/ffi/tools/struct_generator.rb +6 -5
  227. data/lib/ffi/tools/types_generator.rb +7 -4
  228. data/lib/ffi/types.rb +1 -1
  229. data/lib/ffi/variadic.rb +1 -10
  230. data/lib/ffi/version.rb +1 -1
  231. data/lib/ffi.rb +10 -3
  232. data/rakelib/ffi_gem_helper.rb +65 -0
  233. data/samples/getlogin.rb +1 -1
  234. data/samples/getpid.rb +1 -1
  235. data/samples/gettimeofday.rb +8 -8
  236. data/samples/hello.rb +2 -1
  237. data/samples/inotify.rb +1 -1
  238. data/samples/pty.rb +1 -2
  239. data/samples/qsort.rb +0 -1
  240. metadata +157 -139
  241. data/.gitignore +0 -22
  242. data/.gitmodules +0 -3
  243. data/.travis.yml +0 -43
  244. data/.yardopts +0 -5
  245. data/appveyor.yml +0 -22
  246. data/ext/ffi_c/DataConverter.c +0 -91
  247. data/ext/ffi_c/StructByReference.c +0 -190
  248. data/ext/ffi_c/StructByReference.h +0 -50
  249. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  250. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  251. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  252. data/ext/ffi_c/win32/stdbool.h +0 -8
  253. data/ext/ffi_c/win32/stdint.h +0 -201
  254. data/samples/sample_helper.rb +0 -6
  255. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  256. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  257. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  258. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  259. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  260. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  261. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  262. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  263. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  264. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  265. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  266. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  267. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  268. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  269. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  270. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  271. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  272. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  273. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  274. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  275. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  276. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  277. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  278. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  279. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  280. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  281. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  282. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  283. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  284. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  285. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  286. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  287. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  288. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  289. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  290. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  291. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  292. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  293. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  294. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  295. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  296. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  297. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  298. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  299. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  300. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  301. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  302. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  303. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  304. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  305. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  306. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  307. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  308. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  309. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  310. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  311. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  312. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  313. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  314. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  315. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  316. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  317. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  318. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  319. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  320. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  321. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  322. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  323. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  324. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  325. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  326. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  327. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  328. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  329. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  330. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  331. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  332. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  333. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  334. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  335. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  336. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  337. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  338. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  339. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  340. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  341. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  342. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  343. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  344. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  345. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  346. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  347. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  348. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  349. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
@@ -31,7 +31,7 @@
31
31
 
32
32
  PROGRAM=libtool
33
33
  PACKAGE=libtool
34
- VERSION="2.4.6 Debian-2.4.6-2"
34
+ VERSION="2.4.6 Debian-2.4.6-14"
35
35
  package_revision=2.4.6
36
36
 
37
37
 
@@ -387,7 +387,7 @@ EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
387
387
  # putting '$debug_cmd' at the start of all your functions, you can get
388
388
  # bash to show function call trace with:
389
389
  #
390
- # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name
390
+ # debug_cmd='echo "${FUNCNAME[0]} $*" >&2' bash your-script-name
391
391
  debug_cmd=${debug_cmd-":"}
392
392
  exit_cmd=:
393
393
 
@@ -1370,7 +1370,7 @@ func_lt_ver ()
1370
1370
  #! /bin/sh
1371
1371
 
1372
1372
  # Set a version string for this script.
1373
- scriptversion=2014-01-07.03; # UTC
1373
+ scriptversion=2015-10-07.11; # UTC
1374
1374
 
1375
1375
  # A portable, pluggable option parser for Bourne shell.
1376
1376
  # Written by Gary V. Vaughan, 2010
@@ -1530,6 +1530,8 @@ func_run_hooks ()
1530
1530
  {
1531
1531
  $debug_cmd
1532
1532
 
1533
+ _G_rc_run_hooks=false
1534
+
1533
1535
  case " $hookable_fns " in
1534
1536
  *" $1 "*) ;;
1535
1537
  *) func_fatal_error "'$1' does not support hook funcions.n" ;;
@@ -1538,16 +1540,16 @@ func_run_hooks ()
1538
1540
  eval _G_hook_fns=\$$1_hooks; shift
1539
1541
 
1540
1542
  for _G_hook in $_G_hook_fns; do
1541
- eval $_G_hook '"$@"'
1542
-
1543
- # store returned options list back into positional
1544
- # parameters for next 'cmd' execution.
1545
- eval _G_hook_result=\$${_G_hook}_result
1546
- eval set dummy "$_G_hook_result"; shift
1543
+ if eval $_G_hook '"$@"'; then
1544
+ # store returned options list back into positional
1545
+ # parameters for next 'cmd' execution.
1546
+ eval _G_hook_result=\$${_G_hook}_result
1547
+ eval set dummy "$_G_hook_result"; shift
1548
+ _G_rc_run_hooks=:
1549
+ fi
1547
1550
  done
1548
1551
 
1549
- func_quote_for_eval ${1+"$@"}
1550
- func_run_hooks_result=$func_quote_for_eval_result
1552
+ $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
1551
1553
  }
1552
1554
 
1553
1555
 
@@ -1557,10 +1559,16 @@ func_run_hooks ()
1557
1559
  ## --------------- ##
1558
1560
 
1559
1561
  # In order to add your own option parsing hooks, you must accept the
1560
- # full positional parameter list in your hook function, remove any
1561
- # options that you action, and then pass back the remaining unprocessed
1562
+ # full positional parameter list in your hook function, you may remove/edit
1563
+ # any options that you action, and then pass back the remaining unprocessed
1562
1564
  # options in '<hooked_function_name>_result', escaped suitably for
1563
- # 'eval'. Like this:
1565
+ # 'eval'. In this case you also must return $EXIT_SUCCESS to let the
1566
+ # hook's caller know that it should pay attention to
1567
+ # '<hooked_function_name>_result'. Returning $EXIT_FAILURE signalizes that
1568
+ # arguments are left untouched by the hook and therefore caller will ignore the
1569
+ # result variable.
1570
+ #
1571
+ # Like this:
1564
1572
  #
1565
1573
  # my_options_prep ()
1566
1574
  # {
@@ -1570,9 +1578,11 @@ func_run_hooks ()
1570
1578
  # usage_message=$usage_message'
1571
1579
  # -s, --silent don'\''t print informational messages
1572
1580
  # '
1573
- #
1574
- # func_quote_for_eval ${1+"$@"}
1575
- # my_options_prep_result=$func_quote_for_eval_result
1581
+ # # No change in '$@' (ignored completely by this hook). There is
1582
+ # # no need to do the equivalent (but slower) action:
1583
+ # # func_quote_for_eval ${1+"$@"}
1584
+ # # my_options_prep_result=$func_quote_for_eval_result
1585
+ # false
1576
1586
  # }
1577
1587
  # func_add_hook func_options_prep my_options_prep
1578
1588
  #
@@ -1581,25 +1591,37 @@ func_run_hooks ()
1581
1591
  # {
1582
1592
  # $debug_cmd
1583
1593
  #
1594
+ # args_changed=false
1595
+ #
1584
1596
  # # Note that for efficiency, we parse as many options as we can
1585
1597
  # # recognise in a loop before passing the remainder back to the
1586
1598
  # # caller on the first unrecognised argument we encounter.
1587
1599
  # while test $# -gt 0; do
1588
1600
  # opt=$1; shift
1589
1601
  # case $opt in
1590
- # --silent|-s) opt_silent=: ;;
1602
+ # --silent|-s) opt_silent=:
1603
+ # args_changed=:
1604
+ # ;;
1591
1605
  # # Separate non-argument short options:
1592
1606
  # -s*) func_split_short_opt "$_G_opt"
1593
1607
  # set dummy "$func_split_short_opt_name" \
1594
1608
  # "-$func_split_short_opt_arg" ${1+"$@"}
1595
1609
  # shift
1610
+ # args_changed=:
1596
1611
  # ;;
1597
- # *) set dummy "$_G_opt" "$*"; shift; break ;;
1612
+ # *) # Make sure the first unrecognised option "$_G_opt"
1613
+ # # is added back to "$@", we could need that later
1614
+ # # if $args_changed is true.
1615
+ # set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
1598
1616
  # esac
1599
1617
  # done
1600
1618
  #
1601
- # func_quote_for_eval ${1+"$@"}
1602
- # my_silent_option_result=$func_quote_for_eval_result
1619
+ # if $args_changed; then
1620
+ # func_quote_for_eval ${1+"$@"}
1621
+ # my_silent_option_result=$func_quote_for_eval_result
1622
+ # fi
1623
+ #
1624
+ # $args_changed
1603
1625
  # }
1604
1626
  # func_add_hook func_parse_options my_silent_option
1605
1627
  #
@@ -1611,16 +1633,32 @@ func_run_hooks ()
1611
1633
  # $opt_silent && $opt_verbose && func_fatal_help "\
1612
1634
  # '--silent' and '--verbose' options are mutually exclusive."
1613
1635
  #
1614
- # func_quote_for_eval ${1+"$@"}
1615
- # my_option_validation_result=$func_quote_for_eval_result
1636
+ # false
1616
1637
  # }
1617
1638
  # func_add_hook func_validate_options my_option_validation
1618
1639
  #
1619
- # You'll alse need to manually amend $usage_message to reflect the extra
1640
+ # You'll also need to manually amend $usage_message to reflect the extra
1620
1641
  # options you parse. It's preferable to append if you can, so that
1621
1642
  # multiple option parsing hooks can be added safely.
1622
1643
 
1623
1644
 
1645
+ # func_options_finish [ARG]...
1646
+ # ----------------------------
1647
+ # Finishing the option parse loop (call 'func_options' hooks ATM).
1648
+ func_options_finish ()
1649
+ {
1650
+ $debug_cmd
1651
+
1652
+ _G_func_options_finish_exit=false
1653
+ if func_run_hooks func_options ${1+"$@"}; then
1654
+ func_options_finish_result=$func_run_hooks_result
1655
+ _G_func_options_finish_exit=:
1656
+ fi
1657
+
1658
+ $_G_func_options_finish_exit
1659
+ }
1660
+
1661
+
1624
1662
  # func_options [ARG]...
1625
1663
  # ---------------------
1626
1664
  # All the functions called inside func_options are hookable. See the
@@ -1630,17 +1668,28 @@ func_options ()
1630
1668
  {
1631
1669
  $debug_cmd
1632
1670
 
1633
- func_options_prep ${1+"$@"}
1634
- eval func_parse_options \
1635
- ${func_options_prep_result+"$func_options_prep_result"}
1636
- eval func_validate_options \
1637
- ${func_parse_options_result+"$func_parse_options_result"}
1671
+ _G_rc_options=false
1638
1672
 
1639
- eval func_run_hooks func_options \
1640
- ${func_validate_options_result+"$func_validate_options_result"}
1673
+ for my_func in options_prep parse_options validate_options options_finish
1674
+ do
1675
+ if eval func_$my_func '${1+"$@"}'; then
1676
+ eval _G_res_var='$'"func_${my_func}_result"
1677
+ eval set dummy "$_G_res_var" ; shift
1678
+ _G_rc_options=:
1679
+ fi
1680
+ done
1681
+
1682
+ # Save modified positional parameters for caller. As a top-level
1683
+ # options-parser function we always need to set the 'func_options_result'
1684
+ # variable (regardless the $_G_rc_options value).
1685
+ if $_G_rc_options; then
1686
+ func_options_result=$_G_res_var
1687
+ else
1688
+ func_quote_for_eval ${1+"$@"}
1689
+ func_options_result=$func_quote_for_eval_result
1690
+ fi
1641
1691
 
1642
- # save modified positional parameters for caller
1643
- func_options_result=$func_run_hooks_result
1692
+ $_G_rc_options
1644
1693
  }
1645
1694
 
1646
1695
 
@@ -1649,9 +1698,9 @@ func_options ()
1649
1698
  # All initialisations required before starting the option parse loop.
1650
1699
  # Note that when calling hook functions, we pass through the list of
1651
1700
  # positional parameters. If a hook function modifies that list, and
1652
- # needs to propogate that back to rest of this script, then the complete
1701
+ # needs to propagate that back to rest of this script, then the complete
1653
1702
  # modified list must be put in 'func_run_hooks_result' before
1654
- # returning.
1703
+ # returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
1655
1704
  func_hookable func_options_prep
1656
1705
  func_options_prep ()
1657
1706
  {
@@ -1661,10 +1710,14 @@ func_options_prep ()
1661
1710
  opt_verbose=false
1662
1711
  opt_warning_types=
1663
1712
 
1664
- func_run_hooks func_options_prep ${1+"$@"}
1713
+ _G_rc_options_prep=false
1714
+ if func_run_hooks func_options_prep ${1+"$@"}; then
1715
+ _G_rc_options_prep=:
1716
+ # save modified positional parameters for caller
1717
+ func_options_prep_result=$func_run_hooks_result
1718
+ fi
1665
1719
 
1666
- # save modified positional parameters for caller
1667
- func_options_prep_result=$func_run_hooks_result
1720
+ $_G_rc_options_prep
1668
1721
  }
1669
1722
 
1670
1723
 
@@ -1678,18 +1731,20 @@ func_parse_options ()
1678
1731
 
1679
1732
  func_parse_options_result=
1680
1733
 
1734
+ _G_rc_parse_options=false
1681
1735
  # this just eases exit handling
1682
1736
  while test $# -gt 0; do
1683
1737
  # Defer to hook functions for initial option parsing, so they
1684
1738
  # get priority in the event of reusing an option name.
1685
- func_run_hooks func_parse_options ${1+"$@"}
1686
-
1687
- # Adjust func_parse_options positional parameters to match
1688
- eval set dummy "$func_run_hooks_result"; shift
1739
+ if func_run_hooks func_parse_options ${1+"$@"}; then
1740
+ eval set dummy "$func_run_hooks_result"; shift
1741
+ _G_rc_parse_options=:
1742
+ fi
1689
1743
 
1690
1744
  # Break out of the loop if we already parsed every option.
1691
1745
  test $# -gt 0 || break
1692
1746
 
1747
+ _G_match_parse_options=:
1693
1748
  _G_opt=$1
1694
1749
  shift
1695
1750
  case $_G_opt in
@@ -1704,7 +1759,10 @@ func_parse_options ()
1704
1759
  ;;
1705
1760
 
1706
1761
  --warnings|--warning|-W)
1707
- test $# = 0 && func_missing_arg $_G_opt && break
1762
+ if test $# = 0 && func_missing_arg $_G_opt; then
1763
+ _G_rc_parse_options=:
1764
+ break
1765
+ fi
1708
1766
  case " $warning_categories $1" in
1709
1767
  *" $1 "*)
1710
1768
  # trailing space prevents matching last $1 above
@@ -1757,15 +1815,25 @@ func_parse_options ()
1757
1815
  shift
1758
1816
  ;;
1759
1817
 
1760
- --) break ;;
1818
+ --) _G_rc_parse_options=: ; break ;;
1761
1819
  -*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
1762
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
1820
+ *) set dummy "$_G_opt" ${1+"$@"}; shift
1821
+ _G_match_parse_options=false
1822
+ break
1823
+ ;;
1763
1824
  esac
1825
+
1826
+ $_G_match_parse_options && _G_rc_parse_options=:
1764
1827
  done
1765
1828
 
1766
- # save modified positional parameters for caller
1767
- func_quote_for_eval ${1+"$@"}
1768
- func_parse_options_result=$func_quote_for_eval_result
1829
+
1830
+ if $_G_rc_parse_options; then
1831
+ # save modified positional parameters for caller
1832
+ func_quote_for_eval ${1+"$@"}
1833
+ func_parse_options_result=$func_quote_for_eval_result
1834
+ fi
1835
+
1836
+ $_G_rc_parse_options
1769
1837
  }
1770
1838
 
1771
1839
 
@@ -1778,16 +1846,21 @@ func_validate_options ()
1778
1846
  {
1779
1847
  $debug_cmd
1780
1848
 
1849
+ _G_rc_validate_options=false
1850
+
1781
1851
  # Display all warnings if -W was not given.
1782
1852
  test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
1783
1853
 
1784
- func_run_hooks func_validate_options ${1+"$@"}
1854
+ if func_run_hooks func_validate_options ${1+"$@"}; then
1855
+ # save modified positional parameters for caller
1856
+ func_validate_options_result=$func_run_hooks_result
1857
+ _G_rc_validate_options=:
1858
+ fi
1785
1859
 
1786
1860
  # Bail if the options were screwed!
1787
1861
  $exit_cmd $EXIT_FAILURE
1788
1862
 
1789
- # save modified positional parameters for caller
1790
- func_validate_options_result=$func_run_hooks_result
1863
+ $_G_rc_validate_options
1791
1864
  }
1792
1865
 
1793
1866
 
@@ -2068,7 +2141,7 @@ include the following information:
2068
2141
  compiler: $LTCC
2069
2142
  compiler flags: $LTCFLAGS
2070
2143
  linker: $LD (gnu? $with_gnu_ld)
2071
- version: $progname $scriptversion Debian-2.4.6-2
2144
+ version: $progname $scriptversion Debian-2.4.6-14
2072
2145
  automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
2073
2146
  autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
2074
2147
 
@@ -2270,6 +2343,8 @@ libtool_options_prep ()
2270
2343
  nonopt=
2271
2344
  preserve_args=
2272
2345
 
2346
+ _G_rc_lt_options_prep=:
2347
+
2273
2348
  # Shorthand for --mode=foo, only valid as the first argument
2274
2349
  case $1 in
2275
2350
  clean|clea|cle|cl)
@@ -2293,11 +2368,18 @@ libtool_options_prep ()
2293
2368
  uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
2294
2369
  shift; set dummy --mode uninstall ${1+"$@"}; shift
2295
2370
  ;;
2371
+ *)
2372
+ _G_rc_lt_options_prep=false
2373
+ ;;
2296
2374
  esac
2297
2375
 
2298
- # Pass back the list of options.
2299
- func_quote_for_eval ${1+"$@"}
2300
- libtool_options_prep_result=$func_quote_for_eval_result
2376
+ if $_G_rc_lt_options_prep; then
2377
+ # Pass back the list of options.
2378
+ func_quote_for_eval ${1+"$@"}
2379
+ libtool_options_prep_result=$func_quote_for_eval_result
2380
+ fi
2381
+
2382
+ $_G_rc_lt_options_prep
2301
2383
  }
2302
2384
  func_add_hook func_options_prep libtool_options_prep
2303
2385
 
@@ -2309,9 +2391,12 @@ libtool_parse_options ()
2309
2391
  {
2310
2392
  $debug_cmd
2311
2393
 
2394
+ _G_rc_lt_parse_options=false
2395
+
2312
2396
  # Perform our own loop to consume as many options as possible in
2313
2397
  # each iteration.
2314
2398
  while test $# -gt 0; do
2399
+ _G_match_lt_parse_options=:
2315
2400
  _G_opt=$1
2316
2401
  shift
2317
2402
  case $_G_opt in
@@ -2386,15 +2471,22 @@ libtool_parse_options ()
2386
2471
  func_append preserve_args " $_G_opt"
2387
2472
  ;;
2388
2473
 
2389
- # An option not handled by this hook function:
2390
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
2474
+ # An option not handled by this hook function:
2475
+ *) set dummy "$_G_opt" ${1+"$@"} ; shift
2476
+ _G_match_lt_parse_options=false
2477
+ break
2478
+ ;;
2391
2479
  esac
2480
+ $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
2392
2481
  done
2393
2482
 
2483
+ if $_G_rc_lt_parse_options; then
2484
+ # save modified positional parameters for caller
2485
+ func_quote_for_eval ${1+"$@"}
2486
+ libtool_parse_options_result=$func_quote_for_eval_result
2487
+ fi
2394
2488
 
2395
- # save modified positional parameters for caller
2396
- func_quote_for_eval ${1+"$@"}
2397
- libtool_parse_options_result=$func_quote_for_eval_result
2489
+ $_G_rc_lt_parse_options
2398
2490
  }
2399
2491
  func_add_hook func_parse_options libtool_parse_options
2400
2492
 
@@ -7275,10 +7367,13 @@ func_mode_link ()
7275
7367
  # -specs=* GCC specs files
7276
7368
  # -stdlib=* select c++ std lib with clang
7277
7369
  # -fsanitize=* Clang/GCC memory and address sanitizer
7370
+ # -fuse-ld=* Linker select flags for GCC
7371
+ # -static-* direct GCC to link specific libraries statically
7372
+ # -fcilkplus Cilk Plus language extension features for C/C++
7278
7373
  -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
7279
7374
  -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
7280
7375
  -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
7281
- -specs=*|-fsanitize=*)
7376
+ -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus)
7282
7377
  func_quote_for_eval "$arg"
7283
7378
  arg=$func_quote_for_eval_result
7284
7379
  func_append compile_command " $arg"
@@ -2,7 +2,7 @@ AC_DEFUN([GCC_AS_CFI_PSEUDO_OP],
2
2
  [AC_CACHE_CHECK([assembler .cfi pseudo-op support],
3
3
  gcc_cv_as_cfi_pseudo_op, [
4
4
  gcc_cv_as_cfi_pseudo_op=unknown
5
- AC_TRY_COMPILE([asm (".cfi_startproc\n\t.cfi_endproc");],,
5
+ AC_TRY_COMPILE([asm (".cfi_sections\n\t.cfi_startproc\n\t.cfi_endproc");],,
6
6
  [gcc_cv_as_cfi_pseudo_op=yes],
7
7
  [gcc_cv_as_cfi_pseudo_op=no])
8
8
  ])
@@ -23,33 +23,12 @@
23
23
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
24
24
  # Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
25
25
  #
26
- # This program is free software: you can redistribute it and/or modify it
27
- # under the terms of the GNU General Public License as published by the
28
- # Free Software Foundation, either version 3 of the License, or (at your
29
- # option) any later version.
30
- #
31
- # This program is distributed in the hope that it will be useful, but
32
- # WITHOUT ANY WARRANTY; without even the implied warranty of
33
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
34
- # Public License for more details.
35
- #
36
- # You should have received a copy of the GNU General Public License along
37
- # with this program. If not, see <https://www.gnu.org/licenses/>.
38
- #
39
- # As a special exception, the respective Autoconf Macro's copyright owner
40
- # gives unlimited permission to copy, distribute and modify the configure
41
- # scripts that are the output of Autoconf when processing the Macro. You
42
- # need not follow the terms of the GNU General Public License when using
43
- # or distributing such scripts, even though portions of the text of the
44
- # Macro appear in them. The GNU General Public License (GPL) does govern
45
- # all other use of the material that constitutes the Autoconf Macro.
46
- #
47
- # This special exception to the GPL applies to versions of the Autoconf
48
- # Macro released by the Autoconf Archive. When you make and distribute a
49
- # modified version of the Autoconf Macro, you may extend this special
50
- # exception to the GPL to apply to your modified version as well.
26
+ # Copying and distribution of this file, with or without modification, are
27
+ # permitted in any medium without royalty provided the copyright notice
28
+ # and this notice are preserved. This file is offered as-is, without any
29
+ # warranty.
51
30
 
52
- #serial 7
31
+ #serial 8
53
32
 
54
33
  AC_DEFUN([AX_APPEND_FLAG],
55
34
  [dnl
@@ -29,33 +29,12 @@
29
29
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
30
30
  # Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
31
31
  #
32
- # This program is free software: you can redistribute it and/or modify it
33
- # under the terms of the GNU General Public License as published by the
34
- # Free Software Foundation, either version 3 of the License, or (at your
35
- # option) any later version.
36
- #
37
- # This program is distributed in the hope that it will be useful, but
38
- # WITHOUT ANY WARRANTY; without even the implied warranty of
39
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
40
- # Public License for more details.
41
- #
42
- # You should have received a copy of the GNU General Public License along
43
- # with this program. If not, see <https://www.gnu.org/licenses/>.
44
- #
45
- # As a special exception, the respective Autoconf Macro's copyright owner
46
- # gives unlimited permission to copy, distribute and modify the configure
47
- # scripts that are the output of Autoconf when processing the Macro. You
48
- # need not follow the terms of the GNU General Public License when using
49
- # or distributing such scripts, even though portions of the text of the
50
- # Macro appear in them. The GNU General Public License (GPL) does govern
51
- # all other use of the material that constitutes the Autoconf Macro.
52
- #
53
- # This special exception to the GPL applies to versions of the Autoconf
54
- # Macro released by the Autoconf Archive. When you make and distribute a
55
- # modified version of the Autoconf Macro, you may extend this special
56
- # exception to the GPL to apply to your modified version as well.
32
+ # Copying and distribution of this file, with or without modification, are
33
+ # permitted in any medium without royalty provided the copyright notice
34
+ # and this notice are preserved. This file is offered as-is, without any
35
+ # warranty.
57
36
 
58
- #serial 5
37
+ #serial 6
59
38
 
60
39
  AC_DEFUN([AX_CHECK_COMPILE_FLAG],
61
40
  [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
@@ -44,7 +44,7 @@
44
44
  # modified version of the Autoconf Macro, you may extend this special
45
45
  # exception to the GPL to apply to your modified version as well.
46
46
 
47
- #serial 16
47
+ #serial 17
48
48
 
49
49
  AC_DEFUN([AX_COMPILER_VENDOR],
50
50
  [AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
@@ -56,6 +56,7 @@ AC_DEFUN([AX_COMPILER_VENDOR],
56
56
  clang: __clang__
57
57
  cray: _CRAYC
58
58
  fujitsu: __FUJITSU
59
+ sdcc: SDCC, __SDCC
59
60
  gnu: __GNUC__
60
61
  sun: __SUNPRO_C,__SUNPRO_CC
61
62
  hp: __HP_cc,__HP_aCC
@@ -31,33 +31,12 @@
31
31
  #
32
32
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
33
33
  #
34
- # This program is free software; you can redistribute it and/or modify it
35
- # under the terms of the GNU General Public License as published by the
36
- # Free Software Foundation; either version 3 of the License, or (at your
37
- # option) any later version.
38
- #
39
- # This program is distributed in the hope that it will be useful, but
40
- # WITHOUT ANY WARRANTY; without even the implied warranty of
41
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
42
- # Public License for more details.
43
- #
44
- # You should have received a copy of the GNU General Public License along
45
- # with this program. If not, see <https://www.gnu.org/licenses/>.
46
- #
47
- # As a special exception, the respective Autoconf Macro's copyright owner
48
- # gives unlimited permission to copy, distribute and modify the configure
49
- # scripts that are the output of Autoconf when processing the Macro. You
50
- # need not follow the terms of the GNU General Public License when using
51
- # or distributing such scripts, even though portions of the text of the
52
- # Macro appear in them. The GNU General Public License (GPL) does govern
53
- # all other use of the material that constitutes the Autoconf Macro.
54
- #
55
- # This special exception to the GPL applies to versions of the Autoconf
56
- # Macro released by the Autoconf Archive. When you make and distribute a
57
- # modified version of the Autoconf Macro, you may extend this special
58
- # exception to the GPL to apply to your modified version as well.
34
+ # Copying and distribution of this file, with or without modification, are
35
+ # permitted in any medium without royalty provided the copyright notice
36
+ # and this notice are preserved. This file is offered as-is, without any
37
+ # warranty.
59
38
 
60
- #serial 13
39
+ #serial 14
61
40
 
62
41
  AC_DEFUN([AX_CONFIGURE_ARGS],[
63
42
  # [$]@ is unusable in 2.60+ but earlier autoconf had no ac_configure_args
@@ -37,7 +37,7 @@
37
37
  # Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
38
38
  # Copyright (c) 2008 Matteo Frigo
39
39
  # Copyright (c) 2014 Tsukasa Oi
40
- # Copyright (c) 2017 Alexey Kopytov
40
+ # Copyright (c) 2017-2018 Alexey Kopytov
41
41
  #
42
42
  # This program is free software: you can redistribute it and/or modify it
43
43
  # under the terms of the GNU General Public License as published by the
@@ -65,7 +65,7 @@
65
65
  # modified version of the Autoconf Macro, you may extend this special
66
66
  # exception to the GPL to apply to your modified version as well.
67
67
 
68
- #serial 20
68
+ #serial 22
69
69
 
70
70
  AC_DEFUN([AX_GCC_ARCHFLAG],
71
71
  [AC_REQUIRE([AC_PROG_CC])
@@ -108,7 +108,7 @@ case $host_cpu in
108
108
  *2?6[[ad]]?:*:*:*) ax_gcc_arch="sandybridge corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
109
109
  *3?6[[ae]]?:*:*:*) ax_gcc_arch="ivybridge core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
110
110
  *3?6[[cf]]?:*:*:*|*4?6[[56]]?:*:*:*) ax_gcc_arch="haswell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
111
- *3?6d?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
111
+ *3?6d?:*:*:*|*4?6[[7f]]?:*:*:*|*5?66?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
112
112
  *1?6c?:*:*:*|*2?6[[67]]?:*:*:*|*3?6[[56]]?:*:*:*) ax_gcc_arch="bonnell atom core2 pentium-m pentium3 pentiumpro" ;;
113
113
  *3?67?:*:*:*|*[[45]]?6[[ad]]?:*:*:*) ax_gcc_arch="silvermont atom core2 pentium-m pentium3 pentiumpro" ;;
114
114
  *000?f[[012]]?:*:*:*|?f[[012]]?:*:*:*|f[[012]]?:*:*:*) ax_gcc_arch="pentium4 pentiumpro" ;;
@@ -198,6 +198,10 @@ case $host_cpu in
198
198
  *POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";;
199
199
  *POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";;
200
200
  603ev|8240) ax_gcc_arch="$cputype 603e 603";;
201
+ *POWER7*) ax_gcc_arch="power7";;
202
+ *POWER8*) ax_gcc_arch="power8";;
203
+ *POWER9*) ax_gcc_arch="power9";;
204
+ *POWER10*) ax_gcc_arch="power10";;
201
205
  *) ax_gcc_arch=$cputype ;;
202
206
  esac
203
207
  ax_gcc_arch="$ax_gcc_arch powerpc"