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
@@ -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,
|
@@ -99,7 +99,6 @@ target_triplet = @target@
|
|
99
99
|
subdir = .
|
100
100
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
101
101
|
am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
102
|
-
$(top_srcdir)/m4/ax_append_flag.m4 \
|
103
102
|
$(top_srcdir)/m4/ax_cc_maxopt.m4 \
|
104
103
|
$(top_srcdir)/m4/ax_cflags_warn_all.m4 \
|
105
104
|
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
@@ -108,6 +107,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
|
108
107
|
$(top_srcdir)/m4/ax_enable_builddir.m4 \
|
109
108
|
$(top_srcdir)/m4/ax_gcc_archflag.m4 \
|
110
109
|
$(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
|
110
|
+
$(top_srcdir)/m4/ax_prepend_flag.m4 \
|
111
|
+
$(top_srcdir)/m4/ax_require_defined.m4 \
|
111
112
|
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
112
113
|
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
113
114
|
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
@@ -154,11 +155,12 @@ am__installdirs = "$(DESTDIR)$(toolexeclibdir)" \
|
|
154
155
|
LTLIBRARIES = $(noinst_LTLIBRARIES) $(toolexeclib_LTLIBRARIES)
|
155
156
|
am__DEPENDENCIES_1 =
|
156
157
|
am__libffi_la_SOURCES_DIST = src/prep_cif.c src/types.c src/raw_api.c \
|
157
|
-
src/java_raw_api.c src/closures.c src/debug.c
|
158
|
+
src/java_raw_api.c src/closures.c src/tramp.c src/debug.c
|
158
159
|
am__dirstamp = $(am__leading_dot)dirstamp
|
159
160
|
@FFI_DEBUG_TRUE@am__objects_1 = src/debug.lo
|
160
161
|
am_libffi_la_OBJECTS = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
161
|
-
src/java_raw_api.lo src/closures.lo
|
162
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
163
|
+
$(am__objects_1)
|
162
164
|
libffi_la_OBJECTS = $(am_libffi_la_OBJECTS)
|
163
165
|
AM_V_lt = $(am__v_lt_@AM_V@)
|
164
166
|
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
@@ -169,9 +171,11 @@ libffi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
169
171
|
$(libffi_la_LDFLAGS) $(LDFLAGS) -o $@
|
170
172
|
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
|
171
173
|
am__libffi_convenience_la_SOURCES_DIST = src/prep_cif.c src/types.c \
|
172
|
-
src/raw_api.c src/java_raw_api.c src/closures.c src/
|
174
|
+
src/raw_api.c src/java_raw_api.c src/closures.c src/tramp.c \
|
175
|
+
src/debug.c
|
173
176
|
am__objects_2 = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
174
|
-
src/java_raw_api.lo src/closures.lo
|
177
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
178
|
+
$(am__objects_1)
|
175
179
|
am_libffi_convenience_la_OBJECTS = $(am__objects_2)
|
176
180
|
nodist_libffi_convenience_la_OBJECTS =
|
177
181
|
libffi_convenience_la_OBJECTS = $(am_libffi_convenience_la_OBJECTS) \
|
@@ -190,11 +194,66 @@ am__v_at_0 = @
|
|
190
194
|
am__v_at_1 =
|
191
195
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
192
196
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
193
|
-
|
197
|
+
am__maybe_remake_depfiles = depfiles
|
198
|
+
am__depfiles_remade = src/$(DEPDIR)/closures.Plo \
|
199
|
+
src/$(DEPDIR)/debug.Plo src/$(DEPDIR)/java_raw_api.Plo \
|
200
|
+
src/$(DEPDIR)/prep_cif.Plo src/$(DEPDIR)/raw_api.Plo \
|
201
|
+
src/$(DEPDIR)/tramp.Plo src/$(DEPDIR)/types.Plo \
|
202
|
+
src/aarch64/$(DEPDIR)/ffi.Plo src/aarch64/$(DEPDIR)/sysv.Plo \
|
203
|
+
src/aarch64/$(DEPDIR)/win64_armasm.Plo \
|
204
|
+
src/alpha/$(DEPDIR)/ffi.Plo src/alpha/$(DEPDIR)/osf.Plo \
|
205
|
+
src/arc/$(DEPDIR)/arcompact.Plo src/arc/$(DEPDIR)/ffi.Plo \
|
206
|
+
src/arm/$(DEPDIR)/ffi.Plo src/arm/$(DEPDIR)/sysv.Plo \
|
207
|
+
src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo \
|
208
|
+
src/avr32/$(DEPDIR)/ffi.Plo src/avr32/$(DEPDIR)/sysv.Plo \
|
209
|
+
src/bfin/$(DEPDIR)/ffi.Plo src/bfin/$(DEPDIR)/sysv.Plo \
|
210
|
+
src/cris/$(DEPDIR)/ffi.Plo src/cris/$(DEPDIR)/sysv.Plo \
|
211
|
+
src/csky/$(DEPDIR)/ffi.Plo src/csky/$(DEPDIR)/sysv.Plo \
|
212
|
+
src/frv/$(DEPDIR)/eabi.Plo src/frv/$(DEPDIR)/ffi.Plo \
|
213
|
+
src/ia64/$(DEPDIR)/ffi.Plo src/ia64/$(DEPDIR)/unix.Plo \
|
214
|
+
src/kvx/$(DEPDIR)/ffi.Plo src/kvx/$(DEPDIR)/sysv.Plo \
|
215
|
+
src/loongarch64/$(DEPDIR)/ffi.Plo \
|
216
|
+
src/loongarch64/$(DEPDIR)/sysv.Plo src/m32r/$(DEPDIR)/ffi.Plo \
|
217
|
+
src/m32r/$(DEPDIR)/sysv.Plo src/m68k/$(DEPDIR)/ffi.Plo \
|
218
|
+
src/m68k/$(DEPDIR)/sysv.Plo src/m88k/$(DEPDIR)/ffi.Plo \
|
219
|
+
src/m88k/$(DEPDIR)/obsd.Plo src/metag/$(DEPDIR)/ffi.Plo \
|
220
|
+
src/metag/$(DEPDIR)/sysv.Plo src/microblaze/$(DEPDIR)/ffi.Plo \
|
221
|
+
src/microblaze/$(DEPDIR)/sysv.Plo src/mips/$(DEPDIR)/ffi.Plo \
|
222
|
+
src/mips/$(DEPDIR)/n32.Plo src/mips/$(DEPDIR)/o32.Plo \
|
223
|
+
src/moxie/$(DEPDIR)/eabi.Plo src/moxie/$(DEPDIR)/ffi.Plo \
|
224
|
+
src/nios2/$(DEPDIR)/ffi.Plo src/nios2/$(DEPDIR)/sysv.Plo \
|
225
|
+
src/or1k/$(DEPDIR)/ffi.Plo src/or1k/$(DEPDIR)/sysv.Plo \
|
226
|
+
src/pa/$(DEPDIR)/ffi.Plo src/pa/$(DEPDIR)/hpux32.Plo \
|
227
|
+
src/pa/$(DEPDIR)/hpux64.Plo src/pa/$(DEPDIR)/linux.Plo \
|
228
|
+
src/powerpc/$(DEPDIR)/aix.Plo \
|
229
|
+
src/powerpc/$(DEPDIR)/aix_closure.Plo \
|
230
|
+
src/powerpc/$(DEPDIR)/darwin.Plo \
|
231
|
+
src/powerpc/$(DEPDIR)/darwin_closure.Plo \
|
232
|
+
src/powerpc/$(DEPDIR)/ffi.Plo \
|
233
|
+
src/powerpc/$(DEPDIR)/ffi_darwin.Plo \
|
234
|
+
src/powerpc/$(DEPDIR)/ffi_linux64.Plo \
|
235
|
+
src/powerpc/$(DEPDIR)/ffi_sysv.Plo \
|
236
|
+
src/powerpc/$(DEPDIR)/linux64.Plo \
|
237
|
+
src/powerpc/$(DEPDIR)/linux64_closure.Plo \
|
238
|
+
src/powerpc/$(DEPDIR)/ppc_closure.Plo \
|
239
|
+
src/powerpc/$(DEPDIR)/sysv.Plo src/riscv/$(DEPDIR)/ffi.Plo \
|
240
|
+
src/riscv/$(DEPDIR)/sysv.Plo src/s390/$(DEPDIR)/ffi.Plo \
|
241
|
+
src/s390/$(DEPDIR)/sysv.Plo src/sh/$(DEPDIR)/ffi.Plo \
|
242
|
+
src/sh/$(DEPDIR)/sysv.Plo src/sh64/$(DEPDIR)/ffi.Plo \
|
243
|
+
src/sh64/$(DEPDIR)/sysv.Plo src/sparc/$(DEPDIR)/ffi.Plo \
|
244
|
+
src/sparc/$(DEPDIR)/ffi64.Plo src/sparc/$(DEPDIR)/v8.Plo \
|
245
|
+
src/sparc/$(DEPDIR)/v9.Plo src/tile/$(DEPDIR)/ffi.Plo \
|
246
|
+
src/tile/$(DEPDIR)/tile.Plo src/vax/$(DEPDIR)/elfbsd.Plo \
|
247
|
+
src/vax/$(DEPDIR)/ffi.Plo src/wasm32/$(DEPDIR)/ffi.Plo \
|
248
|
+
src/x86/$(DEPDIR)/ffi.Plo src/x86/$(DEPDIR)/ffi64.Plo \
|
249
|
+
src/x86/$(DEPDIR)/ffiw64.Plo src/x86/$(DEPDIR)/sysv.Plo \
|
250
|
+
src/x86/$(DEPDIR)/sysv_intel.Plo src/x86/$(DEPDIR)/unix64.Plo \
|
251
|
+
src/x86/$(DEPDIR)/win64.Plo src/x86/$(DEPDIR)/win64_intel.Plo \
|
252
|
+
src/xtensa/$(DEPDIR)/ffi.Plo src/xtensa/$(DEPDIR)/sysv.Plo
|
194
253
|
am__mv = mv -f
|
195
254
|
CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
196
255
|
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
197
|
-
LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
|
256
|
+
LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
198
257
|
$(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \
|
199
258
|
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
200
259
|
$(AM_CCASFLAGS) $(CCASFLAGS)
|
@@ -250,9 +309,9 @@ am__recursive_targets = \
|
|
250
309
|
$(RECURSIVE_CLEAN_TARGETS) \
|
251
310
|
$(am__extra_recursive_targets)
|
252
311
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
253
|
-
cscope distdir dist dist-all distcheck
|
254
|
-
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
255
|
-
|
312
|
+
cscope distdir distdir-am dist dist-all distcheck
|
313
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
|
314
|
+
fficonfig.h.in
|
256
315
|
# Read a list of newline-separated strings from the standard input,
|
257
316
|
# and print each of them once, without duplicates. Input order is
|
258
317
|
# *not* preserved.
|
@@ -269,13 +328,10 @@ am__define_uniq_tagged_files = \
|
|
269
328
|
unique=`for i in $$list; do \
|
270
329
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
271
330
|
done | $(am__uniquify_input)`
|
272
|
-
ETAGS = etags
|
273
|
-
CTAGS = ctags
|
274
|
-
CSCOPE = cscope
|
275
331
|
DIST_SUBDIRS = include testsuite man doc
|
276
332
|
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/fficonfig.h.in \
|
277
|
-
$(srcdir)/libffi.pc.in README compile config.guess
|
278
|
-
depcomp install-sh ltmain.sh missing
|
333
|
+
$(srcdir)/libffi.pc.in README.md compile config.guess \
|
334
|
+
config.sub depcomp install-sh ltmain.sh missing
|
279
335
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
280
336
|
distdir = $(PACKAGE)-$(VERSION)
|
281
337
|
top_distdir = $(distdir)
|
@@ -314,12 +370,13 @@ am__relativize = \
|
|
314
370
|
DIST_ARCHIVES = $(distdir).tar.gz
|
315
371
|
GZIP_ENV = --best
|
316
372
|
DIST_TARGETS = dist-gzip
|
373
|
+
# Exists only to be overridden by the user if desired.
|
374
|
+
AM_DISTCHECK_DVI_TARGET = dvi
|
317
375
|
distuninstallcheck_listfiles = find . -type f -print
|
318
376
|
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
319
377
|
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
320
378
|
distcleancheck_listfiles = find . -type f -print
|
321
379
|
ACLOCAL = @ACLOCAL@
|
322
|
-
ALLOCA = @ALLOCA@
|
323
380
|
AMTAR = @AMTAR@
|
324
381
|
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
325
382
|
AM_LTLDFLAGS = @AM_LTLDFLAGS@
|
@@ -335,8 +392,9 @@ CCASDEPMODE = @CCASDEPMODE@
|
|
335
392
|
CCASFLAGS = @CCASFLAGS@
|
336
393
|
CCDEPMODE = @CCDEPMODE@
|
337
394
|
CFLAGS = @CFLAGS@
|
338
|
-
CPP = @CPP@
|
339
395
|
CPPFLAGS = @CPPFLAGS@
|
396
|
+
CSCOPE = @CSCOPE@
|
397
|
+
CTAGS = @CTAGS@
|
340
398
|
CXX = @CXX@
|
341
399
|
CXXCPP = @CXXCPP@
|
342
400
|
CXXDEPMODE = @CXXDEPMODE@
|
@@ -351,9 +409,11 @@ ECHO_C = @ECHO_C@
|
|
351
409
|
ECHO_N = @ECHO_N@
|
352
410
|
ECHO_T = @ECHO_T@
|
353
411
|
EGREP = @EGREP@
|
412
|
+
ETAGS = @ETAGS@
|
354
413
|
EXEEXT = @EXEEXT@
|
355
414
|
FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
|
356
415
|
FGREP = @FGREP@
|
416
|
+
FILECMD = @FILECMD@
|
357
417
|
GREP = @GREP@
|
358
418
|
HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
|
359
419
|
HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
|
@@ -392,6 +452,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
392
452
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
393
453
|
PRTDIAG = @PRTDIAG@
|
394
454
|
RANLIB = @RANLIB@
|
455
|
+
READELF = @READELF@
|
395
456
|
SECTION_LDFLAGS = @SECTION_LDFLAGS@
|
396
457
|
SED = @SED@
|
397
458
|
SET_MAKE = @SET_MAKE@
|
@@ -458,6 +519,7 @@ target_alias = @target_alias@
|
|
458
519
|
target_cpu = @target_cpu@
|
459
520
|
target_os = @target_os@
|
460
521
|
target_vendor = @target_vendor@
|
522
|
+
tmake_file = @tmake_file@
|
461
523
|
toolexecdir = @toolexecdir@
|
462
524
|
toolexeclibdir = @toolexeclibdir@
|
463
525
|
top_build_prefix = @top_build_prefix@
|
@@ -466,58 +528,20 @@ top_srcdir = @top_srcdir@
|
|
466
528
|
AUTOMAKE_OPTIONS = foreign subdir-objects
|
467
529
|
ACLOCAL_AMFLAGS = -I m4
|
468
530
|
SUBDIRS = include testsuite man $(am__append_1)
|
469
|
-
EXTRA_DIST = LICENSE ChangeLog.
|
470
|
-
ChangeLog.libffi ChangeLog.libffi-3.1 \
|
531
|
+
EXTRA_DIST = LICENSE ChangeLog.old \
|
471
532
|
m4/libtool.m4 m4/lt~obsolete.m4 \
|
472
533
|
m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 \
|
473
534
|
m4/ltversion.m4 src/debug.c msvcc.sh \
|
474
535
|
generate-darwin-source-and-headers.py \
|
475
536
|
libffi.xcodeproj/project.pbxproj \
|
476
|
-
|
537
|
+
src/powerpc/t-aix \
|
538
|
+
libtool-ldflags libtool-version configure.host README.md \
|
539
|
+
libffi.map.in LICENSE-BUILDTOOLS msvc_build make_sunver.pl
|
477
540
|
|
478
541
|
|
479
542
|
# local.exp is generated by configure
|
480
543
|
DISTCLEANFILES = local.exp
|
481
544
|
|
482
|
-
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
483
|
-
# values defined in terms of make variables, as is the case for CC and
|
484
|
-
# friends when we are called from the top level Makefile.
|
485
|
-
AM_MAKEFLAGS = \
|
486
|
-
'AR_FLAGS=$(AR_FLAGS)' \
|
487
|
-
'CC_FOR_BUILD=$(CC_FOR_BUILD)' \
|
488
|
-
'CFLAGS=$(CFLAGS)' \
|
489
|
-
'CXXFLAGS=$(CXXFLAGS)' \
|
490
|
-
'CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)' \
|
491
|
-
'CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)' \
|
492
|
-
'INSTALL=$(INSTALL)' \
|
493
|
-
'INSTALL_DATA=$(INSTALL_DATA)' \
|
494
|
-
'INSTALL_PROGRAM=$(INSTALL_PROGRAM)' \
|
495
|
-
'INSTALL_SCRIPT=$(INSTALL_SCRIPT)' \
|
496
|
-
'JC1FLAGS=$(JC1FLAGS)' \
|
497
|
-
'LDFLAGS=$(LDFLAGS)' \
|
498
|
-
'LIBCFLAGS=$(LIBCFLAGS)' \
|
499
|
-
'LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)' \
|
500
|
-
'MAKE=$(MAKE)' \
|
501
|
-
'MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)' \
|
502
|
-
'PICFLAG=$(PICFLAG)' \
|
503
|
-
'PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)' \
|
504
|
-
'RUNTESTFLAGS=$(RUNTESTFLAGS)' \
|
505
|
-
'SHELL=$(SHELL)' \
|
506
|
-
'exec_prefix=$(exec_prefix)' \
|
507
|
-
'infodir=$(infodir)' \
|
508
|
-
'libdir=$(libdir)' \
|
509
|
-
'mandir=$(mandir)' \
|
510
|
-
'prefix=$(prefix)' \
|
511
|
-
'AR=$(AR)' \
|
512
|
-
'AS=$(AS)' \
|
513
|
-
'CC=$(CC)' \
|
514
|
-
'CXX=$(CXX)' \
|
515
|
-
'LD=$(LD)' \
|
516
|
-
'NM=$(NM)' \
|
517
|
-
'RANLIB=$(RANLIB)' \
|
518
|
-
'DESTDIR=$(DESTDIR)'
|
519
|
-
|
520
|
-
|
521
545
|
# Subdir rules rely on $(FLAGS_TO_PASS)
|
522
546
|
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
523
547
|
MAKEOVERRIDES =
|
@@ -526,73 +550,59 @@ pkgconfig_DATA = libffi.pc
|
|
526
550
|
toolexeclib_LTLIBRARIES = libffi.la
|
527
551
|
noinst_LTLIBRARIES = libffi_convenience.la
|
528
552
|
libffi_la_SOURCES = src/prep_cif.c src/types.c src/raw_api.c \
|
529
|
-
src/java_raw_api.c src/closures.c $(am__append_2)
|
530
|
-
noinst_HEADERS = \
|
531
|
-
src/aarch64/ffitarget.h src/aarch64/internal.h \
|
553
|
+
src/java_raw_api.c src/closures.c src/tramp.c $(am__append_2)
|
554
|
+
noinst_HEADERS = src/aarch64/ffitarget.h src/aarch64/internal.h \
|
532
555
|
src/alpha/ffitarget.h src/alpha/internal.h \
|
533
|
-
src/arc/ffitarget.h
|
534
|
-
src/
|
535
|
-
src/
|
536
|
-
src/bfin/ffitarget.h \
|
537
|
-
src/cris/ffitarget.h \
|
538
|
-
src/frv/ffitarget.h \
|
556
|
+
src/arc/ffitarget.h src/arm/ffitarget.h src/arm/internal.h \
|
557
|
+
src/avr32/ffitarget.h src/bfin/ffitarget.h \
|
558
|
+
src/cris/ffitarget.h src/csky/ffitarget.h src/frv/ffitarget.h \
|
539
559
|
src/ia64/ffitarget.h src/ia64/ia64_flags.h \
|
540
|
-
src/m32r/ffitarget.h
|
541
|
-
src/
|
542
|
-
src/
|
543
|
-
src/
|
544
|
-
src/
|
545
|
-
src/
|
546
|
-
src/
|
547
|
-
src/
|
548
|
-
src/
|
549
|
-
src/
|
550
|
-
src/
|
551
|
-
src/
|
552
|
-
src/
|
553
|
-
src/
|
554
|
-
src/
|
555
|
-
|
556
|
-
|
557
|
-
src/
|
558
|
-
src/
|
559
|
-
src/
|
560
|
-
|
561
|
-
|
562
|
-
src/
|
563
|
-
src/
|
564
|
-
src/
|
565
|
-
src/
|
566
|
-
src/
|
567
|
-
src/
|
568
|
-
src/
|
569
|
-
src/
|
570
|
-
src/
|
571
|
-
src/
|
572
|
-
src/
|
573
|
-
src/
|
574
|
-
src/
|
575
|
-
src/
|
576
|
-
src/
|
577
|
-
src/
|
578
|
-
src/
|
579
|
-
src/
|
580
|
-
src/
|
581
|
-
src/
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
src/s390/ffi.c src/s390/sysv.S \
|
587
|
-
src/sh/ffi.c src/sh/sysv.S \
|
588
|
-
src/sh64/ffi.c src/sh64/sysv.S \
|
589
|
-
src/sparc/ffi.c src/sparc/ffi64.c src/sparc/v8.S src/sparc/v9.S \
|
590
|
-
src/tile/ffi.c src/tile/tile.S \
|
591
|
-
src/vax/ffi.c src/vax/elfbsd.S \
|
592
|
-
src/x86/ffi.c src/x86/sysv.S \
|
593
|
-
src/x86/ffiw64.c src/x86/win64.S \
|
594
|
-
src/x86/ffi64.c src/x86/unix64.S \
|
595
|
-
src/xtensa/ffi.c src/xtensa/sysv.S
|
560
|
+
src/m32r/ffitarget.h src/m68k/ffitarget.h \
|
561
|
+
src/m88k/ffitarget.h src/metag/ffitarget.h \
|
562
|
+
src/microblaze/ffitarget.h src/mips/ffitarget.h \
|
563
|
+
src/moxie/ffitarget.h src/nios2/ffitarget.h \
|
564
|
+
src/or1k/ffitarget.h src/pa/ffitarget.h \
|
565
|
+
src/powerpc/ffitarget.h src/powerpc/asm.h \
|
566
|
+
src/powerpc/ffi_powerpc.h src/riscv/ffitarget.h \
|
567
|
+
src/s390/ffitarget.h src/s390/internal.h src/sh/ffitarget.h \
|
568
|
+
src/sh64/ffitarget.h src/sparc/ffitarget.h \
|
569
|
+
src/sparc/internal.h src/tile/ffitarget.h src/vax/ffitarget.h \
|
570
|
+
src/wasm32/ffitarget.h \
|
571
|
+
src/x86/ffitarget.h src/x86/internal.h src/x86/internal64.h \
|
572
|
+
src/x86/asmnames.h src/xtensa/ffitarget.h src/dlmalloc.c \
|
573
|
+
src/kvx/ffitarget.h src/kvx/asm.h \
|
574
|
+
src/loongarch64/ffitarget.h
|
575
|
+
|
576
|
+
EXTRA_libffi_la_SOURCES = src/aarch64/ffi.c src/aarch64/sysv.S \
|
577
|
+
src/aarch64/win64_armasm.S src/alpha/ffi.c src/alpha/osf.S \
|
578
|
+
src/arc/ffi.c src/arc/arcompact.S src/arm/ffi.c \
|
579
|
+
src/arm/sysv.S src/arm/ffi.c src/arm/sysv_msvc_arm32.S \
|
580
|
+
src/avr32/ffi.c src/avr32/sysv.S src/bfin/ffi.c \
|
581
|
+
src/bfin/sysv.S src/cris/ffi.c src/cris/sysv.S src/frv/ffi.c \
|
582
|
+
src/csky/ffi.c src/csky/sysv.S src/frv/eabi.S src/ia64/ffi.c \
|
583
|
+
src/ia64/unix.S src/m32r/ffi.c src/m32r/sysv.S src/m68k/ffi.c \
|
584
|
+
src/m68k/sysv.S src/m88k/ffi.c src/m88k/obsd.S \
|
585
|
+
src/metag/ffi.c src/metag/sysv.S src/microblaze/ffi.c \
|
586
|
+
src/microblaze/sysv.S src/mips/ffi.c src/mips/o32.S \
|
587
|
+
src/mips/n32.S src/moxie/ffi.c src/moxie/eabi.S \
|
588
|
+
src/nios2/ffi.c src/nios2/sysv.S src/or1k/ffi.c \
|
589
|
+
src/or1k/sysv.S src/pa/ffi.c src/pa/linux.S src/pa/hpux32.S \
|
590
|
+
src/pa/hpux64.S src/powerpc/ffi.c src/powerpc/ffi_sysv.c \
|
591
|
+
src/powerpc/ffi_linux64.c src/powerpc/sysv.S \
|
592
|
+
src/powerpc/linux64.S src/powerpc/linux64_closure.S \
|
593
|
+
src/powerpc/ppc_closure.S src/powerpc/aix.S \
|
594
|
+
src/powerpc/darwin.S src/powerpc/aix_closure.S \
|
595
|
+
src/powerpc/darwin_closure.S src/powerpc/ffi_darwin.c \
|
596
|
+
src/riscv/ffi.c src/riscv/sysv.S src/s390/ffi.c \
|
597
|
+
src/s390/sysv.S src/sh/ffi.c src/sh/sysv.S src/sh64/ffi.c \
|
598
|
+
src/sh64/sysv.S src/sparc/ffi.c src/sparc/ffi64.c \
|
599
|
+
src/sparc/v8.S src/sparc/v9.S src/tile/ffi.c src/tile/tile.S \
|
600
|
+
src/vax/ffi.c src/vax/elfbsd.S src/x86/ffi.c src/x86/sysv.S \
|
601
|
+
src/wasm32/ffi.c \
|
602
|
+
src/x86/ffiw64.c src/x86/win64.S src/x86/ffi64.c \
|
603
|
+
src/x86/unix64.S src/x86/sysv_intel.S src/x86/win64_intel.S \
|
604
|
+
src/xtensa/ffi.c src/xtensa/sysv.S src/kvx/ffi.c \
|
605
|
+
src/kvx/sysv.S src/loongarch64/ffi.c src/loongarch64/sysv.S
|
596
606
|
|
597
607
|
libffi_la_LIBADD = $(TARGET_OBJ)
|
598
608
|
libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
|
@@ -639,8 +649,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
639
649
|
echo ' $(SHELL) ./config.status'; \
|
640
650
|
$(SHELL) ./config.status;; \
|
641
651
|
*) \
|
642
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(
|
643
|
-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(
|
652
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
653
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
644
654
|
esac;
|
645
655
|
|
646
656
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
@@ -725,6 +735,7 @@ src/types.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
|
725
735
|
src/raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
726
736
|
src/java_raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
727
737
|
src/closures.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
738
|
+
src/tramp.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
728
739
|
src/debug.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
729
740
|
src/aarch64/$(am__dirstamp):
|
730
741
|
@$(MKDIR_P) src/aarch64
|
@@ -736,6 +747,8 @@ src/aarch64/ffi.lo: src/aarch64/$(am__dirstamp) \
|
|
736
747
|
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
737
748
|
src/aarch64/sysv.lo: src/aarch64/$(am__dirstamp) \
|
738
749
|
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
750
|
+
src/aarch64/win64_armasm.lo: src/aarch64/$(am__dirstamp) \
|
751
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
739
752
|
src/alpha/$(am__dirstamp):
|
740
753
|
@$(MKDIR_P) src/alpha
|
741
754
|
@: > src/alpha/$(am__dirstamp)
|
@@ -766,6 +779,8 @@ src/arm/ffi.lo: src/arm/$(am__dirstamp) \
|
|
766
779
|
src/arm/$(DEPDIR)/$(am__dirstamp)
|
767
780
|
src/arm/sysv.lo: src/arm/$(am__dirstamp) \
|
768
781
|
src/arm/$(DEPDIR)/$(am__dirstamp)
|
782
|
+
src/arm/sysv_msvc_arm32.lo: src/arm/$(am__dirstamp) \
|
783
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
769
784
|
src/avr32/$(am__dirstamp):
|
770
785
|
@$(MKDIR_P) src/avr32
|
771
786
|
@: > src/avr32/$(am__dirstamp)
|
@@ -804,6 +819,16 @@ src/frv/$(DEPDIR)/$(am__dirstamp):
|
|
804
819
|
@: > src/frv/$(DEPDIR)/$(am__dirstamp)
|
805
820
|
src/frv/ffi.lo: src/frv/$(am__dirstamp) \
|
806
821
|
src/frv/$(DEPDIR)/$(am__dirstamp)
|
822
|
+
src/csky/$(am__dirstamp):
|
823
|
+
@$(MKDIR_P) src/csky
|
824
|
+
@: > src/csky/$(am__dirstamp)
|
825
|
+
src/csky/$(DEPDIR)/$(am__dirstamp):
|
826
|
+
@$(MKDIR_P) src/csky/$(DEPDIR)
|
827
|
+
@: > src/csky/$(DEPDIR)/$(am__dirstamp)
|
828
|
+
src/csky/ffi.lo: src/csky/$(am__dirstamp) \
|
829
|
+
src/csky/$(DEPDIR)/$(am__dirstamp)
|
830
|
+
src/csky/sysv.lo: src/csky/$(am__dirstamp) \
|
831
|
+
src/csky/$(DEPDIR)/$(am__dirstamp)
|
807
832
|
src/frv/eabi.lo: src/frv/$(am__dirstamp) \
|
808
833
|
src/frv/$(DEPDIR)/$(am__dirstamp)
|
809
834
|
src/ia64/$(am__dirstamp):
|
@@ -919,6 +944,8 @@ src/pa/linux.lo: src/pa/$(am__dirstamp) \
|
|
919
944
|
src/pa/$(DEPDIR)/$(am__dirstamp)
|
920
945
|
src/pa/hpux32.lo: src/pa/$(am__dirstamp) \
|
921
946
|
src/pa/$(DEPDIR)/$(am__dirstamp)
|
947
|
+
src/pa/hpux64.lo: src/pa/$(am__dirstamp) \
|
948
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
922
949
|
src/powerpc/$(am__dirstamp):
|
923
950
|
@$(MKDIR_P) src/powerpc
|
924
951
|
@: > src/powerpc/$(am__dirstamp)
|
@@ -949,6 +976,16 @@ src/powerpc/darwin_closure.lo: src/powerpc/$(am__dirstamp) \
|
|
949
976
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
950
977
|
src/powerpc/ffi_darwin.lo: src/powerpc/$(am__dirstamp) \
|
951
978
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
979
|
+
src/riscv/$(am__dirstamp):
|
980
|
+
@$(MKDIR_P) src/riscv
|
981
|
+
@: > src/riscv/$(am__dirstamp)
|
982
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp):
|
983
|
+
@$(MKDIR_P) src/riscv/$(DEPDIR)
|
984
|
+
@: > src/riscv/$(DEPDIR)/$(am__dirstamp)
|
985
|
+
src/riscv/ffi.lo: src/riscv/$(am__dirstamp) \
|
986
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp)
|
987
|
+
src/riscv/sysv.lo: src/riscv/$(am__dirstamp) \
|
988
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp)
|
952
989
|
src/s390/$(am__dirstamp):
|
953
990
|
@$(MKDIR_P) src/s390
|
954
991
|
@: > src/s390/$(am__dirstamp)
|
@@ -1022,6 +1059,14 @@ src/x86/ffi.lo: src/x86/$(am__dirstamp) \
|
|
1022
1059
|
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1023
1060
|
src/x86/sysv.lo: src/x86/$(am__dirstamp) \
|
1024
1061
|
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1062
|
+
src/wasm32/$(am__dirstamp):
|
1063
|
+
@$(MKDIR_P) src/wasm32
|
1064
|
+
@: > src/wasm32/$(am__dirstamp)
|
1065
|
+
src/wasm32/$(DEPDIR)/$(am__dirstamp):
|
1066
|
+
@$(MKDIR_P) src/wasm32/$(DEPDIR)
|
1067
|
+
@: > src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1068
|
+
src/wasm32/ffi.lo: src/wasm32/$(am__dirstamp) \
|
1069
|
+
src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1025
1070
|
src/x86/ffiw64.lo: src/x86/$(am__dirstamp) \
|
1026
1071
|
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1027
1072
|
src/x86/win64.lo: src/x86/$(am__dirstamp) \
|
@@ -1030,6 +1075,10 @@ src/x86/ffi64.lo: src/x86/$(am__dirstamp) \
|
|
1030
1075
|
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1031
1076
|
src/x86/unix64.lo: src/x86/$(am__dirstamp) \
|
1032
1077
|
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1078
|
+
src/x86/sysv_intel.lo: src/x86/$(am__dirstamp) \
|
1079
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1080
|
+
src/x86/win64_intel.lo: src/x86/$(am__dirstamp) \
|
1081
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1033
1082
|
src/xtensa/$(am__dirstamp):
|
1034
1083
|
@$(MKDIR_P) src/xtensa
|
1035
1084
|
@: > src/xtensa/$(am__dirstamp)
|
@@ -1040,6 +1089,26 @@ src/xtensa/ffi.lo: src/xtensa/$(am__dirstamp) \
|
|
1040
1089
|
src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1041
1090
|
src/xtensa/sysv.lo: src/xtensa/$(am__dirstamp) \
|
1042
1091
|
src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1092
|
+
src/kvx/$(am__dirstamp):
|
1093
|
+
@$(MKDIR_P) src/kvx
|
1094
|
+
@: > src/kvx/$(am__dirstamp)
|
1095
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp):
|
1096
|
+
@$(MKDIR_P) src/kvx/$(DEPDIR)
|
1097
|
+
@: > src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1098
|
+
src/kvx/ffi.lo: src/kvx/$(am__dirstamp) \
|
1099
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1100
|
+
src/kvx/sysv.lo: src/kvx/$(am__dirstamp) \
|
1101
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1102
|
+
src/loongarch64/$(am__dirstamp):
|
1103
|
+
@$(MKDIR_P) src/loongarch64
|
1104
|
+
@: > src/loongarch64/$(am__dirstamp)
|
1105
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp):
|
1106
|
+
@$(MKDIR_P) src/loongarch64/$(DEPDIR)
|
1107
|
+
@: > src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1108
|
+
src/loongarch64/ffi.lo: src/loongarch64/$(am__dirstamp) \
|
1109
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1110
|
+
src/loongarch64/sysv.lo: src/loongarch64/$(am__dirstamp) \
|
1111
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1043
1112
|
|
1044
1113
|
libffi.la: $(libffi_la_OBJECTS) $(libffi_la_DEPENDENCIES) $(EXTRA_libffi_la_DEPENDENCIES)
|
1045
1114
|
$(AM_V_CCLD)$(libffi_la_LINK) -rpath $(toolexeclibdir) $(libffi_la_OBJECTS) $(libffi_la_LIBADD) $(LIBS)
|
@@ -1065,10 +1134,16 @@ mostlyclean-compile:
|
|
1065
1134
|
-rm -f src/bfin/*.lo
|
1066
1135
|
-rm -f src/cris/*.$(OBJEXT)
|
1067
1136
|
-rm -f src/cris/*.lo
|
1137
|
+
-rm -f src/csky/*.$(OBJEXT)
|
1138
|
+
-rm -f src/csky/*.lo
|
1068
1139
|
-rm -f src/frv/*.$(OBJEXT)
|
1069
1140
|
-rm -f src/frv/*.lo
|
1070
1141
|
-rm -f src/ia64/*.$(OBJEXT)
|
1071
1142
|
-rm -f src/ia64/*.lo
|
1143
|
+
-rm -f src/kvx/*.$(OBJEXT)
|
1144
|
+
-rm -f src/kvx/*.lo
|
1145
|
+
-rm -f src/loongarch64/*.$(OBJEXT)
|
1146
|
+
-rm -f src/loongarch64/*.lo
|
1072
1147
|
-rm -f src/m32r/*.$(OBJEXT)
|
1073
1148
|
-rm -f src/m32r/*.lo
|
1074
1149
|
-rm -f src/m68k/*.$(OBJEXT)
|
@@ -1091,6 +1166,8 @@ mostlyclean-compile:
|
|
1091
1166
|
-rm -f src/pa/*.lo
|
1092
1167
|
-rm -f src/powerpc/*.$(OBJEXT)
|
1093
1168
|
-rm -f src/powerpc/*.lo
|
1169
|
+
-rm -f src/riscv/*.$(OBJEXT)
|
1170
|
+
-rm -f src/riscv/*.lo
|
1094
1171
|
-rm -f src/s390/*.$(OBJEXT)
|
1095
1172
|
-rm -f src/s390/*.lo
|
1096
1173
|
-rm -f src/sh/*.$(OBJEXT)
|
@@ -1103,6 +1180,8 @@ mostlyclean-compile:
|
|
1103
1180
|
-rm -f src/tile/*.lo
|
1104
1181
|
-rm -f src/vax/*.$(OBJEXT)
|
1105
1182
|
-rm -f src/vax/*.lo
|
1183
|
+
-rm -f src/wasm32/*.$(OBJEXT)
|
1184
|
+
-rm -f src/wasm32/*.lo
|
1106
1185
|
-rm -f src/x86/*.$(OBJEXT)
|
1107
1186
|
-rm -f src/x86/*.lo
|
1108
1187
|
-rm -f src/xtensa/*.$(OBJEXT)
|
@@ -1111,86 +1190,107 @@ mostlyclean-compile:
|
|
1111
1190
|
distclean-compile:
|
1112
1191
|
-rm -f *.tab.c
|
1113
1192
|
|
1114
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/closures.Plo@am__quote@
|
1115
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/debug.Plo@am__quote@
|
1116
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/java_raw_api.Plo@am__quote@
|
1117
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/prep_cif.Plo@am__quote@
|
1118
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/raw_api.Plo@am__quote@
|
1119
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/
|
1120
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src
|
1121
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/
|
1122
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1123
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1124
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1125
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1126
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1127
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1128
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1129
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1130
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1131
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1132
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1133
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1134
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1135
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1136
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1137
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1138
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1139
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1140
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1141
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1142
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1143
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1144
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1145
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1146
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1147
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1148
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1149
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1150
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1151
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1152
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1153
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1154
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1155
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1156
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1157
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1158
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1159
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1160
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1161
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1162
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1163
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1164
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1165
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1166
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1167
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1168
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1169
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1170
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/
|
1171
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/
|
1172
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1173
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1174
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1175
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1176
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1177
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1178
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1179
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1180
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1181
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1182
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1183
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1184
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1185
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1186
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1187
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1188
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1189
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1190
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1191
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1192
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1193
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1193
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/closures.Plo@am__quote@ # am--include-marker
|
1194
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/debug.Plo@am__quote@ # am--include-marker
|
1195
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/java_raw_api.Plo@am__quote@ # am--include-marker
|
1196
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/prep_cif.Plo@am__quote@ # am--include-marker
|
1197
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/raw_api.Plo@am__quote@ # am--include-marker
|
1198
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tramp.Plo@am__quote@ # am--include-marker
|
1199
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/types.Plo@am__quote@ # am--include-marker
|
1200
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1201
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1202
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/win64_armasm.Plo@am__quote@ # am--include-marker
|
1203
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1204
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/osf.Plo@am__quote@ # am--include-marker
|
1205
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arc/$(DEPDIR)/arcompact.Plo@am__quote@ # am--include-marker
|
1206
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1207
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1208
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1209
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo@am__quote@ # am--include-marker
|
1210
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/avr32/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1211
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/avr32/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1212
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/bfin/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1213
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/bfin/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1214
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1215
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1216
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/csky/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1217
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/csky/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1218
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/eabi.Plo@am__quote@ # am--include-marker
|
1219
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1220
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1221
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/unix.Plo@am__quote@ # am--include-marker
|
1222
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/kvx/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1223
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/kvx/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1224
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/loongarch64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1225
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/loongarch64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1226
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1227
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1228
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1229
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1230
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m88k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1231
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m88k/$(DEPDIR)/obsd.Plo@am__quote@ # am--include-marker
|
1232
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/metag/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1233
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/metag/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1234
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/microblaze/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1235
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/microblaze/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1236
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1237
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/n32.Plo@am__quote@ # am--include-marker
|
1238
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/o32.Plo@am__quote@ # am--include-marker
|
1239
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/moxie/$(DEPDIR)/eabi.Plo@am__quote@ # am--include-marker
|
1240
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/moxie/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1241
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/nios2/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1242
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/nios2/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1243
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/or1k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1244
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/or1k/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1245
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1246
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/hpux32.Plo@am__quote@ # am--include-marker
|
1247
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/hpux64.Plo@am__quote@ # am--include-marker
|
1248
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/linux.Plo@am__quote@ # am--include-marker
|
1249
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix.Plo@am__quote@ # am--include-marker
|
1250
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix_closure.Plo@am__quote@ # am--include-marker
|
1251
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin.Plo@am__quote@ # am--include-marker
|
1252
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin_closure.Plo@am__quote@ # am--include-marker
|
1253
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1254
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_darwin.Plo@am__quote@ # am--include-marker
|
1255
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_linux64.Plo@am__quote@ # am--include-marker
|
1256
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_sysv.Plo@am__quote@ # am--include-marker
|
1257
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64.Plo@am__quote@ # am--include-marker
|
1258
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64_closure.Plo@am__quote@ # am--include-marker
|
1259
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ppc_closure.Plo@am__quote@ # am--include-marker
|
1260
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1261
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/riscv/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1262
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/riscv/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1263
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1264
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1265
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1266
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1267
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1268
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1269
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1270
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/ffi64.Plo@am__quote@ # am--include-marker
|
1271
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v8.Plo@am__quote@ # am--include-marker
|
1272
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v9.Plo@am__quote@ # am--include-marker
|
1273
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/tile/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1274
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/tile/$(DEPDIR)/tile.Plo@am__quote@ # am--include-marker
|
1275
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/vax/$(DEPDIR)/elfbsd.Plo@am__quote@ # am--include-marker
|
1276
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/vax/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1277
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/wasm32/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1278
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1279
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi64.Plo@am__quote@ # am--include-marker
|
1280
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffiw64.Plo@am__quote@ # am--include-marker
|
1281
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1282
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/sysv_intel.Plo@am__quote@ # am--include-marker
|
1283
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/unix64.Plo@am__quote@ # am--include-marker
|
1284
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/win64.Plo@am__quote@ # am--include-marker
|
1285
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/win64_intel.Plo@am__quote@ # am--include-marker
|
1286
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/xtensa/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1287
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/xtensa/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1288
|
+
|
1289
|
+
$(am__depfiles_remade):
|
1290
|
+
@$(MKDIR_P) $(@D)
|
1291
|
+
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
1292
|
+
|
1293
|
+
am--depfiles: $(am__depfiles_remade)
|
1194
1294
|
|
1195
1295
|
.S.o:
|
1196
1296
|
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
@@ -1253,8 +1353,11 @@ clean-libtool:
|
|
1253
1353
|
-rm -rf src/avr32/.libs src/avr32/_libs
|
1254
1354
|
-rm -rf src/bfin/.libs src/bfin/_libs
|
1255
1355
|
-rm -rf src/cris/.libs src/cris/_libs
|
1356
|
+
-rm -rf src/csky/.libs src/csky/_libs
|
1256
1357
|
-rm -rf src/frv/.libs src/frv/_libs
|
1257
1358
|
-rm -rf src/ia64/.libs src/ia64/_libs
|
1359
|
+
-rm -rf src/kvx/.libs src/kvx/_libs
|
1360
|
+
-rm -rf src/loongarch64/.libs src/loongarch64/_libs
|
1258
1361
|
-rm -rf src/m32r/.libs src/m32r/_libs
|
1259
1362
|
-rm -rf src/m68k/.libs src/m68k/_libs
|
1260
1363
|
-rm -rf src/m88k/.libs src/m88k/_libs
|
@@ -1266,12 +1369,14 @@ clean-libtool:
|
|
1266
1369
|
-rm -rf src/or1k/.libs src/or1k/_libs
|
1267
1370
|
-rm -rf src/pa/.libs src/pa/_libs
|
1268
1371
|
-rm -rf src/powerpc/.libs src/powerpc/_libs
|
1372
|
+
-rm -rf src/riscv/.libs src/riscv/_libs
|
1269
1373
|
-rm -rf src/s390/.libs src/s390/_libs
|
1270
1374
|
-rm -rf src/sh/.libs src/sh/_libs
|
1271
1375
|
-rm -rf src/sh64/.libs src/sh64/_libs
|
1272
1376
|
-rm -rf src/sparc/.libs src/sparc/_libs
|
1273
1377
|
-rm -rf src/tile/.libs src/tile/_libs
|
1274
1378
|
-rm -rf src/vax/.libs src/vax/_libs
|
1379
|
+
-rm -rf src/wasm32/.libs src/wasm32/_libs
|
1275
1380
|
-rm -rf src/x86/.libs src/x86/_libs
|
1276
1381
|
-rm -rf src/xtensa/.libs src/xtensa/_libs
|
1277
1382
|
|
@@ -1404,8 +1509,10 @@ cscopelist-am: $(am__tagged_files)
|
|
1404
1509
|
distclean-tags:
|
1405
1510
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
1406
1511
|
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
1512
|
+
distdir: $(BUILT_SOURCES)
|
1513
|
+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
1407
1514
|
|
1408
|
-
distdir: $(DISTFILES)
|
1515
|
+
distdir-am: $(DISTFILES)
|
1409
1516
|
$(am__remove_distdir)
|
1410
1517
|
test -d "$(distdir)" || mkdir "$(distdir)"
|
1411
1518
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@@ -1473,7 +1580,7 @@ distdir: $(DISTFILES)
|
|
1473
1580
|
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
1474
1581
|
|| chmod -R a+r "$(distdir)"
|
1475
1582
|
dist-gzip: distdir
|
1476
|
-
tardir=$(distdir) && $(am__tar) | GZIP
|
1583
|
+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
|
1477
1584
|
$(am__post_remove_distdir)
|
1478
1585
|
|
1479
1586
|
dist-bzip2: distdir
|
@@ -1488,6 +1595,10 @@ dist-xz: distdir
|
|
1488
1595
|
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
1489
1596
|
$(am__post_remove_distdir)
|
1490
1597
|
|
1598
|
+
dist-zstd: distdir
|
1599
|
+
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
|
1600
|
+
$(am__post_remove_distdir)
|
1601
|
+
|
1491
1602
|
dist-tarZ: distdir
|
1492
1603
|
@echo WARNING: "Support for distribution archives compressed with" \
|
1493
1604
|
"legacy program 'compress' is deprecated." >&2
|
@@ -1499,7 +1610,7 @@ dist-shar: distdir
|
|
1499
1610
|
@echo WARNING: "Support for shar distribution archives is" \
|
1500
1611
|
"deprecated." >&2
|
1501
1612
|
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
1502
|
-
shar $(distdir) | GZIP
|
1613
|
+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
|
1503
1614
|
$(am__post_remove_distdir)
|
1504
1615
|
|
1505
1616
|
dist-zip: distdir
|
@@ -1517,7 +1628,7 @@ dist dist-all:
|
|
1517
1628
|
distcheck: dist
|
1518
1629
|
case '$(DIST_ARCHIVES)' in \
|
1519
1630
|
*.tar.gz*) \
|
1520
|
-
GZIP
|
1631
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
|
1521
1632
|
*.tar.bz2*) \
|
1522
1633
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
1523
1634
|
*.tar.lz*) \
|
@@ -1527,9 +1638,11 @@ distcheck: dist
|
|
1527
1638
|
*.tar.Z*) \
|
1528
1639
|
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
1529
1640
|
*.shar.gz*) \
|
1530
|
-
GZIP
|
1641
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
1531
1642
|
*.zip*) \
|
1532
1643
|
unzip $(distdir).zip ;;\
|
1644
|
+
*.tar.zst*) \
|
1645
|
+
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
|
1533
1646
|
esac
|
1534
1647
|
chmod -R a-w $(distdir)
|
1535
1648
|
chmod u+w $(distdir)
|
@@ -1545,7 +1658,7 @@ distcheck: dist
|
|
1545
1658
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
1546
1659
|
--srcdir=../.. --prefix="$$dc_install_base" \
|
1547
1660
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
1548
|
-
&& $(MAKE) $(AM_MAKEFLAGS)
|
1661
|
+
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
|
1549
1662
|
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
1550
1663
|
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
1551
1664
|
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
@@ -1646,10 +1759,16 @@ distclean-generic:
|
|
1646
1759
|
-rm -f src/bfin/$(am__dirstamp)
|
1647
1760
|
-rm -f src/cris/$(DEPDIR)/$(am__dirstamp)
|
1648
1761
|
-rm -f src/cris/$(am__dirstamp)
|
1762
|
+
-rm -f src/csky/$(DEPDIR)/$(am__dirstamp)
|
1763
|
+
-rm -f src/csky/$(am__dirstamp)
|
1649
1764
|
-rm -f src/frv/$(DEPDIR)/$(am__dirstamp)
|
1650
1765
|
-rm -f src/frv/$(am__dirstamp)
|
1651
1766
|
-rm -f src/ia64/$(DEPDIR)/$(am__dirstamp)
|
1652
1767
|
-rm -f src/ia64/$(am__dirstamp)
|
1768
|
+
-rm -f src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1769
|
+
-rm -f src/kvx/$(am__dirstamp)
|
1770
|
+
-rm -f src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1771
|
+
-rm -f src/loongarch64/$(am__dirstamp)
|
1653
1772
|
-rm -f src/m32r/$(DEPDIR)/$(am__dirstamp)
|
1654
1773
|
-rm -f src/m32r/$(am__dirstamp)
|
1655
1774
|
-rm -f src/m68k/$(DEPDIR)/$(am__dirstamp)
|
@@ -1672,6 +1791,8 @@ distclean-generic:
|
|
1672
1791
|
-rm -f src/pa/$(am__dirstamp)
|
1673
1792
|
-rm -f src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
1674
1793
|
-rm -f src/powerpc/$(am__dirstamp)
|
1794
|
+
-rm -f src/riscv/$(DEPDIR)/$(am__dirstamp)
|
1795
|
+
-rm -f src/riscv/$(am__dirstamp)
|
1675
1796
|
-rm -f src/s390/$(DEPDIR)/$(am__dirstamp)
|
1676
1797
|
-rm -f src/s390/$(am__dirstamp)
|
1677
1798
|
-rm -f src/sh/$(DEPDIR)/$(am__dirstamp)
|
@@ -1684,6 +1805,8 @@ distclean-generic:
|
|
1684
1805
|
-rm -f src/tile/$(am__dirstamp)
|
1685
1806
|
-rm -f src/vax/$(DEPDIR)/$(am__dirstamp)
|
1686
1807
|
-rm -f src/vax/$(am__dirstamp)
|
1808
|
+
-rm -f src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1809
|
+
-rm -f src/wasm32/$(am__dirstamp)
|
1687
1810
|
-rm -f src/x86/$(DEPDIR)/$(am__dirstamp)
|
1688
1811
|
-rm -f src/x86/$(am__dirstamp)
|
1689
1812
|
-rm -f src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
@@ -1700,7 +1823,101 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
|
1700
1823
|
|
1701
1824
|
distclean: distclean-recursive
|
1702
1825
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1703
|
-
|
1826
|
+
-rm -f src/$(DEPDIR)/closures.Plo
|
1827
|
+
-rm -f src/$(DEPDIR)/debug.Plo
|
1828
|
+
-rm -f src/$(DEPDIR)/java_raw_api.Plo
|
1829
|
+
-rm -f src/$(DEPDIR)/prep_cif.Plo
|
1830
|
+
-rm -f src/$(DEPDIR)/raw_api.Plo
|
1831
|
+
-rm -f src/$(DEPDIR)/tramp.Plo
|
1832
|
+
-rm -f src/$(DEPDIR)/types.Plo
|
1833
|
+
-rm -f src/aarch64/$(DEPDIR)/ffi.Plo
|
1834
|
+
-rm -f src/aarch64/$(DEPDIR)/sysv.Plo
|
1835
|
+
-rm -f src/aarch64/$(DEPDIR)/win64_armasm.Plo
|
1836
|
+
-rm -f src/alpha/$(DEPDIR)/ffi.Plo
|
1837
|
+
-rm -f src/alpha/$(DEPDIR)/osf.Plo
|
1838
|
+
-rm -f src/arc/$(DEPDIR)/arcompact.Plo
|
1839
|
+
-rm -f src/arc/$(DEPDIR)/ffi.Plo
|
1840
|
+
-rm -f src/arm/$(DEPDIR)/ffi.Plo
|
1841
|
+
-rm -f src/arm/$(DEPDIR)/sysv.Plo
|
1842
|
+
-rm -f src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo
|
1843
|
+
-rm -f src/avr32/$(DEPDIR)/ffi.Plo
|
1844
|
+
-rm -f src/avr32/$(DEPDIR)/sysv.Plo
|
1845
|
+
-rm -f src/bfin/$(DEPDIR)/ffi.Plo
|
1846
|
+
-rm -f src/bfin/$(DEPDIR)/sysv.Plo
|
1847
|
+
-rm -f src/cris/$(DEPDIR)/ffi.Plo
|
1848
|
+
-rm -f src/cris/$(DEPDIR)/sysv.Plo
|
1849
|
+
-rm -f src/csky/$(DEPDIR)/ffi.Plo
|
1850
|
+
-rm -f src/csky/$(DEPDIR)/sysv.Plo
|
1851
|
+
-rm -f src/frv/$(DEPDIR)/eabi.Plo
|
1852
|
+
-rm -f src/frv/$(DEPDIR)/ffi.Plo
|
1853
|
+
-rm -f src/ia64/$(DEPDIR)/ffi.Plo
|
1854
|
+
-rm -f src/ia64/$(DEPDIR)/unix.Plo
|
1855
|
+
-rm -f src/kvx/$(DEPDIR)/ffi.Plo
|
1856
|
+
-rm -f src/kvx/$(DEPDIR)/sysv.Plo
|
1857
|
+
-rm -f src/loongarch64/$(DEPDIR)/ffi.Plo
|
1858
|
+
-rm -f src/loongarch64/$(DEPDIR)/sysv.Plo
|
1859
|
+
-rm -f src/m32r/$(DEPDIR)/ffi.Plo
|
1860
|
+
-rm -f src/m32r/$(DEPDIR)/sysv.Plo
|
1861
|
+
-rm -f src/m68k/$(DEPDIR)/ffi.Plo
|
1862
|
+
-rm -f src/m68k/$(DEPDIR)/sysv.Plo
|
1863
|
+
-rm -f src/m88k/$(DEPDIR)/ffi.Plo
|
1864
|
+
-rm -f src/m88k/$(DEPDIR)/obsd.Plo
|
1865
|
+
-rm -f src/metag/$(DEPDIR)/ffi.Plo
|
1866
|
+
-rm -f src/metag/$(DEPDIR)/sysv.Plo
|
1867
|
+
-rm -f src/microblaze/$(DEPDIR)/ffi.Plo
|
1868
|
+
-rm -f src/microblaze/$(DEPDIR)/sysv.Plo
|
1869
|
+
-rm -f src/mips/$(DEPDIR)/ffi.Plo
|
1870
|
+
-rm -f src/mips/$(DEPDIR)/n32.Plo
|
1871
|
+
-rm -f src/mips/$(DEPDIR)/o32.Plo
|
1872
|
+
-rm -f src/moxie/$(DEPDIR)/eabi.Plo
|
1873
|
+
-rm -f src/moxie/$(DEPDIR)/ffi.Plo
|
1874
|
+
-rm -f src/nios2/$(DEPDIR)/ffi.Plo
|
1875
|
+
-rm -f src/nios2/$(DEPDIR)/sysv.Plo
|
1876
|
+
-rm -f src/or1k/$(DEPDIR)/ffi.Plo
|
1877
|
+
-rm -f src/or1k/$(DEPDIR)/sysv.Plo
|
1878
|
+
-rm -f src/pa/$(DEPDIR)/ffi.Plo
|
1879
|
+
-rm -f src/pa/$(DEPDIR)/hpux32.Plo
|
1880
|
+
-rm -f src/pa/$(DEPDIR)/hpux64.Plo
|
1881
|
+
-rm -f src/pa/$(DEPDIR)/linux.Plo
|
1882
|
+
-rm -f src/powerpc/$(DEPDIR)/aix.Plo
|
1883
|
+
-rm -f src/powerpc/$(DEPDIR)/aix_closure.Plo
|
1884
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin.Plo
|
1885
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin_closure.Plo
|
1886
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi.Plo
|
1887
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_darwin.Plo
|
1888
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_linux64.Plo
|
1889
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_sysv.Plo
|
1890
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64.Plo
|
1891
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64_closure.Plo
|
1892
|
+
-rm -f src/powerpc/$(DEPDIR)/ppc_closure.Plo
|
1893
|
+
-rm -f src/powerpc/$(DEPDIR)/sysv.Plo
|
1894
|
+
-rm -f src/riscv/$(DEPDIR)/ffi.Plo
|
1895
|
+
-rm -f src/riscv/$(DEPDIR)/sysv.Plo
|
1896
|
+
-rm -f src/s390/$(DEPDIR)/ffi.Plo
|
1897
|
+
-rm -f src/s390/$(DEPDIR)/sysv.Plo
|
1898
|
+
-rm -f src/sh/$(DEPDIR)/ffi.Plo
|
1899
|
+
-rm -f src/sh/$(DEPDIR)/sysv.Plo
|
1900
|
+
-rm -f src/sh64/$(DEPDIR)/ffi.Plo
|
1901
|
+
-rm -f src/sh64/$(DEPDIR)/sysv.Plo
|
1902
|
+
-rm -f src/sparc/$(DEPDIR)/ffi.Plo
|
1903
|
+
-rm -f src/sparc/$(DEPDIR)/ffi64.Plo
|
1904
|
+
-rm -f src/sparc/$(DEPDIR)/v8.Plo
|
1905
|
+
-rm -f src/sparc/$(DEPDIR)/v9.Plo
|
1906
|
+
-rm -f src/tile/$(DEPDIR)/ffi.Plo
|
1907
|
+
-rm -f src/tile/$(DEPDIR)/tile.Plo
|
1908
|
+
-rm -f src/vax/$(DEPDIR)/elfbsd.Plo
|
1909
|
+
-rm -f src/vax/$(DEPDIR)/ffi.Plo
|
1910
|
+
-rm -f src/wasm32/$(DEPDIR)/ffi.Plo
|
1911
|
+
-rm -f src/x86/$(DEPDIR)/ffi.Plo
|
1912
|
+
-rm -f src/x86/$(DEPDIR)/ffi64.Plo
|
1913
|
+
-rm -f src/x86/$(DEPDIR)/ffiw64.Plo
|
1914
|
+
-rm -f src/x86/$(DEPDIR)/sysv.Plo
|
1915
|
+
-rm -f src/x86/$(DEPDIR)/sysv_intel.Plo
|
1916
|
+
-rm -f src/x86/$(DEPDIR)/unix64.Plo
|
1917
|
+
-rm -f src/x86/$(DEPDIR)/win64.Plo
|
1918
|
+
-rm -f src/x86/$(DEPDIR)/win64_intel.Plo
|
1919
|
+
-rm -f src/xtensa/$(DEPDIR)/ffi.Plo
|
1920
|
+
-rm -f src/xtensa/$(DEPDIR)/sysv.Plo
|
1704
1921
|
-rm -f Makefile
|
1705
1922
|
distclean-am: clean-am distclean-compile distclean-generic \
|
1706
1923
|
distclean-hdr distclean-libtool distclean-tags
|
@@ -1748,7 +1965,101 @@ installcheck-am:
|
|
1748
1965
|
maintainer-clean: maintainer-clean-recursive
|
1749
1966
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1750
1967
|
-rm -rf $(top_srcdir)/autom4te.cache
|
1751
|
-
|
1968
|
+
-rm -f src/$(DEPDIR)/closures.Plo
|
1969
|
+
-rm -f src/$(DEPDIR)/debug.Plo
|
1970
|
+
-rm -f src/$(DEPDIR)/java_raw_api.Plo
|
1971
|
+
-rm -f src/$(DEPDIR)/prep_cif.Plo
|
1972
|
+
-rm -f src/$(DEPDIR)/raw_api.Plo
|
1973
|
+
-rm -f src/$(DEPDIR)/tramp.Plo
|
1974
|
+
-rm -f src/$(DEPDIR)/types.Plo
|
1975
|
+
-rm -f src/aarch64/$(DEPDIR)/ffi.Plo
|
1976
|
+
-rm -f src/aarch64/$(DEPDIR)/sysv.Plo
|
1977
|
+
-rm -f src/aarch64/$(DEPDIR)/win64_armasm.Plo
|
1978
|
+
-rm -f src/alpha/$(DEPDIR)/ffi.Plo
|
1979
|
+
-rm -f src/alpha/$(DEPDIR)/osf.Plo
|
1980
|
+
-rm -f src/arc/$(DEPDIR)/arcompact.Plo
|
1981
|
+
-rm -f src/arc/$(DEPDIR)/ffi.Plo
|
1982
|
+
-rm -f src/arm/$(DEPDIR)/ffi.Plo
|
1983
|
+
-rm -f src/arm/$(DEPDIR)/sysv.Plo
|
1984
|
+
-rm -f src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo
|
1985
|
+
-rm -f src/avr32/$(DEPDIR)/ffi.Plo
|
1986
|
+
-rm -f src/avr32/$(DEPDIR)/sysv.Plo
|
1987
|
+
-rm -f src/bfin/$(DEPDIR)/ffi.Plo
|
1988
|
+
-rm -f src/bfin/$(DEPDIR)/sysv.Plo
|
1989
|
+
-rm -f src/cris/$(DEPDIR)/ffi.Plo
|
1990
|
+
-rm -f src/cris/$(DEPDIR)/sysv.Plo
|
1991
|
+
-rm -f src/csky/$(DEPDIR)/ffi.Plo
|
1992
|
+
-rm -f src/csky/$(DEPDIR)/sysv.Plo
|
1993
|
+
-rm -f src/frv/$(DEPDIR)/eabi.Plo
|
1994
|
+
-rm -f src/frv/$(DEPDIR)/ffi.Plo
|
1995
|
+
-rm -f src/ia64/$(DEPDIR)/ffi.Plo
|
1996
|
+
-rm -f src/ia64/$(DEPDIR)/unix.Plo
|
1997
|
+
-rm -f src/kvx/$(DEPDIR)/ffi.Plo
|
1998
|
+
-rm -f src/kvx/$(DEPDIR)/sysv.Plo
|
1999
|
+
-rm -f src/loongarch64/$(DEPDIR)/ffi.Plo
|
2000
|
+
-rm -f src/loongarch64/$(DEPDIR)/sysv.Plo
|
2001
|
+
-rm -f src/m32r/$(DEPDIR)/ffi.Plo
|
2002
|
+
-rm -f src/m32r/$(DEPDIR)/sysv.Plo
|
2003
|
+
-rm -f src/m68k/$(DEPDIR)/ffi.Plo
|
2004
|
+
-rm -f src/m68k/$(DEPDIR)/sysv.Plo
|
2005
|
+
-rm -f src/m88k/$(DEPDIR)/ffi.Plo
|
2006
|
+
-rm -f src/m88k/$(DEPDIR)/obsd.Plo
|
2007
|
+
-rm -f src/metag/$(DEPDIR)/ffi.Plo
|
2008
|
+
-rm -f src/metag/$(DEPDIR)/sysv.Plo
|
2009
|
+
-rm -f src/microblaze/$(DEPDIR)/ffi.Plo
|
2010
|
+
-rm -f src/microblaze/$(DEPDIR)/sysv.Plo
|
2011
|
+
-rm -f src/mips/$(DEPDIR)/ffi.Plo
|
2012
|
+
-rm -f src/mips/$(DEPDIR)/n32.Plo
|
2013
|
+
-rm -f src/mips/$(DEPDIR)/o32.Plo
|
2014
|
+
-rm -f src/moxie/$(DEPDIR)/eabi.Plo
|
2015
|
+
-rm -f src/moxie/$(DEPDIR)/ffi.Plo
|
2016
|
+
-rm -f src/nios2/$(DEPDIR)/ffi.Plo
|
2017
|
+
-rm -f src/nios2/$(DEPDIR)/sysv.Plo
|
2018
|
+
-rm -f src/or1k/$(DEPDIR)/ffi.Plo
|
2019
|
+
-rm -f src/or1k/$(DEPDIR)/sysv.Plo
|
2020
|
+
-rm -f src/pa/$(DEPDIR)/ffi.Plo
|
2021
|
+
-rm -f src/pa/$(DEPDIR)/hpux32.Plo
|
2022
|
+
-rm -f src/pa/$(DEPDIR)/hpux64.Plo
|
2023
|
+
-rm -f src/pa/$(DEPDIR)/linux.Plo
|
2024
|
+
-rm -f src/powerpc/$(DEPDIR)/aix.Plo
|
2025
|
+
-rm -f src/powerpc/$(DEPDIR)/aix_closure.Plo
|
2026
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin.Plo
|
2027
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin_closure.Plo
|
2028
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi.Plo
|
2029
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_darwin.Plo
|
2030
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_linux64.Plo
|
2031
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_sysv.Plo
|
2032
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64.Plo
|
2033
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64_closure.Plo
|
2034
|
+
-rm -f src/powerpc/$(DEPDIR)/ppc_closure.Plo
|
2035
|
+
-rm -f src/powerpc/$(DEPDIR)/sysv.Plo
|
2036
|
+
-rm -f src/riscv/$(DEPDIR)/ffi.Plo
|
2037
|
+
-rm -f src/riscv/$(DEPDIR)/sysv.Plo
|
2038
|
+
-rm -f src/s390/$(DEPDIR)/ffi.Plo
|
2039
|
+
-rm -f src/s390/$(DEPDIR)/sysv.Plo
|
2040
|
+
-rm -f src/sh/$(DEPDIR)/ffi.Plo
|
2041
|
+
-rm -f src/sh/$(DEPDIR)/sysv.Plo
|
2042
|
+
-rm -f src/sh64/$(DEPDIR)/ffi.Plo
|
2043
|
+
-rm -f src/sh64/$(DEPDIR)/sysv.Plo
|
2044
|
+
-rm -f src/sparc/$(DEPDIR)/ffi.Plo
|
2045
|
+
-rm -f src/sparc/$(DEPDIR)/ffi64.Plo
|
2046
|
+
-rm -f src/sparc/$(DEPDIR)/v8.Plo
|
2047
|
+
-rm -f src/sparc/$(DEPDIR)/v9.Plo
|
2048
|
+
-rm -f src/tile/$(DEPDIR)/ffi.Plo
|
2049
|
+
-rm -f src/tile/$(DEPDIR)/tile.Plo
|
2050
|
+
-rm -f src/vax/$(DEPDIR)/elfbsd.Plo
|
2051
|
+
-rm -f src/vax/$(DEPDIR)/ffi.Plo
|
2052
|
+
-rm -f src/wasm32/$(DEPDIR)/ffi.Plo
|
2053
|
+
-rm -f src/x86/$(DEPDIR)/ffi.Plo
|
2054
|
+
-rm -f src/x86/$(DEPDIR)/ffi64.Plo
|
2055
|
+
-rm -f src/x86/$(DEPDIR)/ffiw64.Plo
|
2056
|
+
-rm -f src/x86/$(DEPDIR)/sysv.Plo
|
2057
|
+
-rm -f src/x86/$(DEPDIR)/sysv_intel.Plo
|
2058
|
+
-rm -f src/x86/$(DEPDIR)/unix64.Plo
|
2059
|
+
-rm -f src/x86/$(DEPDIR)/win64.Plo
|
2060
|
+
-rm -f src/x86/$(DEPDIR)/win64_intel.Plo
|
2061
|
+
-rm -f src/xtensa/$(DEPDIR)/ffi.Plo
|
2062
|
+
-rm -f src/xtensa/$(DEPDIR)/sysv.Plo
|
1752
2063
|
-rm -f Makefile
|
1753
2064
|
maintainer-clean-am: distclean-am maintainer-clean-generic
|
1754
2065
|
|
@@ -1770,39 +2081,46 @@ uninstall-am: uninstall-pkgconfigDATA uninstall-toolexeclibLTLIBRARIES
|
|
1770
2081
|
.MAKE: $(am__recursive_targets) all install-am install-strip
|
1771
2082
|
|
1772
2083
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
1773
|
-
am--refresh check check-am clean clean-cscope
|
1774
|
-
clean-libtool clean-noinstLTLIBRARIES \
|
2084
|
+
am--depfiles am--refresh check check-am clean clean-cscope \
|
2085
|
+
clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
1775
2086
|
clean-toolexeclibLTLIBRARIES cscope cscopelist-am ctags \
|
1776
2087
|
ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
|
1777
|
-
dist-lzip dist-shar dist-tarZ dist-xz dist-zip
|
1778
|
-
distclean distclean-compile distclean-generic
|
1779
|
-
distclean-libtool distclean-tags distcleancheck
|
1780
|
-
distuninstallcheck dvi dvi-am html html-am info
|
1781
|
-
install install-am install-data install-data-am
|
1782
|
-
install-dvi-am install-exec install-exec-am
|
1783
|
-
install-html-am install-info install-info-am
|
1784
|
-
install-pdf install-pdf-am install-pkgconfigDATA
|
1785
|
-
install-ps-am install-strip
|
1786
|
-
installcheck installcheck-am
|
1787
|
-
|
1788
|
-
|
1789
|
-
pdf pdf-am ps ps-am
|
1790
|
-
uninstall-
|
2088
|
+
dist-lzip dist-shar dist-tarZ dist-xz dist-zip dist-zstd \
|
2089
|
+
distcheck distclean distclean-compile distclean-generic \
|
2090
|
+
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
2091
|
+
distdir distuninstallcheck dvi dvi-am html html-am info \
|
2092
|
+
info-am install install-am install-data install-data-am \
|
2093
|
+
install-dvi install-dvi-am install-exec install-exec-am \
|
2094
|
+
install-html install-html-am install-info install-info-am \
|
2095
|
+
install-man install-pdf install-pdf-am install-pkgconfigDATA \
|
2096
|
+
install-ps install-ps-am install-strip \
|
2097
|
+
install-toolexeclibLTLIBRARIES installcheck installcheck-am \
|
2098
|
+
installdirs installdirs-am maintainer-clean \
|
2099
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
2100
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
2101
|
+
tags tags-am uninstall uninstall-am uninstall-pkgconfigDATA \
|
2102
|
+
uninstall-toolexeclibLTLIBRARIES
|
1791
2103
|
|
1792
2104
|
.PRECIOUS: Makefile
|
1793
2105
|
|
1794
|
-
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi.map-sun : libffi.map $(top_srcdir)
|
2106
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi.map-sun : libffi.map $(top_srcdir)/make_sunver.pl \
|
1795
2107
|
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ $(libffi_la_OBJECTS) $(libffi_la_LIBADD)
|
1796
|
-
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ perl $(top_srcdir)
|
2108
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ perl $(top_srcdir)/make_sunver.pl libffi.map \
|
1797
2109
|
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ `echo $(libffi_la_OBJECTS) $(libffi_la_LIBADD) | \
|
1798
2110
|
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ sed 's,\([^/ ]*\)\.l\([ao]\),.libs/\1.\2,g'` \
|
1799
2111
|
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ > $@ || (rm -f $@ ; exit 1)
|
1800
2112
|
|
1801
2113
|
libffi.map: $(top_srcdir)/libffi.map.in
|
1802
|
-
$(COMPILE) -D$(TARGET) -
|
2114
|
+
$(COMPILE) -D$(TARGET) -DGENERATE_LIBFFI_MAP \
|
2115
|
+
-E -x assembler-with-cpp -o $@ $(top_srcdir)/libffi.map.in
|
1803
2116
|
|
1804
2117
|
dist-hook:
|
2118
|
+
d=`(cd $(distdir); pwd)`; (cd doc; make pdf; cp *.pdf $$d/doc)
|
1805
2119
|
if [ -d $(top_srcdir)/.git ] ; then (cd $(top_srcdir); git log --no-decorate) ; else echo 'See git log for history.' ; fi > $(distdir)/ChangeLog
|
2120
|
+
s=`awk '/was released on/{ print NR; exit}' $(top_srcdir)/README.md`; tail -n +$$(($$s-1)) $(top_srcdir)/README.md > $(distdir)/README.md
|
2121
|
+
|
2122
|
+
# target overrides
|
2123
|
+
-include $(tmake_file)
|
1806
2124
|
|
1807
2125
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1808
2126
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|