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
@@ -0,0 +1,333 @@
|
|
1
|
+
#!/usr/bin/perl -w
|
2
|
+
|
3
|
+
# make_sunver.pl
|
4
|
+
#
|
5
|
+
# This script takes at least two arguments, a GNU style version script and
|
6
|
+
# a list of object and archive files, and generates a corresponding Sun
|
7
|
+
# style version script as follows:
|
8
|
+
#
|
9
|
+
# Each glob pattern, C++ mangled pattern or literal in the input script is
|
10
|
+
# matched against all global symbols in the input objects, emitting those
|
11
|
+
# that matched (or nothing if no match was found).
|
12
|
+
# A comment with the original pattern and its type is left in the output
|
13
|
+
# file to make it easy to understand the matches.
|
14
|
+
#
|
15
|
+
# It uses elfdump when present (native), GNU readelf otherwise.
|
16
|
+
# It depends on the GNU version of c++filt, since it must understand the
|
17
|
+
# GNU mangling style.
|
18
|
+
|
19
|
+
use FileHandle;
|
20
|
+
use IPC::Open2;
|
21
|
+
|
22
|
+
# Enforce C locale.
|
23
|
+
$ENV{'LC_ALL'} = "C";
|
24
|
+
$ENV{'LANG'} = "C";
|
25
|
+
|
26
|
+
# Input version script, GNU style.
|
27
|
+
my $symvers = shift;
|
28
|
+
|
29
|
+
##########
|
30
|
+
# Get all the symbols from the library, match them, and add them to a hash.
|
31
|
+
|
32
|
+
my %sym_hash = ();
|
33
|
+
|
34
|
+
# List of objects and archives to process.
|
35
|
+
my @OBJECTS = ();
|
36
|
+
|
37
|
+
# List of shared objects to omit from processing.
|
38
|
+
my @SHAREDOBJS = ();
|
39
|
+
|
40
|
+
# Filter out those input archives that have corresponding shared objects to
|
41
|
+
# avoid adding all symbols matched in the archive to the output map.
|
42
|
+
foreach $file (@ARGV) {
|
43
|
+
if (($so = $file) =~ s/\.a$/.so/ && -e $so) {
|
44
|
+
printf STDERR "omitted $file -> $so\n";
|
45
|
+
push (@SHAREDOBJS, $so);
|
46
|
+
} else {
|
47
|
+
push (@OBJECTS, $file);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
# We need to detect and ignore hidden symbols. Solaris nm can only detect
|
52
|
+
# this in the harder to parse default output format, and GNU nm not at all,
|
53
|
+
# so use elfdump -s in the native case and GNU readelf -s otherwise.
|
54
|
+
# GNU objdump -t cannot be used since it produces a variable number of
|
55
|
+
# columns.
|
56
|
+
|
57
|
+
# The path to elfdump.
|
58
|
+
my $elfdump = "/usr/ccs/bin/elfdump";
|
59
|
+
|
60
|
+
if (-f $elfdump) {
|
61
|
+
open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;
|
62
|
+
my $skip_arsym = 0;
|
63
|
+
|
64
|
+
while (<ELFDUMP>) {
|
65
|
+
chomp;
|
66
|
+
|
67
|
+
# Ignore empty lines.
|
68
|
+
if (/^$/) {
|
69
|
+
# End of archive symbol table, stop skipping.
|
70
|
+
$skip_arsym = 0 if $skip_arsym;
|
71
|
+
next;
|
72
|
+
}
|
73
|
+
|
74
|
+
# Keep skipping until end of archive symbol table.
|
75
|
+
next if ($skip_arsym);
|
76
|
+
|
77
|
+
# Ignore object name header for individual objects and archives.
|
78
|
+
next if (/:$/);
|
79
|
+
|
80
|
+
# Ignore table header lines.
|
81
|
+
next if (/^Symbol Table Section:/);
|
82
|
+
next if (/index.*value.*size/);
|
83
|
+
|
84
|
+
# Start of archive symbol table: start skipping.
|
85
|
+
if (/^Symbol Table: \(archive/) {
|
86
|
+
$skip_arsym = 1;
|
87
|
+
next;
|
88
|
+
}
|
89
|
+
|
90
|
+
# Split table.
|
91
|
+
(undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
|
92
|
+
|
93
|
+
# Error out for unknown input.
|
94
|
+
die "unknown input line:\n$_" unless defined($bind);
|
95
|
+
|
96
|
+
# Ignore local symbols.
|
97
|
+
next if ($bind eq "LOCL");
|
98
|
+
# Ignore hidden symbols.
|
99
|
+
next if ($oth eq "H");
|
100
|
+
# Ignore undefined symbols.
|
101
|
+
next if ($shndx eq "UNDEF");
|
102
|
+
# Error out for unhandled cases.
|
103
|
+
if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
|
104
|
+
die "unhandled symbol:\n$_";
|
105
|
+
}
|
106
|
+
|
107
|
+
# Remember symbol.
|
108
|
+
$sym_hash{$name}++;
|
109
|
+
}
|
110
|
+
close ELFDUMP or die "$elfdump error";
|
111
|
+
} else {
|
112
|
+
open READELF, 'readelf -s -W '.(join ' ',@OBJECTS).'|' or die $!;
|
113
|
+
# Process each symbol.
|
114
|
+
while (<READELF>) {
|
115
|
+
chomp;
|
116
|
+
|
117
|
+
# Ignore empty lines.
|
118
|
+
next if (/^$/);
|
119
|
+
|
120
|
+
# Ignore object name header.
|
121
|
+
next if (/^File: .*$/);
|
122
|
+
|
123
|
+
# Ignore table header lines.
|
124
|
+
next if (/^Symbol table.*contains.*:/);
|
125
|
+
next if (/Num:.*Value.*Size/);
|
126
|
+
|
127
|
+
# Split table.
|
128
|
+
(undef, undef, undef, undef, $bind, $vis, $ndx, $name) = split;
|
129
|
+
|
130
|
+
# Error out for unknown input.
|
131
|
+
die "unknown input line:\n$_" unless defined($bind);
|
132
|
+
|
133
|
+
# Ignore local symbols.
|
134
|
+
next if ($bind eq "LOCAL");
|
135
|
+
# Ignore hidden symbols.
|
136
|
+
next if ($vis eq "HIDDEN");
|
137
|
+
# Ignore undefined symbols.
|
138
|
+
next if ($ndx eq "UND");
|
139
|
+
# Error out for unhandled cases.
|
140
|
+
if ($bind !~ /^(GLOBAL|WEAK)/ or $vis ne "DEFAULT") {
|
141
|
+
die "unhandled symbol:\n$_";
|
142
|
+
}
|
143
|
+
|
144
|
+
# Remember symbol.
|
145
|
+
$sym_hash{$name}++;
|
146
|
+
}
|
147
|
+
close READELF or die "readelf error";
|
148
|
+
}
|
149
|
+
|
150
|
+
##########
|
151
|
+
# The various types of glob patterns.
|
152
|
+
#
|
153
|
+
# A glob pattern that is to be applied to the demangled name: 'cxx'.
|
154
|
+
# A glob patterns that applies directly to the name in the .o files: 'glob'.
|
155
|
+
# This pattern is ignored; used for local variables (usually just '*'): 'ign'.
|
156
|
+
|
157
|
+
# The type of the current pattern.
|
158
|
+
my $glob = 'glob';
|
159
|
+
|
160
|
+
# We're currently inside `extern "C++"', which Sun ld doesn't understand.
|
161
|
+
my $in_extern = 0;
|
162
|
+
|
163
|
+
# The c++filt command to use. This *must* be GNU c++filt; the Sun Studio
|
164
|
+
# c++filt doesn't handle the GNU mangling style.
|
165
|
+
my $cxxfilt = $ENV{'CXXFILT'} || "c++filt";
|
166
|
+
|
167
|
+
# The current version name.
|
168
|
+
my $current_version = "";
|
169
|
+
|
170
|
+
# Was there any attempt to match a symbol to this version?
|
171
|
+
my $matches_attempted;
|
172
|
+
|
173
|
+
# The number of versions which matched this symbol.
|
174
|
+
my $matched_symbols;
|
175
|
+
|
176
|
+
open F,$symvers or die $!;
|
177
|
+
|
178
|
+
# Print information about generating this file
|
179
|
+
print "# This file was generated by make_sunver.pl. DO NOT EDIT!\n";
|
180
|
+
print "# It was generated by:\n";
|
181
|
+
printf "# %s %s %s\n", $0, $symvers, (join ' ',@ARGV);
|
182
|
+
printf "# Omitted archives with corresponding shared libraries: %s\n",
|
183
|
+
(join ' ', @SHAREDOBJS) if $#SHAREDOBJS >= 0;
|
184
|
+
print "#\n\n";
|
185
|
+
|
186
|
+
while (<F>) {
|
187
|
+
# Lines of the form '};'
|
188
|
+
if (/^([ \t]*)(\}[ \t]*;[ \t]*)$/) {
|
189
|
+
$glob = 'glob';
|
190
|
+
if ($in_extern) {
|
191
|
+
$in_extern--;
|
192
|
+
print "$1##$2\n";
|
193
|
+
} else {
|
194
|
+
print;
|
195
|
+
}
|
196
|
+
next;
|
197
|
+
}
|
198
|
+
|
199
|
+
# Lines of the form '} SOME_VERSION_NAME_1.0;'
|
200
|
+
if (/^[ \t]*\}[ \tA-Z0-9_.a-z]+;[ \t]*$/) {
|
201
|
+
$glob = 'glob';
|
202
|
+
# We tried to match symbols agains this version, but none matched.
|
203
|
+
# Emit dummy hidden symbol to avoid marking this version WEAK.
|
204
|
+
if ($matches_attempted && $matched_symbols == 0) {
|
205
|
+
print " hidden:\n";
|
206
|
+
print " .force_WEAK_off_$current_version = DATA S0x0 V0x0;\n";
|
207
|
+
}
|
208
|
+
print; next;
|
209
|
+
}
|
210
|
+
|
211
|
+
# Comment and blank lines
|
212
|
+
if (/^[ \t]*\#/) { print; next; }
|
213
|
+
if (/^[ \t]*$/) { print; next; }
|
214
|
+
|
215
|
+
# Lines of the form '{'
|
216
|
+
if (/^([ \t]*){$/) {
|
217
|
+
if ($in_extern) {
|
218
|
+
print "$1##{\n";
|
219
|
+
} else {
|
220
|
+
print;
|
221
|
+
}
|
222
|
+
next;
|
223
|
+
}
|
224
|
+
|
225
|
+
# Lines of the form 'SOME_VERSION_NAME_1.1 {'
|
226
|
+
if (/^([A-Z0-9_.]+)[ \t]+{$/) {
|
227
|
+
# Record version name.
|
228
|
+
$current_version = $1;
|
229
|
+
# Reset match attempts, #matched symbols for this version.
|
230
|
+
$matches_attempted = 0;
|
231
|
+
$matched_symbols = 0;
|
232
|
+
print;
|
233
|
+
next;
|
234
|
+
}
|
235
|
+
|
236
|
+
# Ignore 'global:'
|
237
|
+
if (/^[ \t]*global:$/) { print; next; }
|
238
|
+
|
239
|
+
# After 'local:', globs should be ignored, they won't be exported.
|
240
|
+
if (/^[ \t]*local:$/) {
|
241
|
+
$glob = 'ign';
|
242
|
+
print;
|
243
|
+
next;
|
244
|
+
}
|
245
|
+
|
246
|
+
# After 'extern "C++"', globs are C++ patterns
|
247
|
+
if (/^([ \t]*)(extern \"C\+\+\"[ \t]*)$/) {
|
248
|
+
$in_extern++;
|
249
|
+
$glob = 'cxx';
|
250
|
+
# Need to comment, Sun ld cannot handle this.
|
251
|
+
print "$1##$2\n"; next;
|
252
|
+
}
|
253
|
+
|
254
|
+
# Chomp newline now we're done with passing through the input file.
|
255
|
+
chomp;
|
256
|
+
|
257
|
+
# Catch globs. Note that '{}' is not allowed in globs by this script,
|
258
|
+
# so only '*' and '[]' are available.
|
259
|
+
if (/^([ \t]*)([^ \t;{}#]+);?[ \t]*$/) {
|
260
|
+
my $ws = $1;
|
261
|
+
my $ptn = $2;
|
262
|
+
# Turn the glob into a regex by replacing '*' with '.*', '?' with '.'.
|
263
|
+
# Keep $ptn so we can still print the original form.
|
264
|
+
($pattern = $ptn) =~ s/\*/\.\*/g;
|
265
|
+
$pattern =~ s/\?/\./g;
|
266
|
+
|
267
|
+
if ($glob eq 'ign') {
|
268
|
+
# We're in a local: * section; just continue.
|
269
|
+
print "$_\n";
|
270
|
+
next;
|
271
|
+
}
|
272
|
+
|
273
|
+
# Print the glob commented for human readers.
|
274
|
+
print "$ws##$ptn ($glob)\n";
|
275
|
+
# We tried to match a symbol to this version.
|
276
|
+
$matches_attempted++;
|
277
|
+
|
278
|
+
if ($glob eq 'glob') {
|
279
|
+
my %ptn_syms = ();
|
280
|
+
|
281
|
+
# Match ptn against symbols in %sym_hash.
|
282
|
+
foreach my $sym (keys %sym_hash) {
|
283
|
+
# Maybe it matches one of the patterns based on the symbol in
|
284
|
+
# the .o file.
|
285
|
+
$ptn_syms{$sym}++ if ($sym =~ /^$pattern$/);
|
286
|
+
}
|
287
|
+
|
288
|
+
foreach my $sym (sort keys(%ptn_syms)) {
|
289
|
+
$matched_symbols++;
|
290
|
+
print "$ws$sym;\n";
|
291
|
+
}
|
292
|
+
} elsif ($glob eq 'cxx') {
|
293
|
+
my %dem_syms = ();
|
294
|
+
|
295
|
+
# Verify that we're actually using GNU c++filt. Other versions
|
296
|
+
# most likely cannot handle GNU style symbol mangling.
|
297
|
+
my $cxxout = `$cxxfilt --version 2>&1`;
|
298
|
+
$cxxout =~ m/GNU/ or die "$0 requires GNU c++filt to function";
|
299
|
+
|
300
|
+
# Talk to c++filt through a pair of file descriptors.
|
301
|
+
# Need to start a fresh instance per pattern, otherwise the
|
302
|
+
# process grows to 500+ MB.
|
303
|
+
my $pid = open2(*FILTIN, *FILTOUT, $cxxfilt) or die $!;
|
304
|
+
|
305
|
+
# Match ptn against symbols in %sym_hash.
|
306
|
+
foreach my $sym (keys %sym_hash) {
|
307
|
+
# No? Well, maybe its demangled form matches one of those
|
308
|
+
# patterns.
|
309
|
+
printf FILTOUT "%s\n",$sym;
|
310
|
+
my $dem = <FILTIN>;
|
311
|
+
chomp $dem;
|
312
|
+
$dem_syms{$sym}++ if ($dem =~ /^$pattern$/);
|
313
|
+
}
|
314
|
+
|
315
|
+
close FILTOUT or die "c++filt error";
|
316
|
+
close FILTIN or die "c++filt error";
|
317
|
+
# Need to wait for the c++filt process to avoid lots of zombies.
|
318
|
+
waitpid $pid, 0;
|
319
|
+
|
320
|
+
foreach my $sym (sort keys(%dem_syms)) {
|
321
|
+
$matched_symbols++;
|
322
|
+
print "$ws$sym;\n";
|
323
|
+
}
|
324
|
+
} else {
|
325
|
+
# No? Well, then ignore it.
|
326
|
+
}
|
327
|
+
next;
|
328
|
+
}
|
329
|
+
# Important sanity check. This script can't handle lots of formats
|
330
|
+
# that GNU ld can, so be sure to error out if one is seen!
|
331
|
+
die "strange line `$_'";
|
332
|
+
}
|
333
|
+
close F;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994-
|
4
|
+
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
5
5
|
|
6
6
|
# This Makefile.in is free software; the Free Software Foundation
|
7
7
|
# gives unlimited permission to copy and/or distribute it,
|
@@ -91,7 +91,6 @@ target_triplet = @target@
|
|
91
91
|
subdir = man
|
92
92
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
93
93
|
am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
94
|
-
$(top_srcdir)/m4/ax_append_flag.m4 \
|
95
94
|
$(top_srcdir)/m4/ax_cc_maxopt.m4 \
|
96
95
|
$(top_srcdir)/m4/ax_cflags_warn_all.m4 \
|
97
96
|
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
@@ -100,6 +99,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
|
100
99
|
$(top_srcdir)/m4/ax_enable_builddir.m4 \
|
101
100
|
$(top_srcdir)/m4/ax_gcc_archflag.m4 \
|
102
101
|
$(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
|
102
|
+
$(top_srcdir)/m4/ax_prepend_flag.m4 \
|
103
|
+
$(top_srcdir)/m4/ax_require_defined.m4 \
|
103
104
|
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
104
105
|
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
105
106
|
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
@@ -165,7 +166,6 @@ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
|
165
166
|
am__DIST_COMMON = $(srcdir)/Makefile.in
|
166
167
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
167
168
|
ACLOCAL = @ACLOCAL@
|
168
|
-
ALLOCA = @ALLOCA@
|
169
169
|
AMTAR = @AMTAR@
|
170
170
|
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
171
171
|
AM_LTLDFLAGS = @AM_LTLDFLAGS@
|
@@ -181,8 +181,9 @@ CCASDEPMODE = @CCASDEPMODE@
|
|
181
181
|
CCASFLAGS = @CCASFLAGS@
|
182
182
|
CCDEPMODE = @CCDEPMODE@
|
183
183
|
CFLAGS = @CFLAGS@
|
184
|
-
CPP = @CPP@
|
185
184
|
CPPFLAGS = @CPPFLAGS@
|
185
|
+
CSCOPE = @CSCOPE@
|
186
|
+
CTAGS = @CTAGS@
|
186
187
|
CXX = @CXX@
|
187
188
|
CXXCPP = @CXXCPP@
|
188
189
|
CXXDEPMODE = @CXXDEPMODE@
|
@@ -197,9 +198,11 @@ ECHO_C = @ECHO_C@
|
|
197
198
|
ECHO_N = @ECHO_N@
|
198
199
|
ECHO_T = @ECHO_T@
|
199
200
|
EGREP = @EGREP@
|
201
|
+
ETAGS = @ETAGS@
|
200
202
|
EXEEXT = @EXEEXT@
|
201
203
|
FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
|
202
204
|
FGREP = @FGREP@
|
205
|
+
FILECMD = @FILECMD@
|
203
206
|
GREP = @GREP@
|
204
207
|
HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
|
205
208
|
HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
|
@@ -238,6 +241,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
238
241
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
239
242
|
PRTDIAG = @PRTDIAG@
|
240
243
|
RANLIB = @RANLIB@
|
244
|
+
READELF = @READELF@
|
241
245
|
SECTION_LDFLAGS = @SECTION_LDFLAGS@
|
242
246
|
SED = @SED@
|
243
247
|
SET_MAKE = @SET_MAKE@
|
@@ -304,6 +308,7 @@ target_alias = @target_alias@
|
|
304
308
|
target_cpu = @target_cpu@
|
305
309
|
target_os = @target_os@
|
306
310
|
target_vendor = @target_vendor@
|
311
|
+
tmake_file = @tmake_file@
|
307
312
|
toolexecdir = @toolexecdir@
|
308
313
|
toolexeclibdir = @toolexeclibdir@
|
309
314
|
top_build_prefix = @top_build_prefix@
|
@@ -332,8 +337,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
332
337
|
*config.status*) \
|
333
338
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
334
339
|
*) \
|
335
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(
|
336
|
-
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(
|
340
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
341
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
337
342
|
esac;
|
338
343
|
|
339
344
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
@@ -399,8 +404,10 @@ ctags CTAGS:
|
|
399
404
|
|
400
405
|
cscope cscopelist:
|
401
406
|
|
407
|
+
distdir: $(BUILT_SOURCES)
|
408
|
+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
402
409
|
|
403
|
-
distdir: $(DISTFILES)
|
410
|
+
distdir-am: $(DISTFILES)
|
404
411
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
405
412
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
406
413
|
list='$(DISTFILES)'; \
|
data/ext/ffi_c/libffi/missing
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# Common wrapper for a few potentially missing GNU programs.
|
3
3
|
|
4
|
-
scriptversion=
|
4
|
+
scriptversion=2018-03-07.03; # UTC
|
5
5
|
|
6
|
-
# Copyright (C) 1996-
|
6
|
+
# Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
7
7
|
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
8
8
|
|
9
9
|
# This program is free software; you can redistribute it and/or modify
|
@@ -17,7 +17,7 @@ scriptversion=2013-10-28.13; # UTC
|
|
17
17
|
# GNU General Public License for more details.
|
18
18
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
|
-
# along with this program. If not, see <
|
20
|
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
21
21
|
|
22
22
|
# As a special exception to the GNU General Public License, if you
|
23
23
|
# distribute this file as part of a program that contains a
|
@@ -101,9 +101,9 @@ else
|
|
101
101
|
exit $st
|
102
102
|
fi
|
103
103
|
|
104
|
-
perl_URL=
|
105
|
-
flex_URL=
|
106
|
-
gnu_software_URL=
|
104
|
+
perl_URL=https://www.perl.org/
|
105
|
+
flex_URL=https://github.com/westes/flex
|
106
|
+
gnu_software_URL=https://www.gnu.org/software
|
107
107
|
|
108
108
|
program_details ()
|
109
109
|
{
|
@@ -207,9 +207,9 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
|
207
207
|
exit $st
|
208
208
|
|
209
209
|
# Local variables:
|
210
|
-
# eval: (add-hook '
|
210
|
+
# eval: (add-hook 'before-save-hook 'time-stamp)
|
211
211
|
# time-stamp-start: "scriptversion="
|
212
212
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
213
|
-
# time-stamp-time-zone: "
|
213
|
+
# time-stamp-time-zone: "UTC0"
|
214
214
|
# time-stamp-end: "; # UTC"
|
215
215
|
# End:
|
@@ -0,0 +1,33 @@
|
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
+
# Visual Studio 15
|
4
|
+
VisualStudioVersion = 15.0.28302.56
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ffi_staticLib_arm64", "Ffi_staticLib.vcxproj", "{115502C0-BE05-4767-BF19-5C87D805FAD6}"
|
7
|
+
EndProject
|
8
|
+
Global
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
10
|
+
Debug|ARM64 = Debug|ARM64
|
11
|
+
Debug|x64 = Debug|x64
|
12
|
+
Debug|x86 = Debug|x86
|
13
|
+
Release|ARM64 = Release|ARM64
|
14
|
+
Release|x64 = Release|x64
|
15
|
+
Release|x86 = Release|x86
|
16
|
+
EndGlobalSection
|
17
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
18
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
19
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.Build.0 = Debug|ARM64
|
20
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x64.ActiveCfg = Debug|ARM64
|
21
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x86.ActiveCfg = Debug|ARM64
|
22
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.ActiveCfg = Release|ARM64
|
23
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.Build.0 = Release|ARM64
|
24
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x64.ActiveCfg = Release|ARM64
|
25
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x86.ActiveCfg = Release|ARM64
|
26
|
+
EndGlobalSection
|
27
|
+
GlobalSection(SolutionProperties) = preSolution
|
28
|
+
HideSolutionNode = FALSE
|
29
|
+
EndGlobalSection
|
30
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
31
|
+
SolutionGuid = {241C54C7-20DD-4897-9376-E6B6D1B43BD5}
|
32
|
+
EndGlobalSection
|
33
|
+
EndGlobal
|
@@ -0,0 +1,130 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug|ARM64">
|
5
|
+
<Configuration>Debug</Configuration>
|
6
|
+
<Platform>ARM64</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Release|ARM64">
|
9
|
+
<Configuration>Release</Configuration>
|
10
|
+
<Platform>ARM64</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
</ItemGroup>
|
13
|
+
<PropertyGroup Label="Globals">
|
14
|
+
<VCProjectVersion>15.0</VCProjectVersion>
|
15
|
+
<ProjectGuid>{115502C0-BE05-4767-BF19-5C87D805FAD6}</ProjectGuid>
|
16
|
+
<Keyword>Win32Proj</Keyword>
|
17
|
+
<RootNamespace>FfistaticLib</RootNamespace>
|
18
|
+
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
19
|
+
<ProjectName>Ffi_staticLib_arm64</ProjectName>
|
20
|
+
</PropertyGroup>
|
21
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
22
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
23
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
24
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
25
|
+
<PlatformToolset>v141</PlatformToolset>
|
26
|
+
<CharacterSet>Unicode</CharacterSet>
|
27
|
+
</PropertyGroup>
|
28
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
29
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
30
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
31
|
+
<PlatformToolset>v141</PlatformToolset>
|
32
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
33
|
+
<CharacterSet>Unicode</CharacterSet>
|
34
|
+
</PropertyGroup>
|
35
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
36
|
+
<ImportGroup Label="ExtensionSettings">
|
37
|
+
</ImportGroup>
|
38
|
+
<ImportGroup Label="Shared">
|
39
|
+
</ImportGroup>
|
40
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
|
41
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
42
|
+
</ImportGroup>
|
43
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
|
44
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
45
|
+
</ImportGroup>
|
46
|
+
<PropertyGroup Label="UserMacros" />
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
48
|
+
<LinkIncremental>true</LinkIncremental>
|
49
|
+
</PropertyGroup>
|
50
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
51
|
+
<LinkIncremental>false</LinkIncremental>
|
52
|
+
</PropertyGroup>
|
53
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
54
|
+
<ClCompile>
|
55
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
56
|
+
<WarningLevel>Level3</WarningLevel>
|
57
|
+
<Optimization>Disabled</Optimization>
|
58
|
+
<SDLCheck>true</SDLCheck>
|
59
|
+
<PreprocessorDefinitions>FFI_BUILDING_DLL;_DEBUG;_LIB;USE_DL_PREFIX;ARM64;_M_ARM64;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
60
|
+
<ConformanceMode>true</ConformanceMode>
|
61
|
+
<AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
62
|
+
<IgnoreStandardIncludePath>false</IgnoreStandardIncludePath>
|
63
|
+
<BrowseInformation>true</BrowseInformation>
|
64
|
+
<OmitFramePointers>
|
65
|
+
</OmitFramePointers>
|
66
|
+
<WholeProgramOptimization>false</WholeProgramOptimization>
|
67
|
+
</ClCompile>
|
68
|
+
<Link>
|
69
|
+
<SubSystem>Windows</SubSystem>
|
70
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
71
|
+
</Link>
|
72
|
+
</ItemDefinitionGroup>
|
73
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
74
|
+
<ClCompile>
|
75
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
76
|
+
<WarningLevel>Level3</WarningLevel>
|
77
|
+
<Optimization>MaxSpeed</Optimization>
|
78
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
79
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
80
|
+
<SDLCheck>true</SDLCheck>
|
81
|
+
<PreprocessorDefinitions>FFI_BUILDING_DLL;USE_DL_PREFIX;ARM64;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
82
|
+
<ConformanceMode>true</ConformanceMode>
|
83
|
+
<AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
84
|
+
<OmitFramePointers>true</OmitFramePointers>
|
85
|
+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
86
|
+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
|
87
|
+
<AdditionalUsingDirectories>..\..\src;..\..\src\aarch64;%(AdditionalUsingDirectories)</AdditionalUsingDirectories>
|
88
|
+
</ClCompile>
|
89
|
+
<Link>
|
90
|
+
<SubSystem>Windows</SubSystem>
|
91
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
92
|
+
<OptimizeReferences>true</OptimizeReferences>
|
93
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
94
|
+
</Link>
|
95
|
+
<ProjectReference>
|
96
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
97
|
+
</ProjectReference>
|
98
|
+
</ItemDefinitionGroup>
|
99
|
+
<ItemGroup>
|
100
|
+
<ClInclude Include=".\aarch64_include\ffi.h" />
|
101
|
+
<ClInclude Include=".\aarch64_include\fficonfig.h" />
|
102
|
+
<ClInclude Include="..\..\src\aarch64\ffitarget.h" />
|
103
|
+
<ClInclude Include="..\include\ffi_cfi.h" />
|
104
|
+
<ClInclude Include="..\include\ffi_common.h" />
|
105
|
+
<ClInclude Include="..\..\src\aarch64\internal.h" />
|
106
|
+
</ItemGroup>
|
107
|
+
<ItemGroup>
|
108
|
+
<ClCompile Include="..\..\src\closures.c" />
|
109
|
+
<ClCompile Include="..\..\src\dlmalloc.c" />
|
110
|
+
<ClCompile Include="..\..\src\aarch64\ffi.c" />
|
111
|
+
<ClCompile Include="..\..\src\prep_cif.c" />
|
112
|
+
<ClCompile Include="..\..\src\types.c" />
|
113
|
+
</ItemGroup>
|
114
|
+
<!--ItemGroup>
|
115
|
+
<Object Include="..\..\..\..\Downloads\libffi-master-win64\src\aarch64\win64_armasm.obj" />
|
116
|
+
</ItemGroup-->
|
117
|
+
<ItemGroup>
|
118
|
+
<CustomBuild Include="..\..\src\aarch64\win64_armasm.S">
|
119
|
+
<!--ExcludedFromBuild Condition="'$(Platform)'!='ARM64'">true</ExcludedFromBuild -->
|
120
|
+
<Command>
|
121
|
+
cl /FA /EP /nologo /I"..\..\include" /I".\aarch64_include" /I"..\..\src\aarch64" "%(FullPath)" > $(IntDir)win64_armasm.i
|
122
|
+
armasm64 $(IntDir)win64_armasm.i /I"src\" /I"..\..\include" /I"..\..\src\aarch64" -o "$(IntDir)win64_armasm.obj"
|
123
|
+
</Command>
|
124
|
+
<Outputs>win64_armasm.obj;%(Outputs)</Outputs>
|
125
|
+
</CustomBuild>
|
126
|
+
</ItemGroup>
|
127
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
128
|
+
<ImportGroup Label="ExtensionTargets">
|
129
|
+
</ImportGroup>
|
130
|
+
</Project>
|