ffi 1.9.24 → 1.16.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +348 -0
- data/Gemfile +4 -5
- data/README.md +44 -17
- data/Rakefile +74 -148
- data/ext/ffi_c/AbstractMemory.c +89 -70
- data/ext/ffi_c/AbstractMemory.h +3 -2
- data/ext/ffi_c/ArrayType.c +49 -13
- data/ext/ffi_c/ArrayType.h +1 -0
- data/ext/ffi_c/Buffer.c +90 -38
- data/ext/ffi_c/Call.c +55 -56
- data/ext/ffi_c/Call.h +12 -6
- data/ext/ffi_c/ClosurePool.c +333 -0
- data/ext/ffi_c/{Closure.h → ClosurePool.h} +25 -13
- data/ext/ffi_c/DynamicLibrary.c +91 -33
- data/ext/ffi_c/Function.c +306 -235
- data/ext/ffi_c/Function.h +3 -5
- data/ext/ffi_c/FunctionInfo.c +87 -32
- data/ext/ffi_c/LastError.c +74 -15
- data/ext/ffi_c/LongDouble.c +12 -10
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +37 -15
- data/ext/ffi_c/MemoryPointer.h +0 -4
- data/ext/ffi_c/MethodHandle.c +265 -38
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +5 -56
- data/ext/ffi_c/Pointer.c +93 -55
- data/ext/ffi_c/Pointer.h +1 -4
- data/ext/ffi_c/Struct.c +202 -134
- data/ext/ffi_c/Struct.h +18 -9
- data/ext/ffi_c/StructByValue.c +50 -23
- data/ext/ffi_c/StructLayout.c +135 -64
- data/ext/ffi_c/Thread.c +4 -228
- data/ext/ffi_c/Thread.h +1 -20
- data/ext/ffi_c/Type.c +105 -55
- data/ext/ffi_c/Type.h +3 -2
- data/ext/ffi_c/Types.c +8 -9
- data/ext/ffi_c/Types.h +3 -4
- data/ext/ffi_c/Variadic.c +88 -47
- data/ext/ffi_c/compat.h +26 -22
- data/ext/ffi_c/extconf.rb +75 -32
- data/ext/ffi_c/ffi.c +9 -10
- data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/ext/ffi_c/libffi/.appveyor.yml +53 -19
- data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +1 -1
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/ext/ffi_c/libffi/.gitignore +10 -2
- data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
- data/ext/ffi_c/libffi/Makefile.am +64 -73
- data/ext/ffi_c/libffi/Makefile.in +553 -235
- data/ext/ffi_c/libffi/README.md +165 -100
- data/ext/ffi_c/libffi/acinclude.m4 +10 -112
- data/ext/ffi_c/libffi/compile +348 -0
- data/ext/ffi_c/libffi/config.guess +950 -662
- data/ext/ffi_c/libffi/config.sub +1362 -1306
- data/ext/ffi_c/libffi/configure +4909 -4096
- data/ext/ffi_c/libffi/configure.ac +93 -32
- data/ext/ffi_c/libffi/configure.host +76 -28
- data/ext/ffi_c/libffi/doc/Makefile.in +15 -8
- data/ext/ffi_c/libffi/doc/libffi.texi +107 -46
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +22 -44
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +165 -56
- data/ext/ffi_c/libffi/include/Makefile.am +1 -1
- data/ext/ffi_c/libffi/include/Makefile.in +17 -12
- data/ext/ffi_c/libffi/include/ffi.h.in +64 -48
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +34 -1
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +107 -74
- data/ext/ffi_c/libffi/libffi.map.in +8 -12
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +576 -284
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -44
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/ext/ffi_c/libffi/man/Makefile.in +15 -8
- data/ext/ffi_c/libffi/missing +8 -8
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
- data/ext/ffi_c/libffi/msvcc.sh +39 -14
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +286 -98
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
- data/ext/ffi_c/libffi/src/aarch64/internal.h +33 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +142 -37
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
- data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +112 -10
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +117 -44
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/closures.c +189 -48
- data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
- data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
- data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/mips/ffi.c +245 -66
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
- data/ext/ffi_c/libffi/src/mips/o32.S +63 -4
- data/ext/ffi_c/libffi/src/moxie/ffi.c +48 -23
- data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
- data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +20 -11
- data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +93 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +83 -5
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +26 -4
- data/ext/ffi_c/libffi/src/riscv/ffi.c +79 -10
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +128 -49
- data/ext/ffi_c/libffi/src/x86/ffi64.c +89 -23
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +21 -4
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +63 -10
- data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +274 -45
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +190 -4
- data/ext/ffi_c/libffi/src/x86/win64.S +32 -10
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
- data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -109
- data/ext/ffi_c/libffi/testsuite/Makefile.in +144 -88
- data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +71 -25
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +5 -4
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +6 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +18 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +29 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +35 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +19 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +18 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +29 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +28 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +24 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +39 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +25 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +14 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +14 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +14 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +20 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +40 -25
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +40 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +18 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +11 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +22 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +5 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +24 -22
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +32 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +12 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +21 -5
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +10 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +10 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +1 -0
- data/ext/ffi_c/libffi.bsd.mk +2 -2
- data/ext/ffi_c/libffi.darwin.mk +1 -1
- data/ext/ffi_c/libffi.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -3
- data/ffi.gemspec +15 -9
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/autopointer.rb +8 -23
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/dynamic_library.rb +89 -0
- data/lib/ffi/enum.rb +18 -11
- data/lib/ffi/ffi.rb +6 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +3 -3
- data/lib/ffi/library.rb +65 -77
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +3 -3
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/arm-linux/types.conf +110 -82
- data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
- data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +84 -84
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +43 -96
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +81 -81
- data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
- data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -90
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
- data/lib/ffi/platform.rb +43 -20
- data/lib/ffi/pointer.rb +26 -20
- data/lib/ffi/struct.rb +14 -68
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +1 -1
- data/lib/ffi/tools/const_generator.rb +11 -8
- data/lib/ffi/tools/generator.rb +47 -2
- data/lib/ffi/tools/generator_task.rb +13 -17
- data/lib/ffi/tools/struct_generator.rb +6 -5
- data/lib/ffi/tools/types_generator.rb +7 -4
- data/lib/ffi/types.rb +33 -7
- data/lib/ffi/variadic.rb +20 -18
- data/lib/ffi/version.rb +1 -1
- data/lib/ffi.rb +10 -3
- data/rakelib/ffi_gem_helper.rb +65 -0
- data/samples/getlogin.rb +1 -1
- data/samples/getpid.rb +1 -1
- data/samples/gettimeofday.rb +8 -8
- data/samples/hello.rb +2 -1
- data/samples/hello_ractor.rb +11 -0
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- data/samples/qsort_ractor.rb +28 -0
- data.tar.gz.sig +0 -0
- metadata +252 -153
- metadata.gz.sig +0 -0
- data/.gitignore +0 -22
- data/.gitmodules +0 -3
- data/.travis.yml +0 -52
- data/.yardopts +0 -5
- data/appveyor.yml +0 -22
- data/ext/ffi_c/Closure.c +0 -54
- data/ext/ffi_c/DataConverter.c +0 -91
- data/ext/ffi_c/StructByReference.c +0 -190
- data/ext/ffi_c/StructByReference.h +0 -50
- data/ext/ffi_c/libffi/.travis/build.sh +0 -34
- data/ext/ffi_c/libffi/.travis/install.sh +0 -22
- data/ext/ffi_c/libffi/.travis/site.exp +0 -18
- data/ext/ffi_c/libffi/.travis.yml +0 -34
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
- data/ext/ffi_c/win32/stdbool.h +0 -8
- data/ext/ffi_c/win32/stdint.h +0 -201
- data/samples/sample_helper.rb +0 -6
- data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
- data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +79 -79
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5920bab18c2bfca946febdf9d31aae894569dd1a293d816631a077696f7db8fa
|
4
|
+
data.tar.gz: 7aa17dd90399d15bd149573ab4b9857907028beae4f84409f76f50e9508aaba2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd42730736988cac47f45485f4a8b200c26759066fe156a89ef7736cd6ac80f404e8aaced28a8f10f9b22b43436ed3e248cb191f1c457ccabc19299b91b49174
|
7
|
+
data.tar.gz: '0252969e7a324d530c1d704e2d408f1bd7283f320de90b4c98f20bb49f9d32733ac45609d78a40f821cd5335e102e80576fd446cd5de863babea041d0eb3c780'
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,354 @@
|
|
1
|
+
1.16.3 / 2023-10-04
|
2
|
+
-------------------
|
3
|
+
|
4
|
+
Fixed:
|
5
|
+
* Fix gcc error when building on CentOS 7. #1052
|
6
|
+
* Avoid trying to store new DataConverter type in frozen TypeDefs hash. #1057
|
7
|
+
|
8
|
+
|
9
|
+
1.16.2 / 2023-09-25
|
10
|
+
-------------------
|
11
|
+
|
12
|
+
Fixed:
|
13
|
+
* Handle null pointer crash after fork. #1051
|
14
|
+
|
15
|
+
|
16
|
+
1.16.1 / 2023-09-24
|
17
|
+
-------------------
|
18
|
+
|
19
|
+
Fixed:
|
20
|
+
* Fix compiling the builtin libffi. #1049
|
21
|
+
|
22
|
+
|
23
|
+
1.16.0 / 2023-09-23
|
24
|
+
-------------------
|
25
|
+
|
26
|
+
Fixed:
|
27
|
+
* Fix an issue with signed bitmasks when using flags on the most significant bit. #949
|
28
|
+
* Fix FFI::Pointer#initialize using NUM2LL instead of NUM2ULL.
|
29
|
+
* Fix FFI::Type#inspect to properly display the constant name. #1002
|
30
|
+
* Use libffi closure allocations on hppa-Linux. #1017
|
31
|
+
Previously they would segfault.
|
32
|
+
* Fix class name of Symbol#inspect.
|
33
|
+
* Fix MSVC support of libtest. #1028
|
34
|
+
* Fix attach_function of functions ending in ? or ! #971
|
35
|
+
|
36
|
+
Added:
|
37
|
+
* Convert all C-based classes to TypedData and use write barriers. #994, #995, #996, #997, #998, #999, #1000, #1001, #1003, #1004, #1005, #1006, #1007, #1008, #1009, #1010, #1011, #1012
|
38
|
+
This results in less pressure on the garbage collector, since the objects can be promoted to the old generation, which means they only get marked on major GC.
|
39
|
+
* Implement `ObjectSpace.memsize_of()` of all C-based classes.
|
40
|
+
* Make FFI Ractor compatible. #1023
|
41
|
+
Modules extended per `extend FFI::Library` need to be frozen in order to be used by non-main Ractors.
|
42
|
+
This can be done by calling `freeze` below of all C interface definitions.
|
43
|
+
* In a Ractor it's possible to:
|
44
|
+
* load DLLs and call its functions, access its global variables
|
45
|
+
* use builtin typedefs
|
46
|
+
* use and modify ractor local typedefs
|
47
|
+
* define callbacks
|
48
|
+
* receive async callbacks from non-ruby threads
|
49
|
+
* use frozen FFI::Library based modules with all attributes (enums, structs, typedefs, functions, callbacks)
|
50
|
+
* invoke frozen functions and callbacks defined in the main Ractor
|
51
|
+
* use FFI::Struct definitions from the main Ractor
|
52
|
+
* In a Ractor it's impossible to:
|
53
|
+
* create new FFI::Library based modules
|
54
|
+
* create new FFI::Struct definitions
|
55
|
+
* use custom global typedefs
|
56
|
+
* use non-frozen FFI::Library based modules
|
57
|
+
* Allow type retrieval of attached functions+variables. #1023
|
58
|
+
* Make FFI classes `GC.compact` friendly. #1021
|
59
|
+
* Update libffi and disable custom trampoline when using libffi closure allocation. #1020
|
60
|
+
This is because libffi changed the way how closures are allocated to static trampolines.
|
61
|
+
* Add types.conf for loongarch64-linux. #943
|
62
|
+
* Add types.conf for sw_64-linux (Shen Wei 64-bit, based on Alpha). #1018
|
63
|
+
* Add support for aarch64-windows. #1035
|
64
|
+
* Windows: Update LoadLibrary error message to include error code. #1026
|
65
|
+
* Allow private release method for FFI::ManagedStruct and FFI::AutoPointer. #1029
|
66
|
+
* Add support for passing ABI version to FFI.map_library_name. #963
|
67
|
+
This adds the new class FFI::LibraryPath .
|
68
|
+
* Add support for ruby-3.2 to windows binary gem. #1047
|
69
|
+
* Enable debug symbols for `rake compile` builds to ease debugging. #1048
|
70
|
+
|
71
|
+
Removed:
|
72
|
+
* Remove allocator of AbstractMemory. #1013
|
73
|
+
This disables AbstractMemory.new, which has no practical use.
|
74
|
+
* Remove unused FFI::SizeTypes. #1022
|
75
|
+
|
76
|
+
|
77
|
+
1.15.5 / 2022-01-10
|
78
|
+
-------------------
|
79
|
+
|
80
|
+
Fixed:
|
81
|
+
* Fix long double argument or return values on 32bit i686. #849
|
82
|
+
* FFI::ConstGenerator: avoid usage of the same binary file simultaneously. #929
|
83
|
+
|
84
|
+
Added:
|
85
|
+
* Add Windows fat binary gem for Ruby-3.1
|
86
|
+
|
87
|
+
Removed:
|
88
|
+
* Remove Windows fat binary gem for Ruby < 2.4
|
89
|
+
|
90
|
+
|
91
|
+
1.15.4 / 2021-09-01
|
92
|
+
-------------------
|
93
|
+
|
94
|
+
Fixed:
|
95
|
+
* Fix build for uClibc. #913
|
96
|
+
* Correct module lookup when including `ffi-module` gem. #912
|
97
|
+
|
98
|
+
Changed:
|
99
|
+
* Use ruby code of the ffi gem in JRuby-9.2.20+. #915
|
100
|
+
|
101
|
+
|
102
|
+
1.15.3 / 2021-06-16
|
103
|
+
-------------------
|
104
|
+
|
105
|
+
Fixed:
|
106
|
+
* Fix temporary packaging issue with libffi. #904
|
107
|
+
|
108
|
+
|
109
|
+
1.15.2 / 2021-06-16
|
110
|
+
-------------------
|
111
|
+
|
112
|
+
Added:
|
113
|
+
* Add support for Windows MINGW-UCRT build. #903
|
114
|
+
* Add `/opt/homebrew/lib/` to fallback search paths to improve homebrew support. #880 #882
|
115
|
+
|
116
|
+
Changed:
|
117
|
+
* Regenerate `types.conf` for FreeBSD12 aarch64. #902
|
118
|
+
|
119
|
+
|
120
|
+
1.15.1 / 2021-05-22
|
121
|
+
-------------------
|
122
|
+
|
123
|
+
Fixed:
|
124
|
+
* Append -pthread to linker options. #893
|
125
|
+
* Use arm or aarch64 to identify Apple ARM CPU arch. #899
|
126
|
+
* Allow overriding `gcc` with the `CC` env var in `const_generator.rb` and `struct_generator.rb`. #897
|
127
|
+
|
128
|
+
|
129
|
+
1.15.0 / 2021-03-05
|
130
|
+
-------------------
|
131
|
+
|
132
|
+
Fixed:
|
133
|
+
* Fix MSVC build
|
134
|
+
* Fix async callbacks in conjunction with fork(). #884
|
135
|
+
|
136
|
+
Added:
|
137
|
+
* Allow to pass callbacks in varargs. #885
|
138
|
+
* Name the threads for FFI callback dispatcher and async thread calls for easier debugging. #883
|
139
|
+
The name can be retrieved by Thread.name and is shown by Thread.list.inspect etc.
|
140
|
+
Even gdb shows the thread name on supported operating systems.
|
141
|
+
* Add types.conf for powerpc64le-linux
|
142
|
+
* Add types.conf for riscv64-linux
|
143
|
+
* More release automation of ffi gems
|
144
|
+
|
145
|
+
Changed:
|
146
|
+
* Switch from rubygems-tasks to bundler/gem_helper
|
147
|
+
|
148
|
+
Removed:
|
149
|
+
* Remove unused VariadicInvoker#init
|
150
|
+
|
151
|
+
|
152
|
+
1.14.2 / 2020-12-21
|
153
|
+
-------------------
|
154
|
+
|
155
|
+
Fixed:
|
156
|
+
* Fix builtin libffi on newer Ubuntu caused by an outdated Makefile.in . #863
|
157
|
+
|
158
|
+
|
159
|
+
1.14.1 / 2020-12-19
|
160
|
+
-------------------
|
161
|
+
|
162
|
+
Changed:
|
163
|
+
* Revert changes to FFI::Pointer#write_string made in ffi-1.14.0.
|
164
|
+
It breaks compatibilty in a way that can cause hard to find errors. #857
|
165
|
+
|
166
|
+
|
167
|
+
1.14.0 / 2020-12-18
|
168
|
+
-------------------
|
169
|
+
|
170
|
+
Added:
|
171
|
+
* Add types.conf for x86_64-msys, x86_64-haiku, aarch64-openbsd and aarch64-darwin (alias arm64-darwin)
|
172
|
+
* Add method AbstractMemory#size_limit? . #829
|
173
|
+
* Add new extconf option --enable-libffi-alloc which is enabled per default on Apple M1 (arm64-darwin).
|
174
|
+
|
175
|
+
Changed:
|
176
|
+
* Do NULL pointer check only when array length > 0 . #305
|
177
|
+
* Raise an error on an unknown order argument. #830
|
178
|
+
* Change FFI::Pointer#write_string to terminate with a NUL byte like other string methods. #805
|
179
|
+
* Update bundled libffi to latest master.
|
180
|
+
|
181
|
+
Removed:
|
182
|
+
* Remove win32/stdint.h and stdbool.h because of copyright issue. #693
|
183
|
+
|
184
|
+
Fixed:
|
185
|
+
* Fix possible UTF-8 load error in loader script interpretation. #792
|
186
|
+
* Fix segfault on non-array argument to #write_array_of_*
|
187
|
+
* Fix memory leak in MethodHandle . #815
|
188
|
+
* Fix possible segfault in combination with fiddle or other libffi using gems . #835
|
189
|
+
* Fix possibility to use ffi ruby gem with JRuby-9.3 . #763
|
190
|
+
* Fix a GC issue, when a callback Proc is used on more than 2 callback signatures. #820
|
191
|
+
|
192
|
+
|
193
|
+
1.13.1 / 2020-06-09
|
194
|
+
-------------------
|
195
|
+
|
196
|
+
Changed:
|
197
|
+
* Revert use of `ucrtbase.dll` as default C library on Windows-MINGW.
|
198
|
+
`ucrtbase.dll` is still used on MSWIN target. #790
|
199
|
+
* Test for `ffi_prep_closure_loc()` to make sure we can use this function.
|
200
|
+
This fixes incorrect use of system libffi on MacOS Mojave (10.14). #787
|
201
|
+
* Update types.conf on x86_64-dragonflybsd
|
202
|
+
|
203
|
+
|
204
|
+
1.13.0 / 2020-06-01
|
205
|
+
-------------------
|
206
|
+
|
207
|
+
Added:
|
208
|
+
* Add TruffleRuby support. Almost all specs are running on TruffleRuby and succeed. #768
|
209
|
+
* Add ruby source files to the java gem. This allows to ship the Ruby library code per platform java gem and add it as a default gem to JRuby. #763
|
210
|
+
* Add FFI::Platform::LONG_DOUBLE_SIZE
|
211
|
+
* Add bounds checks for writing to an inline char[] . #756
|
212
|
+
* Add long double as callback return value. #771
|
213
|
+
* Update type definitions and add types from stdint.h and stddef.h on i386-windows, x86_64-windows, x86_64-darwin, x86_64-linux, arm-linux, powerpc-linux. #749
|
214
|
+
* Add new type definitions for powerpc-openbsd and sparcv9-openbsd. #775, #778
|
215
|
+
|
216
|
+
Changed:
|
217
|
+
* Raise required ruby version to >= 2.3.
|
218
|
+
* Lots of cleanups and improvements in library, specs and benchmarks.
|
219
|
+
* Fix a lot of compiler warnings at the C-extension
|
220
|
+
* Fix several install issues on MacOS:
|
221
|
+
* Look for libffi in SDK paths, since recent versions of macOS removed it from `/usr/include` . #757
|
222
|
+
* Fix error `ld: library not found for -lgcc_s.10.4`
|
223
|
+
* Don't built for i386 architecture as it is deprecated
|
224
|
+
* Several fixes for MSVC build on Windows. #779
|
225
|
+
* Use `ucrtbase.dll` as default C library on Windows instead of old `msvcrt.dll`. #779
|
226
|
+
* Update builtin libffi to fix a Powerpc issue with parameters of type long
|
227
|
+
* Allow unmodified sourcing of (the ruby code of) this gem in JRuby and TruffleRuby as a default gem. #747
|
228
|
+
* Improve check to detect if a module has a #find_type method suitable for FFI. This fixes compatibility with stdlib `mkmf` . #776
|
229
|
+
|
230
|
+
Removed:
|
231
|
+
* Reject callback with `:string` return type at definition, because it didn't work so far and is not save to use. #751, #782
|
232
|
+
|
233
|
+
|
234
|
+
1.12.2 / 2020-02-01
|
235
|
+
-------------------
|
236
|
+
|
237
|
+
* Fix possible segfault at FFI::Struct#[] and []= after GC.compact . #742
|
238
|
+
|
239
|
+
|
240
|
+
1.12.1 / 2020-01-14
|
241
|
+
-------------------
|
242
|
+
|
243
|
+
Added:
|
244
|
+
* Add binary gem support for ruby-2.7 on Windows
|
245
|
+
|
246
|
+
|
247
|
+
1.12.0 / 2020-01-14
|
248
|
+
-------------------
|
249
|
+
|
250
|
+
Added:
|
251
|
+
* FFI::VERSION is defined as part of `require 'ffi'` now.
|
252
|
+
It is no longer necessary to `require 'ffi/version'` .
|
253
|
+
|
254
|
+
Changed:
|
255
|
+
* Update libffi to latest master.
|
256
|
+
|
257
|
+
Deprecated:
|
258
|
+
* Overwriting struct layouts is now warned and will be disallowed in ffi-2.0. #734, #735
|
259
|
+
|
260
|
+
|
261
|
+
1.11.3 / 2019-11-25
|
262
|
+
-------------------
|
263
|
+
|
264
|
+
Removed:
|
265
|
+
* Remove support for tainted objects which cause deprecation warnings in ruby-2.7. #730
|
266
|
+
|
267
|
+
|
268
|
+
1.11.2 / 2019-11-11
|
269
|
+
-------------------
|
270
|
+
|
271
|
+
Added:
|
272
|
+
* Add DragonFlyBSD as a platform. #724
|
273
|
+
|
274
|
+
Changed:
|
275
|
+
* Sort all types.conf files, so that files and changes are easier to compare.
|
276
|
+
* Regenerated type conf for freebsd12 and x86_64-linux targets. #722
|
277
|
+
* Remove MACOSX_DEPLOYMENT_TARGET that was targeting very old version 10.4. #647
|
278
|
+
* Fix library name mangling for non glibc Linux/UNIX. #727
|
279
|
+
* Fix compiler warnings raised by ruby-2.7
|
280
|
+
* Update libffi to latest master.
|
281
|
+
|
282
|
+
|
283
|
+
1.11.1 / 2019-05-20
|
284
|
+
-------------------
|
285
|
+
|
286
|
+
Changed:
|
287
|
+
* Raise required ruby version to >=2.0. #699, #700
|
288
|
+
* Fix a possible linker error on ruby < 2.3 on Linux.
|
289
|
+
|
290
|
+
|
291
|
+
1.11.0 / 2019-05-17
|
292
|
+
-------------------
|
293
|
+
This version was yanked on 2019-05-20 to fix an install issue on ruby-1.9.3. #700
|
294
|
+
|
295
|
+
Added:
|
296
|
+
* Add ability to disable or force use of system libffi. #669
|
297
|
+
Use like `gem inst ffi -- --enable-system-libffi` .
|
298
|
+
* Add ability to call FFI callbacks from outside of FFI call frame. #584
|
299
|
+
* Add proper documentation to FFI::Generator and ::Task
|
300
|
+
* Add gemspec metadata. #696, #698
|
301
|
+
|
302
|
+
Changed:
|
303
|
+
* Fix stdcall on Win32. #649, #669
|
304
|
+
* Fix load paths for FFI::Generator::Task
|
305
|
+
* Fix FFI::Pointer#read_string(0) to return a binary String. #692
|
306
|
+
* Fix benchmark suite so that it runs on ruby-2.x
|
307
|
+
* Move FFI::Platform::CPU from C to Ruby. #663
|
308
|
+
* Move FFI::StructByReference to Ruby. #681
|
309
|
+
* Move FFI::DataConverter to Ruby (#661)
|
310
|
+
* Various cleanups and improvements of specs and benchmarks
|
311
|
+
|
312
|
+
Removed:
|
313
|
+
* Remove ruby-1.8 and 1.9 compatibility code. #683
|
314
|
+
* Remove unused spec files. #684
|
315
|
+
|
316
|
+
|
317
|
+
1.10.0 / 2019-01-06
|
318
|
+
-------------------
|
319
|
+
|
320
|
+
Added:
|
321
|
+
* Add /opt/local/lib/ to ffi's fallback library search path. #638
|
322
|
+
* Add binary gem support for ruby-2.6 on Windows
|
323
|
+
* Add FreeBSD on AArch64 and ARM support. #644
|
324
|
+
* Add FFI::LastError.winapi_error on Windows native or Cygwin. #633
|
325
|
+
|
326
|
+
Changed:
|
327
|
+
* Update to rake-compiler-dock-0.7.0
|
328
|
+
* Use 64-bit inodes on FreeBSD >= 12. #644
|
329
|
+
* Switch time_t and suseconds_t types to long on FreeBSD. #627
|
330
|
+
* Make register_t long_long on 64-bit FreeBSD. #644
|
331
|
+
* Fix Pointer#write_array_of_type #637
|
332
|
+
|
333
|
+
Removed:
|
334
|
+
* Drop binary gem support for ruby-2.0 and 2.1 on Windows
|
335
|
+
|
336
|
+
|
337
|
+
1.9.25 / 2018-06-03
|
338
|
+
-------------------
|
339
|
+
|
340
|
+
Changed:
|
341
|
+
* Revert closures via libffi.
|
342
|
+
This re-adds ClosurePool and fixes compat with SELinux enabled systems. #621
|
343
|
+
|
344
|
+
|
1
345
|
1.9.24 / 2018-06-02
|
2
346
|
-------------------
|
3
347
|
|
348
|
+
Security Note:
|
349
|
+
|
350
|
+
This update addresses vulnerability CVE-2018-1000201: DLL loading issue which can be hijacked on Windows OS, when a Symbol is used as DLL name instead of a String. Found by Matthew Bush.
|
351
|
+
|
4
352
|
Added:
|
5
353
|
* Added a CHANGELOG file
|
6
354
|
* Add mips64(eb) support, and mips r6 support. (#601)
|
data/Gemfile
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
group :development do
|
4
|
-
gem 'rake', '~>
|
5
|
-
gem 'rake-compiler', '~> 1.
|
6
|
-
gem 'rake-compiler-dock', '~> 0
|
4
|
+
gem 'rake', '~> 13.0'
|
5
|
+
gem 'rake-compiler', '~> 1.1'
|
6
|
+
gem 'rake-compiler-dock', '~> 1.0'
|
7
7
|
gem 'rspec', '~> 3.0'
|
8
|
-
gem '
|
9
|
-
gem "rubysl", "~> 2.0", :platforms => 'rbx'
|
8
|
+
gem 'bundler', '>= 1.16', '< 3'
|
10
9
|
end
|
11
10
|
|
12
11
|
group :doc do
|
data/README.md
CHANGED
@@ -1,20 +1,21 @@
|
|
1
|
-
#
|
1
|
+
# Ruby-FFI https://github.com/ffi/ffi/wiki
|
2
2
|
|
3
3
|
## Description
|
4
4
|
|
5
|
-
Ruby-FFI is a
|
5
|
+
Ruby-FFI is a gem for programmatically loading dynamically-linked native
|
6
6
|
libraries, binding functions within them, and calling those functions
|
7
7
|
from Ruby code. Moreover, a Ruby-FFI extension works without changes
|
8
|
-
on
|
9
|
-
using Ruby-FFI](https://
|
8
|
+
on CRuby (MRI), JRuby, Rubinius and TruffleRuby. [Discover why you should write your next extension
|
9
|
+
using Ruby-FFI](https://github.com/ffi/ffi/wiki/why-use-ffi).
|
10
10
|
|
11
|
-
## Features
|
11
|
+
## Features
|
12
12
|
|
13
13
|
* Intuitive DSL
|
14
14
|
* Supports all C native types
|
15
15
|
* C structs (also nested), enums and global variables
|
16
|
-
* Callbacks from C to
|
16
|
+
* Callbacks from C to Ruby
|
17
17
|
* Automatic garbage collection of native memory
|
18
|
+
* Usable in Ractor: [How-to-use-FFI-in-Ruby-Ractors](https://github.com/ffi/ffi/wiki/Ractors)
|
18
19
|
|
19
20
|
## Synopsis
|
20
21
|
|
@@ -30,18 +31,32 @@ end
|
|
30
31
|
MyLib.puts 'Hello, World using libc!'
|
31
32
|
```
|
32
33
|
|
33
|
-
For less minimalistic and more
|
34
|
+
For less minimalistic and more examples you may look at:
|
34
35
|
|
35
|
-
* the samples
|
36
|
-
* the examples on the [wiki](https://
|
37
|
-
* the projects using FFI listed on
|
36
|
+
* the `samples/` folder
|
37
|
+
* the examples on the [wiki](https://github.com/ffi/ffi/wiki)
|
38
|
+
* the projects using FFI listed on the wiki: https://github.com/ffi/ffi/wiki/projects-using-ffi
|
38
39
|
|
39
40
|
## Requirements
|
40
41
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
* libffi development
|
42
|
+
When installing the gem on CRuby (MRI), you will need:
|
43
|
+
* A C compiler (e.g., Xcode on macOS, `gcc` or `clang` on everything else)
|
44
|
+
Optionally (speeds up installation):
|
45
|
+
* The `libffi` library and development headers - this is commonly in the `libffi-dev` or `libffi-devel` packages
|
46
|
+
|
47
|
+
The ffi gem comes with a builtin libffi version, which is used, when the system libffi library is not available or too old.
|
48
|
+
Use of the system libffi can be enforced by:
|
49
|
+
```
|
50
|
+
gem install ffi -- --enable-system-libffi # to install the gem manually
|
51
|
+
bundle config build.ffi --enable-system-libffi # for bundle install
|
52
|
+
```
|
53
|
+
or prevented by `--disable-system-libffi`.
|
54
|
+
|
55
|
+
On Linux systems running with [PaX](https://en.wikipedia.org/wiki/PaX) (Gentoo, Alpine, etc.), FFI may trigger `mprotect` errors. You may need to disable [mprotect](https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options#Restrict_mprotect.28.29) for ruby (`paxctl -m [/path/to/ruby]`) for the time being until a solution is found.
|
56
|
+
|
57
|
+
On FreeBSD systems pkgconf must be installed for the gem to be able to compile using clang. Install either via packages `pkg install pkgconf` or from ports via `devel/pkgconf`.
|
58
|
+
|
59
|
+
On JRuby and TruffleRuby, there are no requirements to install the FFI gem, and `require 'ffi'` works even without installing the gem (i.e., the gem is preinstalled on these implementations).
|
45
60
|
|
46
61
|
## Installation
|
47
62
|
|
@@ -49,18 +64,29 @@ From rubygems:
|
|
49
64
|
|
50
65
|
[sudo] gem install ffi
|
51
66
|
|
67
|
+
From a Gemfile using git or GitHub
|
68
|
+
|
69
|
+
gem 'ffi', github: 'ffi/ffi', submodules: true
|
70
|
+
|
52
71
|
or from the git repository on github:
|
53
72
|
|
54
73
|
git clone git://github.com/ffi/ffi.git
|
55
|
-
git submodule update --init --recursive
|
56
74
|
cd ffi
|
75
|
+
git submodule update --init --recursive
|
76
|
+
bundle install
|
57
77
|
rake install
|
58
78
|
|
79
|
+
### Install options:
|
80
|
+
|
81
|
+
* `--enable-system-libffi` : Force usage of system libffi
|
82
|
+
* `--disable-system-libffi` : Force usage of builtin libffi
|
83
|
+
* `--enable-libffi-alloc` : Force closure allocation by libffi
|
84
|
+
* `--disable-libffi-alloc` : Force closure allocation by builtin method
|
85
|
+
|
59
86
|
## License
|
60
87
|
|
61
88
|
The ffi library is covered by the BSD license, also see the LICENSE file.
|
62
|
-
The specs are
|
63
|
-
as Rubyspec, see the LICENSE.SPECS file.
|
89
|
+
The specs are covered by the same license as [ruby/spec](https://github.com/ruby/spec), the MIT license.
|
64
90
|
|
65
91
|
## Credits
|
66
92
|
|
@@ -72,6 +98,7 @@ The following people have submitted code, bug reports, or otherwise contributed
|
|
72
98
|
* Andreas Niederl <rico32@gmx.net>
|
73
99
|
* Andrew Cholakian <andrew@andrewvc.com>
|
74
100
|
* Antonio Terceiro <terceiro@softwarelivre.org>
|
101
|
+
* Benoit Daloze <eregontp@gmail.com>
|
75
102
|
* Brian Candler <B.Candler@pobox.com>
|
76
103
|
* Brian D. Burns <burns180@gmail.com>
|
77
104
|
* Bryan Kearney <bkearney@redhat.com>
|