cybrid_api_organization_ruby 0.94.31 → 0.94.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +5 -5
- data/cybrid_api_organization_ruby.gemspec +1 -1
- data/lib/cybrid_api_organization_ruby/api/organizations_organization_api.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_client.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_error.rb +1 -1
- data/lib/cybrid_api_organization_ruby/configuration.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/error_response_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/patch_organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/version.rb +2 -2
- data/lib/cybrid_api_organization_ruby.rb +1 -1
- data/spec/api/organizations_organization_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/error_response_organization_model_spec.rb +1 -1
- data/spec/models/organization_organization_model_spec.rb +1 -1
- data/spec/models/patch_organization_organization_model_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.16.2.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.2/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.2/gem_make.out +55 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.2/mkmf.log +268 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.1.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.0.8/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/CHANGELOG.md +406 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/Gemfile +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/README.md +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/Rakefile +194 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/AbstractMemory.c +1126 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/AbstractMemory.h +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/ArrayType.c +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/ArrayType.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Buffer.c +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Call.c +495 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/DynamicLibrary.c +397 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Function.c +1061 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Function.h +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/FunctionInfo.c +320 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/LastError.c +243 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/MappedType.c +211 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/MappedType.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/MemoryPointer.c +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/MethodHandle.c +350 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Pointer.c +546 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Pointer.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Struct.c +893 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Struct.h +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/StructByValue.c +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/StructLayout.c +769 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Type.c +447 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Type.h +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/Variadic.c +345 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/compat.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/extconf.h +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/extconf.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/ffi.c +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.appveyor.yml +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/.gitignore +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/Makefile.am +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/Makefile.in +2127 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/README.md +526 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/acinclude.m4 +377 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/compile +347 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/config.guess +1754 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/config.sub +1892 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/configure +22791 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/configure.ac +451 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/configure.host +337 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/doc/Makefile.in +818 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/doc/libffi.texi +1046 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/fficonfig.h.in +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/Makefile.in +609 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/ffi.h.in +527 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/ffi_common.h +182 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/install-sh +541 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/ltmain.sh +11448 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/man/Makefile.in +565 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/missing +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/aarch64/ffi.c +1129 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/aarch64/sysv.S +543 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arm/ffi.c +921 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arm/internal.h +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/arm/sysv.S +456 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/closures.c +1107 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/dlmalloc.c +5171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/ia64/ffi.c +616 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/ia64/unix.S +585 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/m32r/ffi.c +249 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/mips/ffi.c +1309 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/mips/ffitarget.h +251 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/mips/n32.S +772 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/mips/o32.S +561 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/moxie/ffi.c +310 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/ffi.c +673 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/ffitarget.h +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/hpux32.S +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/pa/linux.S +427 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/powerpc/linux64.S +293 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +566 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/prep_cif.c +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/sparc/ffi64.c +624 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/ffi.c +832 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/ffi64.c +950 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/ffitarget.h +164 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/internal.h +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/sysv.S +1272 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/unix64.S +711 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/x86/win64.S +254 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/Makefile.am +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/Makefile.in +664 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/lib/libffi.exp +682 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +117 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +114 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +148 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +175 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +146 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi.bsd.mk +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/libffi.gnu.mk +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ext/ffi_c/rbffi.h +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/ffi.gemspec +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/autopointer.rb +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/compat.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/data_converter.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/dynamic_library.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/enum.rb +303 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/ffi.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/function.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/library.rb +576 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/library_path.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/platform.rb +187 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/struct.rb +317 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/struct_layout.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/struct_layout_builder.rb +227 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/types.rb +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/variadic.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.2/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.16.2.gemspec +34 -0
- metadata +628 -580
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.15.5.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/gem_make.out +0 -54
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/mkmf.log +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/CHANGELOG.md +0 -338
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Gemfile +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/README.md +0 -136
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Rakefile +0 -191
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.c +0 -1104
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.h +0 -175
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.c +0 -162
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c +0 -360
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Call.c +0 -487
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.c +0 -334
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.c +0 -917
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.h +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c +0 -225
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.c +0 -168
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c +0 -192
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c +0 -348
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c +0 -507
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c +0 -822
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.h +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c +0 -145
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c +0 -700
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.h +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Types.c +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c +0 -303
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/compat.h +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ffi.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.appveyor.yml +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.gitignore +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-in-container.sh +0 -12
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/install.sh +0 -71
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/site.exp +0 -27
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis.yml +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/LICENSE +0 -21
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.am +0 -150
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.in +0 -2060
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/README.md +0 -486
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/acinclude.m4 +0 -479
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.guess +0 -1687
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.sub +0 -1851
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure +0 -22050
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.ac +0 -415
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.host +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/Makefile.in +0 -815
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/libffi.texi +0 -997
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/version.texi +0 -4
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/fficonfig.h.in +0 -223
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.am +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.in +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi.h.in +0 -523
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_common.h +0 -153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/install-sh +0 -518
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/libtool-version +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/ltmain.sh +0 -11251
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/man/Makefile.in +0 -562
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -511
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1025
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/internal.h +0 -68
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffi.c +0 -876
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/internal.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/closures.c +0 -1021
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/ffi.c +0 -604
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/unix.S +0 -567
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffi.c +0 -1134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/n32.S +0 -663
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/o32.S +0 -504
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffi.c +0 -674
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -80
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/hpux32.S +0 -370
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/linux.S +0 -380
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -1153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -291
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -564
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/riscv/ffi.c +0 -481
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi.c +0 -770
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi64.c +0 -895
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -160
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal.h +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -995
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/unix64.S +0 -621
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/win64.S +0 -241
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -258
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.am +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.in +0 -648
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -660
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -743
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -94
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -102
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -109
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -99
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -97
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -132
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -115
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -105
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -114
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -343
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -152
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -110
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -70
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -54
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.bsd.mk +0 -40
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.gnu.mk +0 -32
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/rbffi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ffi.gemspec +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/data_converter.rb +0 -67
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/enum.rb +0 -296
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/ffi.rb +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/platform.rb +0 -185
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct.rb +0 -316
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout.rb +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout_builder.rb +0 -227
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/variadic.rb +0 -69
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.15.5.gemspec +0 -33
- /data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/{ffi-1.15.5 → ffi-1.16.2}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/COPYING +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/LICENSE +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/LICENSE.SPECS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Call.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/ClosurePool.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/ClosurePool.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/DynamicLibrary.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/LastError.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/LongDouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/LongDouble.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/MemoryPointer.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/MethodHandle.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Platform.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Platform.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/StructByValue.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Thread.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Thread.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/Types.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/ar-lib +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/bfin-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/compile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/m32r-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/moxie-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/or1k-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/powerpc-eabisim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.2/ext/ffi_c/libffi/.ci}/wine-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/.gitattributes +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/ChangeLog.old +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/autogen.sh +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/libffi.map.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/libtool-ldflags +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/make_sunver.pl +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/csky/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/csky/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/debug.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/kvx/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/kvx/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/kvx/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/types.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/stamp-h.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c → ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc_tc.c} +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.complex → ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.closures}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.go → ffi-1.16.2/ext/ffi_c/libffi/testsuite/libffi.complex}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi.darwin.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi.vc.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/libffi.vc64.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/ext/ffi_c/rbffi_endian.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/abstract_memory.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/buffer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/callback.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/errno.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/io.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/memorypointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/aarch64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/aarch64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/x86_64-windows → ffi-1.16.2/lib/ffi/platform/aarch64-windows}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/arm-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/i386-windows/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mips-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/powerpc64le-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/riscv64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/s390-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/sparc64-linux → ffi-1.16.2/lib/ffi/platform/sparcv9-linux}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-haiku/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-msys/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/pointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/struct_by_reference.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/tools/const_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/tools/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/tools/generator_task.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/tools/struct_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/tools/types_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi/union.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/lib/ffi.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/rakelib/ffi_gem_helper.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/getlogin.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/getpid.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/gettimeofday.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/hello.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/inotify.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/pty.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.2}/samples/qsort.rb +0 -0
@@ -0,0 +1,2127 @@
|
|
1
|
+
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
5
|
+
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
VPATH = @srcdir@
|
20
|
+
am__is_gnu_make = { \
|
21
|
+
if test -z '$(MAKELEVEL)'; then \
|
22
|
+
false; \
|
23
|
+
elif test -n '$(MAKE_HOST)'; then \
|
24
|
+
true; \
|
25
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
26
|
+
true; \
|
27
|
+
else \
|
28
|
+
false; \
|
29
|
+
fi; \
|
30
|
+
}
|
31
|
+
am__make_running_with_option = \
|
32
|
+
case $${target_option-} in \
|
33
|
+
?) ;; \
|
34
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
35
|
+
"target option '$${target_option-}' specified" >&2; \
|
36
|
+
exit 1;; \
|
37
|
+
esac; \
|
38
|
+
has_opt=no; \
|
39
|
+
sane_makeflags=$$MAKEFLAGS; \
|
40
|
+
if $(am__is_gnu_make); then \
|
41
|
+
sane_makeflags=$$MFLAGS; \
|
42
|
+
else \
|
43
|
+
case $$MAKEFLAGS in \
|
44
|
+
*\\[\ \ ]*) \
|
45
|
+
bs=\\; \
|
46
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
47
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
48
|
+
esac; \
|
49
|
+
fi; \
|
50
|
+
skip_next=no; \
|
51
|
+
strip_trailopt () \
|
52
|
+
{ \
|
53
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
54
|
+
}; \
|
55
|
+
for flg in $$sane_makeflags; do \
|
56
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
57
|
+
case $$flg in \
|
58
|
+
*=*|--*) continue;; \
|
59
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
60
|
+
-*I?*) strip_trailopt 'I';; \
|
61
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
62
|
+
-*O?*) strip_trailopt 'O';; \
|
63
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
64
|
+
-*l?*) strip_trailopt 'l';; \
|
65
|
+
-[dEDm]) skip_next=yes;; \
|
66
|
+
-[JT]) skip_next=yes;; \
|
67
|
+
esac; \
|
68
|
+
case $$flg in \
|
69
|
+
*$$target_option*) has_opt=yes; break;; \
|
70
|
+
esac; \
|
71
|
+
done; \
|
72
|
+
test $$has_opt = yes
|
73
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
74
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
75
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
76
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
77
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
78
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
79
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
80
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
81
|
+
install_sh_PROGRAM = $(install_sh) -c
|
82
|
+
install_sh_SCRIPT = $(install_sh) -c
|
83
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
84
|
+
transform = $(program_transform_name)
|
85
|
+
NORMAL_INSTALL = :
|
86
|
+
PRE_INSTALL = :
|
87
|
+
POST_INSTALL = :
|
88
|
+
NORMAL_UNINSTALL = :
|
89
|
+
PRE_UNINSTALL = :
|
90
|
+
POST_UNINSTALL = :
|
91
|
+
build_triplet = @build@
|
92
|
+
host_triplet = @host@
|
93
|
+
target_triplet = @target@
|
94
|
+
@BUILD_DOCS_TRUE@am__append_1 = doc
|
95
|
+
@FFI_DEBUG_TRUE@am__append_2 = src/debug.c
|
96
|
+
# Build debug. Define FFI_DEBUG on the commandline so that, when building with
|
97
|
+
# MSVC, it can link against the debug CRT.
|
98
|
+
@FFI_DEBUG_TRUE@am__append_3 = -DFFI_DEBUG
|
99
|
+
subdir = .
|
100
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
101
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
102
|
+
$(top_srcdir)/m4/ax_cc_maxopt.m4 \
|
103
|
+
$(top_srcdir)/m4/ax_cflags_warn_all.m4 \
|
104
|
+
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
105
|
+
$(top_srcdir)/m4/ax_compiler_vendor.m4 \
|
106
|
+
$(top_srcdir)/m4/ax_configure_args.m4 \
|
107
|
+
$(top_srcdir)/m4/ax_enable_builddir.m4 \
|
108
|
+
$(top_srcdir)/m4/ax_gcc_archflag.m4 \
|
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 \
|
112
|
+
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
113
|
+
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
114
|
+
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
115
|
+
$(top_srcdir)/configure.ac
|
116
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
117
|
+
$(ACLOCAL_M4)
|
118
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
119
|
+
$(am__configure_deps) $(noinst_HEADERS) $(am__DIST_COMMON)
|
120
|
+
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
121
|
+
configure.lineno config.status.lineno
|
122
|
+
mkinstalldirs = $(install_sh) -d
|
123
|
+
CONFIG_HEADER = fficonfig.h
|
124
|
+
CONFIG_CLEAN_FILES = libffi.pc
|
125
|
+
CONFIG_CLEAN_VPATH_FILES =
|
126
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
127
|
+
am__vpath_adj = case $$p in \
|
128
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
129
|
+
*) f=$$p;; \
|
130
|
+
esac;
|
131
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
132
|
+
am__install_max = 40
|
133
|
+
am__nobase_strip_setup = \
|
134
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
135
|
+
am__nobase_strip = \
|
136
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
137
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
138
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
139
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
140
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
141
|
+
if (++n[$$2] == $(am__install_max)) \
|
142
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
143
|
+
END { for (dir in files) print dir, files[dir] }'
|
144
|
+
am__base_list = \
|
145
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
146
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
147
|
+
am__uninstall_files_from_dir = { \
|
148
|
+
test -z "$$files" \
|
149
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
150
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
151
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
152
|
+
}
|
153
|
+
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" \
|
154
|
+
"$(DESTDIR)$(pkgconfigdir)"
|
155
|
+
LTLIBRARIES = $(noinst_LTLIBRARIES) $(toolexeclib_LTLIBRARIES)
|
156
|
+
am__DEPENDENCIES_1 =
|
157
|
+
am__libffi_la_SOURCES_DIST = src/prep_cif.c src/types.c src/raw_api.c \
|
158
|
+
src/java_raw_api.c src/closures.c src/tramp.c src/debug.c
|
159
|
+
am__dirstamp = $(am__leading_dot)dirstamp
|
160
|
+
@FFI_DEBUG_TRUE@am__objects_1 = src/debug.lo
|
161
|
+
am_libffi_la_OBJECTS = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
162
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
163
|
+
$(am__objects_1)
|
164
|
+
libffi_la_OBJECTS = $(am_libffi_la_OBJECTS)
|
165
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
166
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
167
|
+
am__v_lt_0 = --silent
|
168
|
+
am__v_lt_1 =
|
169
|
+
libffi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
170
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
171
|
+
$(libffi_la_LDFLAGS) $(LDFLAGS) -o $@
|
172
|
+
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
|
173
|
+
am__libffi_convenience_la_SOURCES_DIST = src/prep_cif.c src/types.c \
|
174
|
+
src/raw_api.c src/java_raw_api.c src/closures.c src/tramp.c \
|
175
|
+
src/debug.c
|
176
|
+
am__objects_2 = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
177
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
178
|
+
$(am__objects_1)
|
179
|
+
am_libffi_convenience_la_OBJECTS = $(am__objects_2)
|
180
|
+
nodist_libffi_convenience_la_OBJECTS =
|
181
|
+
libffi_convenience_la_OBJECTS = $(am_libffi_convenience_la_OBJECTS) \
|
182
|
+
$(nodist_libffi_convenience_la_OBJECTS)
|
183
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
184
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
185
|
+
am__v_P_0 = false
|
186
|
+
am__v_P_1 = :
|
187
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
188
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
189
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
190
|
+
am__v_GEN_1 =
|
191
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
192
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
193
|
+
am__v_at_0 = @
|
194
|
+
am__v_at_1 =
|
195
|
+
DEFAULT_INCLUDES = -I.@am__isrc@
|
196
|
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
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
|
253
|
+
am__mv = mv -f
|
254
|
+
CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
255
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
256
|
+
LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
257
|
+
$(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \
|
258
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
259
|
+
$(AM_CCASFLAGS) $(CCASFLAGS)
|
260
|
+
AM_V_CPPAS = $(am__v_CPPAS_@AM_V@)
|
261
|
+
am__v_CPPAS_ = $(am__v_CPPAS_@AM_DEFAULT_V@)
|
262
|
+
am__v_CPPAS_0 = @echo " CPPAS " $@;
|
263
|
+
am__v_CPPAS_1 =
|
264
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
265
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
266
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
267
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
268
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
269
|
+
$(AM_CFLAGS) $(CFLAGS)
|
270
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
271
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
272
|
+
am__v_CC_0 = @echo " CC " $@;
|
273
|
+
am__v_CC_1 =
|
274
|
+
CCLD = $(CC)
|
275
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
276
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
277
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
278
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
279
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
280
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
281
|
+
am__v_CCLD_1 =
|
282
|
+
SOURCES = $(libffi_la_SOURCES) $(EXTRA_libffi_la_SOURCES) \
|
283
|
+
$(libffi_convenience_la_SOURCES) \
|
284
|
+
$(EXTRA_libffi_convenience_la_SOURCES) \
|
285
|
+
$(nodist_libffi_convenience_la_SOURCES)
|
286
|
+
DIST_SOURCES = $(am__libffi_la_SOURCES_DIST) \
|
287
|
+
$(EXTRA_libffi_la_SOURCES) \
|
288
|
+
$(am__libffi_convenience_la_SOURCES_DIST) \
|
289
|
+
$(EXTRA_libffi_convenience_la_SOURCES)
|
290
|
+
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
291
|
+
ctags-recursive dvi-recursive html-recursive info-recursive \
|
292
|
+
install-data-recursive install-dvi-recursive \
|
293
|
+
install-exec-recursive install-html-recursive \
|
294
|
+
install-info-recursive install-pdf-recursive \
|
295
|
+
install-ps-recursive install-recursive installcheck-recursive \
|
296
|
+
installdirs-recursive pdf-recursive ps-recursive \
|
297
|
+
tags-recursive uninstall-recursive
|
298
|
+
am__can_run_installinfo = \
|
299
|
+
case $$AM_UPDATE_INFO_DIR in \
|
300
|
+
n|no|NO) false;; \
|
301
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
302
|
+
esac
|
303
|
+
DATA = $(pkgconfig_DATA)
|
304
|
+
HEADERS = $(noinst_HEADERS)
|
305
|
+
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
306
|
+
distclean-recursive maintainer-clean-recursive
|
307
|
+
am__recursive_targets = \
|
308
|
+
$(RECURSIVE_TARGETS) \
|
309
|
+
$(RECURSIVE_CLEAN_TARGETS) \
|
310
|
+
$(am__extra_recursive_targets)
|
311
|
+
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
312
|
+
cscope distdir distdir-am dist dist-all distcheck
|
313
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
|
314
|
+
fficonfig.h.in
|
315
|
+
# Read a list of newline-separated strings from the standard input,
|
316
|
+
# and print each of them once, without duplicates. Input order is
|
317
|
+
# *not* preserved.
|
318
|
+
am__uniquify_input = $(AWK) '\
|
319
|
+
BEGIN { nonempty = 0; } \
|
320
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
321
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
322
|
+
'
|
323
|
+
# Make sure the list of sources is unique. This is necessary because,
|
324
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
325
|
+
# for different programs/libraries.
|
326
|
+
am__define_uniq_tagged_files = \
|
327
|
+
list='$(am__tagged_files)'; \
|
328
|
+
unique=`for i in $$list; do \
|
329
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
330
|
+
done | $(am__uniquify_input)`
|
331
|
+
DIST_SUBDIRS = include testsuite man doc
|
332
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/fficonfig.h.in \
|
333
|
+
$(srcdir)/libffi.pc.in README.md compile config.guess \
|
334
|
+
config.sub depcomp install-sh ltmain.sh missing
|
335
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
336
|
+
distdir = $(PACKAGE)-$(VERSION)
|
337
|
+
top_distdir = $(distdir)
|
338
|
+
am__remove_distdir = \
|
339
|
+
if test -d "$(distdir)"; then \
|
340
|
+
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
341
|
+
&& rm -rf "$(distdir)" \
|
342
|
+
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
343
|
+
else :; fi
|
344
|
+
am__post_remove_distdir = $(am__remove_distdir)
|
345
|
+
am__relativize = \
|
346
|
+
dir0=`pwd`; \
|
347
|
+
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
348
|
+
sed_rest='s,^[^/]*/*,,'; \
|
349
|
+
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
350
|
+
sed_butlast='s,/*[^/]*$$,,'; \
|
351
|
+
while test -n "$$dir1"; do \
|
352
|
+
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
353
|
+
if test "$$first" != "."; then \
|
354
|
+
if test "$$first" = ".."; then \
|
355
|
+
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
356
|
+
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
357
|
+
else \
|
358
|
+
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
359
|
+
if test "$$first2" = "$$first"; then \
|
360
|
+
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
361
|
+
else \
|
362
|
+
dir2="../$$dir2"; \
|
363
|
+
fi; \
|
364
|
+
dir0="$$dir0"/"$$first"; \
|
365
|
+
fi; \
|
366
|
+
fi; \
|
367
|
+
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
368
|
+
done; \
|
369
|
+
reldir="$$dir2"
|
370
|
+
DIST_ARCHIVES = $(distdir).tar.gz
|
371
|
+
GZIP_ENV = --best
|
372
|
+
DIST_TARGETS = dist-gzip
|
373
|
+
# Exists only to be overridden by the user if desired.
|
374
|
+
AM_DISTCHECK_DVI_TARGET = dvi
|
375
|
+
distuninstallcheck_listfiles = find . -type f -print
|
376
|
+
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
377
|
+
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
378
|
+
distcleancheck_listfiles = find . -type f -print
|
379
|
+
ACLOCAL = @ACLOCAL@
|
380
|
+
AMTAR = @AMTAR@
|
381
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
382
|
+
AM_LTLDFLAGS = @AM_LTLDFLAGS@
|
383
|
+
AM_RUNTESTFLAGS = @AM_RUNTESTFLAGS@
|
384
|
+
AR = @AR@
|
385
|
+
AUTOCONF = @AUTOCONF@
|
386
|
+
AUTOHEADER = @AUTOHEADER@
|
387
|
+
AUTOMAKE = @AUTOMAKE@
|
388
|
+
AWK = @AWK@
|
389
|
+
CC = @CC@
|
390
|
+
CCAS = @CCAS@
|
391
|
+
CCASDEPMODE = @CCASDEPMODE@
|
392
|
+
CCASFLAGS = @CCASFLAGS@
|
393
|
+
CCDEPMODE = @CCDEPMODE@
|
394
|
+
CFLAGS = @CFLAGS@
|
395
|
+
CPPFLAGS = @CPPFLAGS@
|
396
|
+
CSCOPE = @CSCOPE@
|
397
|
+
CTAGS = @CTAGS@
|
398
|
+
CXX = @CXX@
|
399
|
+
CXXCPP = @CXXCPP@
|
400
|
+
CXXDEPMODE = @CXXDEPMODE@
|
401
|
+
CXXFLAGS = @CXXFLAGS@
|
402
|
+
CYGPATH_W = @CYGPATH_W@
|
403
|
+
DEFS = @DEFS@
|
404
|
+
DEPDIR = @DEPDIR@
|
405
|
+
DLLTOOL = @DLLTOOL@
|
406
|
+
DSYMUTIL = @DSYMUTIL@
|
407
|
+
DUMPBIN = @DUMPBIN@
|
408
|
+
ECHO_C = @ECHO_C@
|
409
|
+
ECHO_N = @ECHO_N@
|
410
|
+
ECHO_T = @ECHO_T@
|
411
|
+
EGREP = @EGREP@
|
412
|
+
ETAGS = @ETAGS@
|
413
|
+
EXEEXT = @EXEEXT@
|
414
|
+
FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
|
415
|
+
FGREP = @FGREP@
|
416
|
+
FILECMD = @FILECMD@
|
417
|
+
GREP = @GREP@
|
418
|
+
HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
|
419
|
+
HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
|
420
|
+
INSTALL = @INSTALL@
|
421
|
+
INSTALL_DATA = @INSTALL_DATA@
|
422
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
423
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
424
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
425
|
+
LD = @LD@
|
426
|
+
LDFLAGS = @LDFLAGS@
|
427
|
+
LIBOBJS = @LIBOBJS@
|
428
|
+
LIBS = @LIBS@
|
429
|
+
LIBTOOL = @LIBTOOL@
|
430
|
+
LIPO = @LIPO@
|
431
|
+
LN_S = @LN_S@
|
432
|
+
LTLIBOBJS = @LTLIBOBJS@
|
433
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
434
|
+
MAINT = @MAINT@
|
435
|
+
MAKEINFO = @MAKEINFO@
|
436
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
437
|
+
MKDIR_P = @MKDIR_P@
|
438
|
+
NM = @NM@
|
439
|
+
NMEDIT = @NMEDIT@
|
440
|
+
OBJDUMP = @OBJDUMP@
|
441
|
+
OBJEXT = @OBJEXT@
|
442
|
+
OPT_LDFLAGS = @OPT_LDFLAGS@
|
443
|
+
OTOOL = @OTOOL@
|
444
|
+
OTOOL64 = @OTOOL64@
|
445
|
+
PACKAGE = @PACKAGE@
|
446
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
447
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
448
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
449
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
450
|
+
PACKAGE_URL = @PACKAGE_URL@
|
451
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
452
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
453
|
+
PRTDIAG = @PRTDIAG@
|
454
|
+
RANLIB = @RANLIB@
|
455
|
+
READELF = @READELF@
|
456
|
+
SECTION_LDFLAGS = @SECTION_LDFLAGS@
|
457
|
+
SED = @SED@
|
458
|
+
SET_MAKE = @SET_MAKE@
|
459
|
+
SHELL = @SHELL@
|
460
|
+
STRIP = @STRIP@
|
461
|
+
TARGET = @TARGET@
|
462
|
+
TARGETDIR = @TARGETDIR@
|
463
|
+
TARGET_OBJ = @TARGET_OBJ@
|
464
|
+
VERSION = @VERSION@
|
465
|
+
abs_builddir = @abs_builddir@
|
466
|
+
abs_srcdir = @abs_srcdir@
|
467
|
+
abs_top_builddir = @abs_top_builddir@
|
468
|
+
abs_top_srcdir = @abs_top_srcdir@
|
469
|
+
ac_ct_AR = @ac_ct_AR@
|
470
|
+
ac_ct_CC = @ac_ct_CC@
|
471
|
+
ac_ct_CXX = @ac_ct_CXX@
|
472
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
473
|
+
am__include = @am__include@
|
474
|
+
am__leading_dot = @am__leading_dot@
|
475
|
+
am__quote = @am__quote@
|
476
|
+
am__tar = @am__tar@
|
477
|
+
am__untar = @am__untar@
|
478
|
+
ax_enable_builddir_sed = @ax_enable_builddir_sed@
|
479
|
+
bindir = @bindir@
|
480
|
+
build = @build@
|
481
|
+
build_alias = @build_alias@
|
482
|
+
build_cpu = @build_cpu@
|
483
|
+
build_os = @build_os@
|
484
|
+
build_vendor = @build_vendor@
|
485
|
+
builddir = @builddir@
|
486
|
+
datadir = @datadir@
|
487
|
+
datarootdir = @datarootdir@
|
488
|
+
docdir = @docdir@
|
489
|
+
dvidir = @dvidir@
|
490
|
+
exec_prefix = @exec_prefix@
|
491
|
+
host = @host@
|
492
|
+
host_alias = @host_alias@
|
493
|
+
host_cpu = @host_cpu@
|
494
|
+
host_os = @host_os@
|
495
|
+
host_vendor = @host_vendor@
|
496
|
+
htmldir = @htmldir@
|
497
|
+
includedir = @includedir@
|
498
|
+
infodir = @infodir@
|
499
|
+
install_sh = @install_sh@
|
500
|
+
libdir = @libdir@
|
501
|
+
libexecdir = @libexecdir@
|
502
|
+
localedir = @localedir@
|
503
|
+
localstatedir = @localstatedir@
|
504
|
+
mandir = @mandir@
|
505
|
+
mkdir_p = @mkdir_p@
|
506
|
+
oldincludedir = @oldincludedir@
|
507
|
+
pdfdir = @pdfdir@
|
508
|
+
prefix = @prefix@
|
509
|
+
program_transform_name = @program_transform_name@
|
510
|
+
psdir = @psdir@
|
511
|
+
runstatedir = @runstatedir@
|
512
|
+
sbindir = @sbindir@
|
513
|
+
sharedstatedir = @sharedstatedir@
|
514
|
+
srcdir = @srcdir@
|
515
|
+
sys_symbol_underscore = @sys_symbol_underscore@
|
516
|
+
sysconfdir = @sysconfdir@
|
517
|
+
target = @target@
|
518
|
+
target_alias = @target_alias@
|
519
|
+
target_cpu = @target_cpu@
|
520
|
+
target_os = @target_os@
|
521
|
+
target_vendor = @target_vendor@
|
522
|
+
tmake_file = @tmake_file@
|
523
|
+
toolexecdir = @toolexecdir@
|
524
|
+
toolexeclibdir = @toolexeclibdir@
|
525
|
+
top_build_prefix = @top_build_prefix@
|
526
|
+
top_builddir = @top_builddir@
|
527
|
+
top_srcdir = @top_srcdir@
|
528
|
+
AUTOMAKE_OPTIONS = foreign subdir-objects
|
529
|
+
ACLOCAL_AMFLAGS = -I m4
|
530
|
+
SUBDIRS = include testsuite man $(am__append_1)
|
531
|
+
EXTRA_DIST = LICENSE ChangeLog.old \
|
532
|
+
m4/libtool.m4 m4/lt~obsolete.m4 \
|
533
|
+
m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 \
|
534
|
+
m4/ltversion.m4 src/debug.c msvcc.sh \
|
535
|
+
generate-darwin-source-and-headers.py \
|
536
|
+
libffi.xcodeproj/project.pbxproj \
|
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
|
540
|
+
|
541
|
+
|
542
|
+
# local.exp is generated by configure
|
543
|
+
DISTCLEANFILES = local.exp
|
544
|
+
|
545
|
+
# Subdir rules rely on $(FLAGS_TO_PASS)
|
546
|
+
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
547
|
+
MAKEOVERRIDES =
|
548
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
549
|
+
pkgconfig_DATA = libffi.pc
|
550
|
+
toolexeclib_LTLIBRARIES = libffi.la
|
551
|
+
noinst_LTLIBRARIES = libffi_convenience.la
|
552
|
+
libffi_la_SOURCES = src/prep_cif.c src/types.c src/raw_api.c \
|
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 \
|
555
|
+
src/alpha/ffitarget.h src/alpha/internal.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 \
|
559
|
+
src/ia64/ffitarget.h src/ia64/ia64_flags.h \
|
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
|
606
|
+
|
607
|
+
libffi_la_LIBADD = $(TARGET_OBJ)
|
608
|
+
libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
|
609
|
+
EXTRA_libffi_convenience_la_SOURCES = $(EXTRA_libffi_la_SOURCES)
|
610
|
+
libffi_convenience_la_LIBADD = $(libffi_la_LIBADD)
|
611
|
+
libffi_convenience_la_DEPENDENCIES = $(libffi_la_DEPENDENCIES)
|
612
|
+
nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)
|
613
|
+
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/libtool-ldflags $(LDFLAGS))
|
614
|
+
AM_CFLAGS = $(am__append_3)
|
615
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_FALSE@libffi_version_script =
|
616
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_script = -Wl,--version-script,libffi.map
|
617
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_script = -Wl,-M,libffi.map-sun
|
618
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_FALSE@libffi_version_dep =
|
619
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_dep = libffi.map
|
620
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_dep = libffi.map-sun
|
621
|
+
libffi_version_info = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
|
622
|
+
libffi_la_LDFLAGS = -no-undefined $(libffi_version_info) $(libffi_version_script) $(LTLDFLAGS) $(AM_LTLDFLAGS)
|
623
|
+
libffi_la_DEPENDENCIES = $(libffi_la_LIBADD) $(libffi_version_dep)
|
624
|
+
AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
|
625
|
+
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
626
|
+
all: fficonfig.h
|
627
|
+
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
628
|
+
|
629
|
+
.SUFFIXES:
|
630
|
+
.SUFFIXES: .S .c .lo .o .obj
|
631
|
+
am--refresh: Makefile
|
632
|
+
@:
|
633
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
634
|
+
@for dep in $?; do \
|
635
|
+
case '$(am__configure_deps)' in \
|
636
|
+
*$$dep*) \
|
637
|
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
638
|
+
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
639
|
+
&& exit 0; \
|
640
|
+
exit 1;; \
|
641
|
+
esac; \
|
642
|
+
done; \
|
643
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
644
|
+
$(am__cd) $(top_srcdir) && \
|
645
|
+
$(AUTOMAKE) --foreign Makefile
|
646
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
647
|
+
@case '$?' in \
|
648
|
+
*config.status*) \
|
649
|
+
echo ' $(SHELL) ./config.status'; \
|
650
|
+
$(SHELL) ./config.status;; \
|
651
|
+
*) \
|
652
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
653
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
654
|
+
esac;
|
655
|
+
|
656
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
657
|
+
$(SHELL) ./config.status --recheck
|
658
|
+
|
659
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
660
|
+
$(am__cd) $(srcdir) && $(AUTOCONF)
|
661
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
662
|
+
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
663
|
+
$(am__aclocal_m4_deps):
|
664
|
+
|
665
|
+
fficonfig.h: stamp-h1
|
666
|
+
@test -f $@ || rm -f stamp-h1
|
667
|
+
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
668
|
+
|
669
|
+
stamp-h1: $(srcdir)/fficonfig.h.in $(top_builddir)/config.status
|
670
|
+
@rm -f stamp-h1
|
671
|
+
cd $(top_builddir) && $(SHELL) ./config.status fficonfig.h
|
672
|
+
$(srcdir)/fficonfig.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
673
|
+
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
674
|
+
rm -f stamp-h1
|
675
|
+
touch $@
|
676
|
+
|
677
|
+
distclean-hdr:
|
678
|
+
-rm -f fficonfig.h stamp-h1
|
679
|
+
libffi.pc: $(top_builddir)/config.status $(srcdir)/libffi.pc.in
|
680
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@
|
681
|
+
|
682
|
+
clean-noinstLTLIBRARIES:
|
683
|
+
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
684
|
+
@list='$(noinst_LTLIBRARIES)'; \
|
685
|
+
locs=`for p in $$list; do echo $$p; done | \
|
686
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
687
|
+
sort -u`; \
|
688
|
+
test -z "$$locs" || { \
|
689
|
+
echo rm -f $${locs}; \
|
690
|
+
rm -f $${locs}; \
|
691
|
+
}
|
692
|
+
|
693
|
+
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
|
694
|
+
@$(NORMAL_INSTALL)
|
695
|
+
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
|
696
|
+
list2=; for p in $$list; do \
|
697
|
+
if test -f $$p; then \
|
698
|
+
list2="$$list2 $$p"; \
|
699
|
+
else :; fi; \
|
700
|
+
done; \
|
701
|
+
test -z "$$list2" || { \
|
702
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
|
703
|
+
$(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
|
704
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
|
705
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
|
706
|
+
}
|
707
|
+
|
708
|
+
uninstall-toolexeclibLTLIBRARIES:
|
709
|
+
@$(NORMAL_UNINSTALL)
|
710
|
+
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
|
711
|
+
for p in $$list; do \
|
712
|
+
$(am__strip_dir) \
|
713
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
|
714
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
|
715
|
+
done
|
716
|
+
|
717
|
+
clean-toolexeclibLTLIBRARIES:
|
718
|
+
-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
|
719
|
+
@list='$(toolexeclib_LTLIBRARIES)'; \
|
720
|
+
locs=`for p in $$list; do echo $$p; done | \
|
721
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
722
|
+
sort -u`; \
|
723
|
+
test -z "$$locs" || { \
|
724
|
+
echo rm -f $${locs}; \
|
725
|
+
rm -f $${locs}; \
|
726
|
+
}
|
727
|
+
src/$(am__dirstamp):
|
728
|
+
@$(MKDIR_P) src
|
729
|
+
@: > src/$(am__dirstamp)
|
730
|
+
src/$(DEPDIR)/$(am__dirstamp):
|
731
|
+
@$(MKDIR_P) src/$(DEPDIR)
|
732
|
+
@: > src/$(DEPDIR)/$(am__dirstamp)
|
733
|
+
src/prep_cif.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
734
|
+
src/types.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
735
|
+
src/raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
736
|
+
src/java_raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
737
|
+
src/closures.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
738
|
+
src/tramp.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
739
|
+
src/debug.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
740
|
+
src/aarch64/$(am__dirstamp):
|
741
|
+
@$(MKDIR_P) src/aarch64
|
742
|
+
@: > src/aarch64/$(am__dirstamp)
|
743
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp):
|
744
|
+
@$(MKDIR_P) src/aarch64/$(DEPDIR)
|
745
|
+
@: > src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
746
|
+
src/aarch64/ffi.lo: src/aarch64/$(am__dirstamp) \
|
747
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
748
|
+
src/aarch64/sysv.lo: src/aarch64/$(am__dirstamp) \
|
749
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
750
|
+
src/aarch64/win64_armasm.lo: src/aarch64/$(am__dirstamp) \
|
751
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
752
|
+
src/alpha/$(am__dirstamp):
|
753
|
+
@$(MKDIR_P) src/alpha
|
754
|
+
@: > src/alpha/$(am__dirstamp)
|
755
|
+
src/alpha/$(DEPDIR)/$(am__dirstamp):
|
756
|
+
@$(MKDIR_P) src/alpha/$(DEPDIR)
|
757
|
+
@: > src/alpha/$(DEPDIR)/$(am__dirstamp)
|
758
|
+
src/alpha/ffi.lo: src/alpha/$(am__dirstamp) \
|
759
|
+
src/alpha/$(DEPDIR)/$(am__dirstamp)
|
760
|
+
src/alpha/osf.lo: src/alpha/$(am__dirstamp) \
|
761
|
+
src/alpha/$(DEPDIR)/$(am__dirstamp)
|
762
|
+
src/arc/$(am__dirstamp):
|
763
|
+
@$(MKDIR_P) src/arc
|
764
|
+
@: > src/arc/$(am__dirstamp)
|
765
|
+
src/arc/$(DEPDIR)/$(am__dirstamp):
|
766
|
+
@$(MKDIR_P) src/arc/$(DEPDIR)
|
767
|
+
@: > src/arc/$(DEPDIR)/$(am__dirstamp)
|
768
|
+
src/arc/ffi.lo: src/arc/$(am__dirstamp) \
|
769
|
+
src/arc/$(DEPDIR)/$(am__dirstamp)
|
770
|
+
src/arc/arcompact.lo: src/arc/$(am__dirstamp) \
|
771
|
+
src/arc/$(DEPDIR)/$(am__dirstamp)
|
772
|
+
src/arm/$(am__dirstamp):
|
773
|
+
@$(MKDIR_P) src/arm
|
774
|
+
@: > src/arm/$(am__dirstamp)
|
775
|
+
src/arm/$(DEPDIR)/$(am__dirstamp):
|
776
|
+
@$(MKDIR_P) src/arm/$(DEPDIR)
|
777
|
+
@: > src/arm/$(DEPDIR)/$(am__dirstamp)
|
778
|
+
src/arm/ffi.lo: src/arm/$(am__dirstamp) \
|
779
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
780
|
+
src/arm/sysv.lo: src/arm/$(am__dirstamp) \
|
781
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
782
|
+
src/arm/sysv_msvc_arm32.lo: src/arm/$(am__dirstamp) \
|
783
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
784
|
+
src/avr32/$(am__dirstamp):
|
785
|
+
@$(MKDIR_P) src/avr32
|
786
|
+
@: > src/avr32/$(am__dirstamp)
|
787
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp):
|
788
|
+
@$(MKDIR_P) src/avr32/$(DEPDIR)
|
789
|
+
@: > src/avr32/$(DEPDIR)/$(am__dirstamp)
|
790
|
+
src/avr32/ffi.lo: src/avr32/$(am__dirstamp) \
|
791
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
792
|
+
src/avr32/sysv.lo: src/avr32/$(am__dirstamp) \
|
793
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
794
|
+
src/bfin/$(am__dirstamp):
|
795
|
+
@$(MKDIR_P) src/bfin
|
796
|
+
@: > src/bfin/$(am__dirstamp)
|
797
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp):
|
798
|
+
@$(MKDIR_P) src/bfin/$(DEPDIR)
|
799
|
+
@: > src/bfin/$(DEPDIR)/$(am__dirstamp)
|
800
|
+
src/bfin/ffi.lo: src/bfin/$(am__dirstamp) \
|
801
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp)
|
802
|
+
src/bfin/sysv.lo: src/bfin/$(am__dirstamp) \
|
803
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp)
|
804
|
+
src/cris/$(am__dirstamp):
|
805
|
+
@$(MKDIR_P) src/cris
|
806
|
+
@: > src/cris/$(am__dirstamp)
|
807
|
+
src/cris/$(DEPDIR)/$(am__dirstamp):
|
808
|
+
@$(MKDIR_P) src/cris/$(DEPDIR)
|
809
|
+
@: > src/cris/$(DEPDIR)/$(am__dirstamp)
|
810
|
+
src/cris/ffi.lo: src/cris/$(am__dirstamp) \
|
811
|
+
src/cris/$(DEPDIR)/$(am__dirstamp)
|
812
|
+
src/cris/sysv.lo: src/cris/$(am__dirstamp) \
|
813
|
+
src/cris/$(DEPDIR)/$(am__dirstamp)
|
814
|
+
src/frv/$(am__dirstamp):
|
815
|
+
@$(MKDIR_P) src/frv
|
816
|
+
@: > src/frv/$(am__dirstamp)
|
817
|
+
src/frv/$(DEPDIR)/$(am__dirstamp):
|
818
|
+
@$(MKDIR_P) src/frv/$(DEPDIR)
|
819
|
+
@: > src/frv/$(DEPDIR)/$(am__dirstamp)
|
820
|
+
src/frv/ffi.lo: src/frv/$(am__dirstamp) \
|
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)
|
832
|
+
src/frv/eabi.lo: src/frv/$(am__dirstamp) \
|
833
|
+
src/frv/$(DEPDIR)/$(am__dirstamp)
|
834
|
+
src/ia64/$(am__dirstamp):
|
835
|
+
@$(MKDIR_P) src/ia64
|
836
|
+
@: > src/ia64/$(am__dirstamp)
|
837
|
+
src/ia64/$(DEPDIR)/$(am__dirstamp):
|
838
|
+
@$(MKDIR_P) src/ia64/$(DEPDIR)
|
839
|
+
@: > src/ia64/$(DEPDIR)/$(am__dirstamp)
|
840
|
+
src/ia64/ffi.lo: src/ia64/$(am__dirstamp) \
|
841
|
+
src/ia64/$(DEPDIR)/$(am__dirstamp)
|
842
|
+
src/ia64/unix.lo: src/ia64/$(am__dirstamp) \
|
843
|
+
src/ia64/$(DEPDIR)/$(am__dirstamp)
|
844
|
+
src/m32r/$(am__dirstamp):
|
845
|
+
@$(MKDIR_P) src/m32r
|
846
|
+
@: > src/m32r/$(am__dirstamp)
|
847
|
+
src/m32r/$(DEPDIR)/$(am__dirstamp):
|
848
|
+
@$(MKDIR_P) src/m32r/$(DEPDIR)
|
849
|
+
@: > src/m32r/$(DEPDIR)/$(am__dirstamp)
|
850
|
+
src/m32r/ffi.lo: src/m32r/$(am__dirstamp) \
|
851
|
+
src/m32r/$(DEPDIR)/$(am__dirstamp)
|
852
|
+
src/m32r/sysv.lo: src/m32r/$(am__dirstamp) \
|
853
|
+
src/m32r/$(DEPDIR)/$(am__dirstamp)
|
854
|
+
src/m68k/$(am__dirstamp):
|
855
|
+
@$(MKDIR_P) src/m68k
|
856
|
+
@: > src/m68k/$(am__dirstamp)
|
857
|
+
src/m68k/$(DEPDIR)/$(am__dirstamp):
|
858
|
+
@$(MKDIR_P) src/m68k/$(DEPDIR)
|
859
|
+
@: > src/m68k/$(DEPDIR)/$(am__dirstamp)
|
860
|
+
src/m68k/ffi.lo: src/m68k/$(am__dirstamp) \
|
861
|
+
src/m68k/$(DEPDIR)/$(am__dirstamp)
|
862
|
+
src/m68k/sysv.lo: src/m68k/$(am__dirstamp) \
|
863
|
+
src/m68k/$(DEPDIR)/$(am__dirstamp)
|
864
|
+
src/m88k/$(am__dirstamp):
|
865
|
+
@$(MKDIR_P) src/m88k
|
866
|
+
@: > src/m88k/$(am__dirstamp)
|
867
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp):
|
868
|
+
@$(MKDIR_P) src/m88k/$(DEPDIR)
|
869
|
+
@: > src/m88k/$(DEPDIR)/$(am__dirstamp)
|
870
|
+
src/m88k/ffi.lo: src/m88k/$(am__dirstamp) \
|
871
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp)
|
872
|
+
src/m88k/obsd.lo: src/m88k/$(am__dirstamp) \
|
873
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp)
|
874
|
+
src/metag/$(am__dirstamp):
|
875
|
+
@$(MKDIR_P) src/metag
|
876
|
+
@: > src/metag/$(am__dirstamp)
|
877
|
+
src/metag/$(DEPDIR)/$(am__dirstamp):
|
878
|
+
@$(MKDIR_P) src/metag/$(DEPDIR)
|
879
|
+
@: > src/metag/$(DEPDIR)/$(am__dirstamp)
|
880
|
+
src/metag/ffi.lo: src/metag/$(am__dirstamp) \
|
881
|
+
src/metag/$(DEPDIR)/$(am__dirstamp)
|
882
|
+
src/metag/sysv.lo: src/metag/$(am__dirstamp) \
|
883
|
+
src/metag/$(DEPDIR)/$(am__dirstamp)
|
884
|
+
src/microblaze/$(am__dirstamp):
|
885
|
+
@$(MKDIR_P) src/microblaze
|
886
|
+
@: > src/microblaze/$(am__dirstamp)
|
887
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp):
|
888
|
+
@$(MKDIR_P) src/microblaze/$(DEPDIR)
|
889
|
+
@: > src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
890
|
+
src/microblaze/ffi.lo: src/microblaze/$(am__dirstamp) \
|
891
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
892
|
+
src/microblaze/sysv.lo: src/microblaze/$(am__dirstamp) \
|
893
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
894
|
+
src/mips/$(am__dirstamp):
|
895
|
+
@$(MKDIR_P) src/mips
|
896
|
+
@: > src/mips/$(am__dirstamp)
|
897
|
+
src/mips/$(DEPDIR)/$(am__dirstamp):
|
898
|
+
@$(MKDIR_P) src/mips/$(DEPDIR)
|
899
|
+
@: > src/mips/$(DEPDIR)/$(am__dirstamp)
|
900
|
+
src/mips/ffi.lo: src/mips/$(am__dirstamp) \
|
901
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
902
|
+
src/mips/o32.lo: src/mips/$(am__dirstamp) \
|
903
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
904
|
+
src/mips/n32.lo: src/mips/$(am__dirstamp) \
|
905
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
906
|
+
src/moxie/$(am__dirstamp):
|
907
|
+
@$(MKDIR_P) src/moxie
|
908
|
+
@: > src/moxie/$(am__dirstamp)
|
909
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp):
|
910
|
+
@$(MKDIR_P) src/moxie/$(DEPDIR)
|
911
|
+
@: > src/moxie/$(DEPDIR)/$(am__dirstamp)
|
912
|
+
src/moxie/ffi.lo: src/moxie/$(am__dirstamp) \
|
913
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp)
|
914
|
+
src/moxie/eabi.lo: src/moxie/$(am__dirstamp) \
|
915
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp)
|
916
|
+
src/nios2/$(am__dirstamp):
|
917
|
+
@$(MKDIR_P) src/nios2
|
918
|
+
@: > src/nios2/$(am__dirstamp)
|
919
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp):
|
920
|
+
@$(MKDIR_P) src/nios2/$(DEPDIR)
|
921
|
+
@: > src/nios2/$(DEPDIR)/$(am__dirstamp)
|
922
|
+
src/nios2/ffi.lo: src/nios2/$(am__dirstamp) \
|
923
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp)
|
924
|
+
src/nios2/sysv.lo: src/nios2/$(am__dirstamp) \
|
925
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp)
|
926
|
+
src/or1k/$(am__dirstamp):
|
927
|
+
@$(MKDIR_P) src/or1k
|
928
|
+
@: > src/or1k/$(am__dirstamp)
|
929
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp):
|
930
|
+
@$(MKDIR_P) src/or1k/$(DEPDIR)
|
931
|
+
@: > src/or1k/$(DEPDIR)/$(am__dirstamp)
|
932
|
+
src/or1k/ffi.lo: src/or1k/$(am__dirstamp) \
|
933
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp)
|
934
|
+
src/or1k/sysv.lo: src/or1k/$(am__dirstamp) \
|
935
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp)
|
936
|
+
src/pa/$(am__dirstamp):
|
937
|
+
@$(MKDIR_P) src/pa
|
938
|
+
@: > src/pa/$(am__dirstamp)
|
939
|
+
src/pa/$(DEPDIR)/$(am__dirstamp):
|
940
|
+
@$(MKDIR_P) src/pa/$(DEPDIR)
|
941
|
+
@: > src/pa/$(DEPDIR)/$(am__dirstamp)
|
942
|
+
src/pa/ffi.lo: src/pa/$(am__dirstamp) src/pa/$(DEPDIR)/$(am__dirstamp)
|
943
|
+
src/pa/linux.lo: src/pa/$(am__dirstamp) \
|
944
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
945
|
+
src/pa/hpux32.lo: src/pa/$(am__dirstamp) \
|
946
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
947
|
+
src/pa/hpux64.lo: src/pa/$(am__dirstamp) \
|
948
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
949
|
+
src/powerpc/$(am__dirstamp):
|
950
|
+
@$(MKDIR_P) src/powerpc
|
951
|
+
@: > src/powerpc/$(am__dirstamp)
|
952
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp):
|
953
|
+
@$(MKDIR_P) src/powerpc/$(DEPDIR)
|
954
|
+
@: > src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
955
|
+
src/powerpc/ffi.lo: src/powerpc/$(am__dirstamp) \
|
956
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
957
|
+
src/powerpc/ffi_sysv.lo: src/powerpc/$(am__dirstamp) \
|
958
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
959
|
+
src/powerpc/ffi_linux64.lo: src/powerpc/$(am__dirstamp) \
|
960
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
961
|
+
src/powerpc/sysv.lo: src/powerpc/$(am__dirstamp) \
|
962
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
963
|
+
src/powerpc/linux64.lo: src/powerpc/$(am__dirstamp) \
|
964
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
965
|
+
src/powerpc/linux64_closure.lo: src/powerpc/$(am__dirstamp) \
|
966
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
967
|
+
src/powerpc/ppc_closure.lo: src/powerpc/$(am__dirstamp) \
|
968
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
969
|
+
src/powerpc/aix.lo: src/powerpc/$(am__dirstamp) \
|
970
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
971
|
+
src/powerpc/darwin.lo: src/powerpc/$(am__dirstamp) \
|
972
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
973
|
+
src/powerpc/aix_closure.lo: src/powerpc/$(am__dirstamp) \
|
974
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
975
|
+
src/powerpc/darwin_closure.lo: src/powerpc/$(am__dirstamp) \
|
976
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
977
|
+
src/powerpc/ffi_darwin.lo: src/powerpc/$(am__dirstamp) \
|
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)
|
989
|
+
src/s390/$(am__dirstamp):
|
990
|
+
@$(MKDIR_P) src/s390
|
991
|
+
@: > src/s390/$(am__dirstamp)
|
992
|
+
src/s390/$(DEPDIR)/$(am__dirstamp):
|
993
|
+
@$(MKDIR_P) src/s390/$(DEPDIR)
|
994
|
+
@: > src/s390/$(DEPDIR)/$(am__dirstamp)
|
995
|
+
src/s390/ffi.lo: src/s390/$(am__dirstamp) \
|
996
|
+
src/s390/$(DEPDIR)/$(am__dirstamp)
|
997
|
+
src/s390/sysv.lo: src/s390/$(am__dirstamp) \
|
998
|
+
src/s390/$(DEPDIR)/$(am__dirstamp)
|
999
|
+
src/sh/$(am__dirstamp):
|
1000
|
+
@$(MKDIR_P) src/sh
|
1001
|
+
@: > src/sh/$(am__dirstamp)
|
1002
|
+
src/sh/$(DEPDIR)/$(am__dirstamp):
|
1003
|
+
@$(MKDIR_P) src/sh/$(DEPDIR)
|
1004
|
+
@: > src/sh/$(DEPDIR)/$(am__dirstamp)
|
1005
|
+
src/sh/ffi.lo: src/sh/$(am__dirstamp) src/sh/$(DEPDIR)/$(am__dirstamp)
|
1006
|
+
src/sh/sysv.lo: src/sh/$(am__dirstamp) \
|
1007
|
+
src/sh/$(DEPDIR)/$(am__dirstamp)
|
1008
|
+
src/sh64/$(am__dirstamp):
|
1009
|
+
@$(MKDIR_P) src/sh64
|
1010
|
+
@: > src/sh64/$(am__dirstamp)
|
1011
|
+
src/sh64/$(DEPDIR)/$(am__dirstamp):
|
1012
|
+
@$(MKDIR_P) src/sh64/$(DEPDIR)
|
1013
|
+
@: > src/sh64/$(DEPDIR)/$(am__dirstamp)
|
1014
|
+
src/sh64/ffi.lo: src/sh64/$(am__dirstamp) \
|
1015
|
+
src/sh64/$(DEPDIR)/$(am__dirstamp)
|
1016
|
+
src/sh64/sysv.lo: src/sh64/$(am__dirstamp) \
|
1017
|
+
src/sh64/$(DEPDIR)/$(am__dirstamp)
|
1018
|
+
src/sparc/$(am__dirstamp):
|
1019
|
+
@$(MKDIR_P) src/sparc
|
1020
|
+
@: > src/sparc/$(am__dirstamp)
|
1021
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp):
|
1022
|
+
@$(MKDIR_P) src/sparc/$(DEPDIR)
|
1023
|
+
@: > src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1024
|
+
src/sparc/ffi.lo: src/sparc/$(am__dirstamp) \
|
1025
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1026
|
+
src/sparc/ffi64.lo: src/sparc/$(am__dirstamp) \
|
1027
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1028
|
+
src/sparc/v8.lo: src/sparc/$(am__dirstamp) \
|
1029
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1030
|
+
src/sparc/v9.lo: src/sparc/$(am__dirstamp) \
|
1031
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1032
|
+
src/tile/$(am__dirstamp):
|
1033
|
+
@$(MKDIR_P) src/tile
|
1034
|
+
@: > src/tile/$(am__dirstamp)
|
1035
|
+
src/tile/$(DEPDIR)/$(am__dirstamp):
|
1036
|
+
@$(MKDIR_P) src/tile/$(DEPDIR)
|
1037
|
+
@: > src/tile/$(DEPDIR)/$(am__dirstamp)
|
1038
|
+
src/tile/ffi.lo: src/tile/$(am__dirstamp) \
|
1039
|
+
src/tile/$(DEPDIR)/$(am__dirstamp)
|
1040
|
+
src/tile/tile.lo: src/tile/$(am__dirstamp) \
|
1041
|
+
src/tile/$(DEPDIR)/$(am__dirstamp)
|
1042
|
+
src/vax/$(am__dirstamp):
|
1043
|
+
@$(MKDIR_P) src/vax
|
1044
|
+
@: > src/vax/$(am__dirstamp)
|
1045
|
+
src/vax/$(DEPDIR)/$(am__dirstamp):
|
1046
|
+
@$(MKDIR_P) src/vax/$(DEPDIR)
|
1047
|
+
@: > src/vax/$(DEPDIR)/$(am__dirstamp)
|
1048
|
+
src/vax/ffi.lo: src/vax/$(am__dirstamp) \
|
1049
|
+
src/vax/$(DEPDIR)/$(am__dirstamp)
|
1050
|
+
src/vax/elfbsd.lo: src/vax/$(am__dirstamp) \
|
1051
|
+
src/vax/$(DEPDIR)/$(am__dirstamp)
|
1052
|
+
src/x86/$(am__dirstamp):
|
1053
|
+
@$(MKDIR_P) src/x86
|
1054
|
+
@: > src/x86/$(am__dirstamp)
|
1055
|
+
src/x86/$(DEPDIR)/$(am__dirstamp):
|
1056
|
+
@$(MKDIR_P) src/x86/$(DEPDIR)
|
1057
|
+
@: > src/x86/$(DEPDIR)/$(am__dirstamp)
|
1058
|
+
src/x86/ffi.lo: src/x86/$(am__dirstamp) \
|
1059
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1060
|
+
src/x86/sysv.lo: src/x86/$(am__dirstamp) \
|
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)
|
1070
|
+
src/x86/ffiw64.lo: src/x86/$(am__dirstamp) \
|
1071
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1072
|
+
src/x86/win64.lo: src/x86/$(am__dirstamp) \
|
1073
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1074
|
+
src/x86/ffi64.lo: src/x86/$(am__dirstamp) \
|
1075
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1076
|
+
src/x86/unix64.lo: src/x86/$(am__dirstamp) \
|
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)
|
1082
|
+
src/xtensa/$(am__dirstamp):
|
1083
|
+
@$(MKDIR_P) src/xtensa
|
1084
|
+
@: > src/xtensa/$(am__dirstamp)
|
1085
|
+
src/xtensa/$(DEPDIR)/$(am__dirstamp):
|
1086
|
+
@$(MKDIR_P) src/xtensa/$(DEPDIR)
|
1087
|
+
@: > src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1088
|
+
src/xtensa/ffi.lo: src/xtensa/$(am__dirstamp) \
|
1089
|
+
src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1090
|
+
src/xtensa/sysv.lo: src/xtensa/$(am__dirstamp) \
|
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)
|
1112
|
+
|
1113
|
+
libffi.la: $(libffi_la_OBJECTS) $(libffi_la_DEPENDENCIES) $(EXTRA_libffi_la_DEPENDENCIES)
|
1114
|
+
$(AM_V_CCLD)$(libffi_la_LINK) -rpath $(toolexeclibdir) $(libffi_la_OBJECTS) $(libffi_la_LIBADD) $(LIBS)
|
1115
|
+
|
1116
|
+
libffi_convenience.la: $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_DEPENDENCIES) $(EXTRA_libffi_convenience_la_DEPENDENCIES)
|
1117
|
+
$(AM_V_CCLD)$(LINK) $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_LIBADD) $(LIBS)
|
1118
|
+
|
1119
|
+
mostlyclean-compile:
|
1120
|
+
-rm -f *.$(OBJEXT)
|
1121
|
+
-rm -f src/*.$(OBJEXT)
|
1122
|
+
-rm -f src/*.lo
|
1123
|
+
-rm -f src/aarch64/*.$(OBJEXT)
|
1124
|
+
-rm -f src/aarch64/*.lo
|
1125
|
+
-rm -f src/alpha/*.$(OBJEXT)
|
1126
|
+
-rm -f src/alpha/*.lo
|
1127
|
+
-rm -f src/arc/*.$(OBJEXT)
|
1128
|
+
-rm -f src/arc/*.lo
|
1129
|
+
-rm -f src/arm/*.$(OBJEXT)
|
1130
|
+
-rm -f src/arm/*.lo
|
1131
|
+
-rm -f src/avr32/*.$(OBJEXT)
|
1132
|
+
-rm -f src/avr32/*.lo
|
1133
|
+
-rm -f src/bfin/*.$(OBJEXT)
|
1134
|
+
-rm -f src/bfin/*.lo
|
1135
|
+
-rm -f src/cris/*.$(OBJEXT)
|
1136
|
+
-rm -f src/cris/*.lo
|
1137
|
+
-rm -f src/csky/*.$(OBJEXT)
|
1138
|
+
-rm -f src/csky/*.lo
|
1139
|
+
-rm -f src/frv/*.$(OBJEXT)
|
1140
|
+
-rm -f src/frv/*.lo
|
1141
|
+
-rm -f src/ia64/*.$(OBJEXT)
|
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
|
1147
|
+
-rm -f src/m32r/*.$(OBJEXT)
|
1148
|
+
-rm -f src/m32r/*.lo
|
1149
|
+
-rm -f src/m68k/*.$(OBJEXT)
|
1150
|
+
-rm -f src/m68k/*.lo
|
1151
|
+
-rm -f src/m88k/*.$(OBJEXT)
|
1152
|
+
-rm -f src/m88k/*.lo
|
1153
|
+
-rm -f src/metag/*.$(OBJEXT)
|
1154
|
+
-rm -f src/metag/*.lo
|
1155
|
+
-rm -f src/microblaze/*.$(OBJEXT)
|
1156
|
+
-rm -f src/microblaze/*.lo
|
1157
|
+
-rm -f src/mips/*.$(OBJEXT)
|
1158
|
+
-rm -f src/mips/*.lo
|
1159
|
+
-rm -f src/moxie/*.$(OBJEXT)
|
1160
|
+
-rm -f src/moxie/*.lo
|
1161
|
+
-rm -f src/nios2/*.$(OBJEXT)
|
1162
|
+
-rm -f src/nios2/*.lo
|
1163
|
+
-rm -f src/or1k/*.$(OBJEXT)
|
1164
|
+
-rm -f src/or1k/*.lo
|
1165
|
+
-rm -f src/pa/*.$(OBJEXT)
|
1166
|
+
-rm -f src/pa/*.lo
|
1167
|
+
-rm -f src/powerpc/*.$(OBJEXT)
|
1168
|
+
-rm -f src/powerpc/*.lo
|
1169
|
+
-rm -f src/riscv/*.$(OBJEXT)
|
1170
|
+
-rm -f src/riscv/*.lo
|
1171
|
+
-rm -f src/s390/*.$(OBJEXT)
|
1172
|
+
-rm -f src/s390/*.lo
|
1173
|
+
-rm -f src/sh/*.$(OBJEXT)
|
1174
|
+
-rm -f src/sh/*.lo
|
1175
|
+
-rm -f src/sh64/*.$(OBJEXT)
|
1176
|
+
-rm -f src/sh64/*.lo
|
1177
|
+
-rm -f src/sparc/*.$(OBJEXT)
|
1178
|
+
-rm -f src/sparc/*.lo
|
1179
|
+
-rm -f src/tile/*.$(OBJEXT)
|
1180
|
+
-rm -f src/tile/*.lo
|
1181
|
+
-rm -f src/vax/*.$(OBJEXT)
|
1182
|
+
-rm -f src/vax/*.lo
|
1183
|
+
-rm -f src/wasm32/*.$(OBJEXT)
|
1184
|
+
-rm -f src/wasm32/*.lo
|
1185
|
+
-rm -f src/x86/*.$(OBJEXT)
|
1186
|
+
-rm -f src/x86/*.lo
|
1187
|
+
-rm -f src/xtensa/*.$(OBJEXT)
|
1188
|
+
-rm -f src/xtensa/*.lo
|
1189
|
+
|
1190
|
+
distclean-compile:
|
1191
|
+
-rm -f *.tab.c
|
1192
|
+
|
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)
|
1294
|
+
|
1295
|
+
.S.o:
|
1296
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
1297
|
+
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1298
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1299
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1300
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1301
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $<
|
1302
|
+
|
1303
|
+
.S.obj:
|
1304
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1305
|
+
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
1306
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1307
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1308
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1309
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1310
|
+
|
1311
|
+
.S.lo:
|
1312
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1313
|
+
@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1314
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
1315
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1316
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1317
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $<
|
1318
|
+
|
1319
|
+
.c.o:
|
1320
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
1321
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1322
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1323
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1324
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1325
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
1326
|
+
|
1327
|
+
.c.obj:
|
1328
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1329
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
1330
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1331
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1332
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1333
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1334
|
+
|
1335
|
+
.c.lo:
|
1336
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1337
|
+
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1338
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
1339
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1340
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1341
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
1342
|
+
|
1343
|
+
mostlyclean-libtool:
|
1344
|
+
-rm -f *.lo
|
1345
|
+
|
1346
|
+
clean-libtool:
|
1347
|
+
-rm -rf .libs _libs
|
1348
|
+
-rm -rf src/.libs src/_libs
|
1349
|
+
-rm -rf src/aarch64/.libs src/aarch64/_libs
|
1350
|
+
-rm -rf src/alpha/.libs src/alpha/_libs
|
1351
|
+
-rm -rf src/arc/.libs src/arc/_libs
|
1352
|
+
-rm -rf src/arm/.libs src/arm/_libs
|
1353
|
+
-rm -rf src/avr32/.libs src/avr32/_libs
|
1354
|
+
-rm -rf src/bfin/.libs src/bfin/_libs
|
1355
|
+
-rm -rf src/cris/.libs src/cris/_libs
|
1356
|
+
-rm -rf src/csky/.libs src/csky/_libs
|
1357
|
+
-rm -rf src/frv/.libs src/frv/_libs
|
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
|
1361
|
+
-rm -rf src/m32r/.libs src/m32r/_libs
|
1362
|
+
-rm -rf src/m68k/.libs src/m68k/_libs
|
1363
|
+
-rm -rf src/m88k/.libs src/m88k/_libs
|
1364
|
+
-rm -rf src/metag/.libs src/metag/_libs
|
1365
|
+
-rm -rf src/microblaze/.libs src/microblaze/_libs
|
1366
|
+
-rm -rf src/mips/.libs src/mips/_libs
|
1367
|
+
-rm -rf src/moxie/.libs src/moxie/_libs
|
1368
|
+
-rm -rf src/nios2/.libs src/nios2/_libs
|
1369
|
+
-rm -rf src/or1k/.libs src/or1k/_libs
|
1370
|
+
-rm -rf src/pa/.libs src/pa/_libs
|
1371
|
+
-rm -rf src/powerpc/.libs src/powerpc/_libs
|
1372
|
+
-rm -rf src/riscv/.libs src/riscv/_libs
|
1373
|
+
-rm -rf src/s390/.libs src/s390/_libs
|
1374
|
+
-rm -rf src/sh/.libs src/sh/_libs
|
1375
|
+
-rm -rf src/sh64/.libs src/sh64/_libs
|
1376
|
+
-rm -rf src/sparc/.libs src/sparc/_libs
|
1377
|
+
-rm -rf src/tile/.libs src/tile/_libs
|
1378
|
+
-rm -rf src/vax/.libs src/vax/_libs
|
1379
|
+
-rm -rf src/wasm32/.libs src/wasm32/_libs
|
1380
|
+
-rm -rf src/x86/.libs src/x86/_libs
|
1381
|
+
-rm -rf src/xtensa/.libs src/xtensa/_libs
|
1382
|
+
|
1383
|
+
distclean-libtool:
|
1384
|
+
-rm -f libtool config.lt
|
1385
|
+
install-pkgconfigDATA: $(pkgconfig_DATA)
|
1386
|
+
@$(NORMAL_INSTALL)
|
1387
|
+
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
1388
|
+
if test -n "$$list"; then \
|
1389
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
|
1390
|
+
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
|
1391
|
+
fi; \
|
1392
|
+
for p in $$list; do \
|
1393
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1394
|
+
echo "$$d$$p"; \
|
1395
|
+
done | $(am__base_list) | \
|
1396
|
+
while read files; do \
|
1397
|
+
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
1398
|
+
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
1399
|
+
done
|
1400
|
+
|
1401
|
+
uninstall-pkgconfigDATA:
|
1402
|
+
@$(NORMAL_UNINSTALL)
|
1403
|
+
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
1404
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
1405
|
+
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
1406
|
+
|
1407
|
+
# This directory's subdirectories are mostly independent; you can cd
|
1408
|
+
# into them and run 'make' without going through this Makefile.
|
1409
|
+
# To change the values of 'make' variables: instead of editing Makefiles,
|
1410
|
+
# (1) if the variable is set in 'config.status', edit 'config.status'
|
1411
|
+
# (which will cause the Makefiles to be regenerated when you run 'make');
|
1412
|
+
# (2) otherwise, pass the desired values on the 'make' command line.
|
1413
|
+
$(am__recursive_targets):
|
1414
|
+
@fail=; \
|
1415
|
+
if $(am__make_keepgoing); then \
|
1416
|
+
failcom='fail=yes'; \
|
1417
|
+
else \
|
1418
|
+
failcom='exit 1'; \
|
1419
|
+
fi; \
|
1420
|
+
dot_seen=no; \
|
1421
|
+
target=`echo $@ | sed s/-recursive//`; \
|
1422
|
+
case "$@" in \
|
1423
|
+
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
1424
|
+
*) list='$(SUBDIRS)' ;; \
|
1425
|
+
esac; \
|
1426
|
+
for subdir in $$list; do \
|
1427
|
+
echo "Making $$target in $$subdir"; \
|
1428
|
+
if test "$$subdir" = "."; then \
|
1429
|
+
dot_seen=yes; \
|
1430
|
+
local_target="$$target-am"; \
|
1431
|
+
else \
|
1432
|
+
local_target="$$target"; \
|
1433
|
+
fi; \
|
1434
|
+
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
1435
|
+
|| eval $$failcom; \
|
1436
|
+
done; \
|
1437
|
+
if test "$$dot_seen" = "no"; then \
|
1438
|
+
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
1439
|
+
fi; test -z "$$fail"
|
1440
|
+
|
1441
|
+
ID: $(am__tagged_files)
|
1442
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
1443
|
+
tags: tags-recursive
|
1444
|
+
TAGS: tags
|
1445
|
+
|
1446
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
1447
|
+
set x; \
|
1448
|
+
here=`pwd`; \
|
1449
|
+
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
1450
|
+
include_option=--etags-include; \
|
1451
|
+
empty_fix=.; \
|
1452
|
+
else \
|
1453
|
+
include_option=--include; \
|
1454
|
+
empty_fix=; \
|
1455
|
+
fi; \
|
1456
|
+
list='$(SUBDIRS)'; for subdir in $$list; do \
|
1457
|
+
if test "$$subdir" = .; then :; else \
|
1458
|
+
test ! -f $$subdir/TAGS || \
|
1459
|
+
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
1460
|
+
fi; \
|
1461
|
+
done; \
|
1462
|
+
$(am__define_uniq_tagged_files); \
|
1463
|
+
shift; \
|
1464
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
1465
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
1466
|
+
if test $$# -gt 0; then \
|
1467
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
1468
|
+
"$$@" $$unique; \
|
1469
|
+
else \
|
1470
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
1471
|
+
$$unique; \
|
1472
|
+
fi; \
|
1473
|
+
fi
|
1474
|
+
ctags: ctags-recursive
|
1475
|
+
|
1476
|
+
CTAGS: ctags
|
1477
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
1478
|
+
$(am__define_uniq_tagged_files); \
|
1479
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
1480
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
1481
|
+
$$unique
|
1482
|
+
|
1483
|
+
GTAGS:
|
1484
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
1485
|
+
&& $(am__cd) $(top_srcdir) \
|
1486
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
1487
|
+
cscope: cscope.files
|
1488
|
+
test ! -s cscope.files \
|
1489
|
+
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
1490
|
+
clean-cscope:
|
1491
|
+
-rm -f cscope.files
|
1492
|
+
cscope.files: clean-cscope cscopelist
|
1493
|
+
cscopelist: cscopelist-recursive
|
1494
|
+
|
1495
|
+
cscopelist-am: $(am__tagged_files)
|
1496
|
+
list='$(am__tagged_files)'; \
|
1497
|
+
case "$(srcdir)" in \
|
1498
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
1499
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
1500
|
+
esac; \
|
1501
|
+
for i in $$list; do \
|
1502
|
+
if test -f "$$i"; then \
|
1503
|
+
echo "$(subdir)/$$i"; \
|
1504
|
+
else \
|
1505
|
+
echo "$$sdir/$$i"; \
|
1506
|
+
fi; \
|
1507
|
+
done >> $(top_builddir)/cscope.files
|
1508
|
+
|
1509
|
+
distclean-tags:
|
1510
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
1511
|
+
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
1512
|
+
distdir: $(BUILT_SOURCES)
|
1513
|
+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
1514
|
+
|
1515
|
+
distdir-am: $(DISTFILES)
|
1516
|
+
$(am__remove_distdir)
|
1517
|
+
test -d "$(distdir)" || mkdir "$(distdir)"
|
1518
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1519
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1520
|
+
list='$(DISTFILES)'; \
|
1521
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
1522
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
1523
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
1524
|
+
case $$dist_files in \
|
1525
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
1526
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
1527
|
+
sort -u` ;; \
|
1528
|
+
esac; \
|
1529
|
+
for file in $$dist_files; do \
|
1530
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
1531
|
+
if test -d $$d/$$file; then \
|
1532
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
1533
|
+
if test -d "$(distdir)/$$file"; then \
|
1534
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1535
|
+
fi; \
|
1536
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
1537
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
1538
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1539
|
+
fi; \
|
1540
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
1541
|
+
else \
|
1542
|
+
test -f "$(distdir)/$$file" \
|
1543
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
1544
|
+
|| exit 1; \
|
1545
|
+
fi; \
|
1546
|
+
done
|
1547
|
+
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
1548
|
+
if test "$$subdir" = .; then :; else \
|
1549
|
+
$(am__make_dryrun) \
|
1550
|
+
|| test -d "$(distdir)/$$subdir" \
|
1551
|
+
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
1552
|
+
|| exit 1; \
|
1553
|
+
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
1554
|
+
$(am__relativize); \
|
1555
|
+
new_distdir=$$reldir; \
|
1556
|
+
dir1=$$subdir; dir2="$(top_distdir)"; \
|
1557
|
+
$(am__relativize); \
|
1558
|
+
new_top_distdir=$$reldir; \
|
1559
|
+
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
1560
|
+
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
1561
|
+
($(am__cd) $$subdir && \
|
1562
|
+
$(MAKE) $(AM_MAKEFLAGS) \
|
1563
|
+
top_distdir="$$new_top_distdir" \
|
1564
|
+
distdir="$$new_distdir" \
|
1565
|
+
am__remove_distdir=: \
|
1566
|
+
am__skip_length_check=: \
|
1567
|
+
am__skip_mode_fix=: \
|
1568
|
+
distdir) \
|
1569
|
+
|| exit 1; \
|
1570
|
+
fi; \
|
1571
|
+
done
|
1572
|
+
$(MAKE) $(AM_MAKEFLAGS) \
|
1573
|
+
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
1574
|
+
dist-hook
|
1575
|
+
-test -n "$(am__skip_mode_fix)" \
|
1576
|
+
|| find "$(distdir)" -type d ! -perm -755 \
|
1577
|
+
-exec chmod u+rwx,go+rx {} \; -o \
|
1578
|
+
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
1579
|
+
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
1580
|
+
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
1581
|
+
|| chmod -R a+r "$(distdir)"
|
1582
|
+
dist-gzip: distdir
|
1583
|
+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
|
1584
|
+
$(am__post_remove_distdir)
|
1585
|
+
|
1586
|
+
dist-bzip2: distdir
|
1587
|
+
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
1588
|
+
$(am__post_remove_distdir)
|
1589
|
+
|
1590
|
+
dist-lzip: distdir
|
1591
|
+
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
1592
|
+
$(am__post_remove_distdir)
|
1593
|
+
|
1594
|
+
dist-xz: distdir
|
1595
|
+
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
1596
|
+
$(am__post_remove_distdir)
|
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
|
+
|
1602
|
+
dist-tarZ: distdir
|
1603
|
+
@echo WARNING: "Support for distribution archives compressed with" \
|
1604
|
+
"legacy program 'compress' is deprecated." >&2
|
1605
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
1606
|
+
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
1607
|
+
$(am__post_remove_distdir)
|
1608
|
+
|
1609
|
+
dist-shar: distdir
|
1610
|
+
@echo WARNING: "Support for shar distribution archives is" \
|
1611
|
+
"deprecated." >&2
|
1612
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
1613
|
+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
|
1614
|
+
$(am__post_remove_distdir)
|
1615
|
+
|
1616
|
+
dist-zip: distdir
|
1617
|
+
-rm -f $(distdir).zip
|
1618
|
+
zip -rq $(distdir).zip $(distdir)
|
1619
|
+
$(am__post_remove_distdir)
|
1620
|
+
|
1621
|
+
dist dist-all:
|
1622
|
+
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
1623
|
+
$(am__post_remove_distdir)
|
1624
|
+
|
1625
|
+
# This target untars the dist file and tries a VPATH configuration. Then
|
1626
|
+
# it guarantees that the distribution is self-contained by making another
|
1627
|
+
# tarfile.
|
1628
|
+
distcheck: dist
|
1629
|
+
case '$(DIST_ARCHIVES)' in \
|
1630
|
+
*.tar.gz*) \
|
1631
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
|
1632
|
+
*.tar.bz2*) \
|
1633
|
+
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
1634
|
+
*.tar.lz*) \
|
1635
|
+
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
1636
|
+
*.tar.xz*) \
|
1637
|
+
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
1638
|
+
*.tar.Z*) \
|
1639
|
+
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
1640
|
+
*.shar.gz*) \
|
1641
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
1642
|
+
*.zip*) \
|
1643
|
+
unzip $(distdir).zip ;;\
|
1644
|
+
*.tar.zst*) \
|
1645
|
+
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
|
1646
|
+
esac
|
1647
|
+
chmod -R a-w $(distdir)
|
1648
|
+
chmod u+w $(distdir)
|
1649
|
+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
1650
|
+
chmod a-w $(distdir)
|
1651
|
+
test -d $(distdir)/_build || exit 0; \
|
1652
|
+
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
1653
|
+
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
1654
|
+
&& am__cwd=`pwd` \
|
1655
|
+
&& $(am__cd) $(distdir)/_build/sub \
|
1656
|
+
&& ../../configure \
|
1657
|
+
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
1658
|
+
$(DISTCHECK_CONFIGURE_FLAGS) \
|
1659
|
+
--srcdir=../.. --prefix="$$dc_install_base" \
|
1660
|
+
&& $(MAKE) $(AM_MAKEFLAGS) \
|
1661
|
+
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
|
1662
|
+
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
1663
|
+
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
1664
|
+
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
1665
|
+
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
1666
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
1667
|
+
distuninstallcheck \
|
1668
|
+
&& chmod -R a-w "$$dc_install_base" \
|
1669
|
+
&& ({ \
|
1670
|
+
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
1671
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
1672
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
1673
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
1674
|
+
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
1675
|
+
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
1676
|
+
&& rm -rf "$$dc_destdir" \
|
1677
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
1678
|
+
&& rm -rf $(DIST_ARCHIVES) \
|
1679
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
1680
|
+
&& cd "$$am__cwd" \
|
1681
|
+
|| exit 1
|
1682
|
+
$(am__post_remove_distdir)
|
1683
|
+
@(echo "$(distdir) archives ready for distribution: "; \
|
1684
|
+
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
1685
|
+
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
1686
|
+
distuninstallcheck:
|
1687
|
+
@test -n '$(distuninstallcheck_dir)' || { \
|
1688
|
+
echo 'ERROR: trying to run $@ with an empty' \
|
1689
|
+
'$$(distuninstallcheck_dir)' >&2; \
|
1690
|
+
exit 1; \
|
1691
|
+
}; \
|
1692
|
+
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
1693
|
+
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
1694
|
+
exit 1; \
|
1695
|
+
}; \
|
1696
|
+
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
1697
|
+
|| { echo "ERROR: files left after uninstall:" ; \
|
1698
|
+
if test -n "$(DESTDIR)"; then \
|
1699
|
+
echo " (check DESTDIR support)"; \
|
1700
|
+
fi ; \
|
1701
|
+
$(distuninstallcheck_listfiles) ; \
|
1702
|
+
exit 1; } >&2
|
1703
|
+
distcleancheck: distclean
|
1704
|
+
@if test '$(srcdir)' = . ; then \
|
1705
|
+
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
1706
|
+
exit 1 ; \
|
1707
|
+
fi
|
1708
|
+
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
1709
|
+
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
1710
|
+
$(distcleancheck_listfiles) ; \
|
1711
|
+
exit 1; } >&2
|
1712
|
+
check-am: all-am
|
1713
|
+
check: check-recursive
|
1714
|
+
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) fficonfig.h
|
1715
|
+
installdirs: installdirs-recursive
|
1716
|
+
installdirs-am:
|
1717
|
+
for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(pkgconfigdir)"; do \
|
1718
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
1719
|
+
done
|
1720
|
+
install: install-recursive
|
1721
|
+
install-exec: install-exec-recursive
|
1722
|
+
install-data: install-data-recursive
|
1723
|
+
uninstall: uninstall-recursive
|
1724
|
+
|
1725
|
+
install-am: all-am
|
1726
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
1727
|
+
|
1728
|
+
installcheck: installcheck-recursive
|
1729
|
+
install-strip:
|
1730
|
+
if test -z '$(STRIP)'; then \
|
1731
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1732
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1733
|
+
install; \
|
1734
|
+
else \
|
1735
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1736
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1737
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
1738
|
+
fi
|
1739
|
+
mostlyclean-generic:
|
1740
|
+
|
1741
|
+
clean-generic:
|
1742
|
+
|
1743
|
+
distclean-generic:
|
1744
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
1745
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
1746
|
+
-rm -f src/$(DEPDIR)/$(am__dirstamp)
|
1747
|
+
-rm -f src/$(am__dirstamp)
|
1748
|
+
-rm -f src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
1749
|
+
-rm -f src/aarch64/$(am__dirstamp)
|
1750
|
+
-rm -f src/alpha/$(DEPDIR)/$(am__dirstamp)
|
1751
|
+
-rm -f src/alpha/$(am__dirstamp)
|
1752
|
+
-rm -f src/arc/$(DEPDIR)/$(am__dirstamp)
|
1753
|
+
-rm -f src/arc/$(am__dirstamp)
|
1754
|
+
-rm -f src/arm/$(DEPDIR)/$(am__dirstamp)
|
1755
|
+
-rm -f src/arm/$(am__dirstamp)
|
1756
|
+
-rm -f src/avr32/$(DEPDIR)/$(am__dirstamp)
|
1757
|
+
-rm -f src/avr32/$(am__dirstamp)
|
1758
|
+
-rm -f src/bfin/$(DEPDIR)/$(am__dirstamp)
|
1759
|
+
-rm -f src/bfin/$(am__dirstamp)
|
1760
|
+
-rm -f src/cris/$(DEPDIR)/$(am__dirstamp)
|
1761
|
+
-rm -f src/cris/$(am__dirstamp)
|
1762
|
+
-rm -f src/csky/$(DEPDIR)/$(am__dirstamp)
|
1763
|
+
-rm -f src/csky/$(am__dirstamp)
|
1764
|
+
-rm -f src/frv/$(DEPDIR)/$(am__dirstamp)
|
1765
|
+
-rm -f src/frv/$(am__dirstamp)
|
1766
|
+
-rm -f src/ia64/$(DEPDIR)/$(am__dirstamp)
|
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)
|
1772
|
+
-rm -f src/m32r/$(DEPDIR)/$(am__dirstamp)
|
1773
|
+
-rm -f src/m32r/$(am__dirstamp)
|
1774
|
+
-rm -f src/m68k/$(DEPDIR)/$(am__dirstamp)
|
1775
|
+
-rm -f src/m68k/$(am__dirstamp)
|
1776
|
+
-rm -f src/m88k/$(DEPDIR)/$(am__dirstamp)
|
1777
|
+
-rm -f src/m88k/$(am__dirstamp)
|
1778
|
+
-rm -f src/metag/$(DEPDIR)/$(am__dirstamp)
|
1779
|
+
-rm -f src/metag/$(am__dirstamp)
|
1780
|
+
-rm -f src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
1781
|
+
-rm -f src/microblaze/$(am__dirstamp)
|
1782
|
+
-rm -f src/mips/$(DEPDIR)/$(am__dirstamp)
|
1783
|
+
-rm -f src/mips/$(am__dirstamp)
|
1784
|
+
-rm -f src/moxie/$(DEPDIR)/$(am__dirstamp)
|
1785
|
+
-rm -f src/moxie/$(am__dirstamp)
|
1786
|
+
-rm -f src/nios2/$(DEPDIR)/$(am__dirstamp)
|
1787
|
+
-rm -f src/nios2/$(am__dirstamp)
|
1788
|
+
-rm -f src/or1k/$(DEPDIR)/$(am__dirstamp)
|
1789
|
+
-rm -f src/or1k/$(am__dirstamp)
|
1790
|
+
-rm -f src/pa/$(DEPDIR)/$(am__dirstamp)
|
1791
|
+
-rm -f src/pa/$(am__dirstamp)
|
1792
|
+
-rm -f src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
1793
|
+
-rm -f src/powerpc/$(am__dirstamp)
|
1794
|
+
-rm -f src/riscv/$(DEPDIR)/$(am__dirstamp)
|
1795
|
+
-rm -f src/riscv/$(am__dirstamp)
|
1796
|
+
-rm -f src/s390/$(DEPDIR)/$(am__dirstamp)
|
1797
|
+
-rm -f src/s390/$(am__dirstamp)
|
1798
|
+
-rm -f src/sh/$(DEPDIR)/$(am__dirstamp)
|
1799
|
+
-rm -f src/sh/$(am__dirstamp)
|
1800
|
+
-rm -f src/sh64/$(DEPDIR)/$(am__dirstamp)
|
1801
|
+
-rm -f src/sh64/$(am__dirstamp)
|
1802
|
+
-rm -f src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1803
|
+
-rm -f src/sparc/$(am__dirstamp)
|
1804
|
+
-rm -f src/tile/$(DEPDIR)/$(am__dirstamp)
|
1805
|
+
-rm -f src/tile/$(am__dirstamp)
|
1806
|
+
-rm -f src/vax/$(DEPDIR)/$(am__dirstamp)
|
1807
|
+
-rm -f src/vax/$(am__dirstamp)
|
1808
|
+
-rm -f src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1809
|
+
-rm -f src/wasm32/$(am__dirstamp)
|
1810
|
+
-rm -f src/x86/$(DEPDIR)/$(am__dirstamp)
|
1811
|
+
-rm -f src/x86/$(am__dirstamp)
|
1812
|
+
-rm -f src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1813
|
+
-rm -f src/xtensa/$(am__dirstamp)
|
1814
|
+
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
1815
|
+
|
1816
|
+
maintainer-clean-generic:
|
1817
|
+
@echo "This command is intended for maintainers to use"
|
1818
|
+
@echo "it deletes files that may require special tools to rebuild."
|
1819
|
+
clean: clean-recursive
|
1820
|
+
|
1821
|
+
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
1822
|
+
clean-toolexeclibLTLIBRARIES mostlyclean-am
|
1823
|
+
|
1824
|
+
distclean: distclean-recursive
|
1825
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
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
|
1921
|
+
-rm -f Makefile
|
1922
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
1923
|
+
distclean-hdr distclean-libtool distclean-tags
|
1924
|
+
|
1925
|
+
dvi: dvi-recursive
|
1926
|
+
|
1927
|
+
dvi-am:
|
1928
|
+
|
1929
|
+
html: html-recursive
|
1930
|
+
|
1931
|
+
html-am:
|
1932
|
+
|
1933
|
+
info: info-recursive
|
1934
|
+
|
1935
|
+
info-am:
|
1936
|
+
|
1937
|
+
install-data-am: install-pkgconfigDATA
|
1938
|
+
|
1939
|
+
install-dvi: install-dvi-recursive
|
1940
|
+
|
1941
|
+
install-dvi-am:
|
1942
|
+
|
1943
|
+
install-exec-am: install-toolexeclibLTLIBRARIES
|
1944
|
+
|
1945
|
+
install-html: install-html-recursive
|
1946
|
+
|
1947
|
+
install-html-am:
|
1948
|
+
|
1949
|
+
install-info: install-info-recursive
|
1950
|
+
|
1951
|
+
install-info-am:
|
1952
|
+
|
1953
|
+
install-man:
|
1954
|
+
|
1955
|
+
install-pdf: install-pdf-recursive
|
1956
|
+
|
1957
|
+
install-pdf-am:
|
1958
|
+
|
1959
|
+
install-ps: install-ps-recursive
|
1960
|
+
|
1961
|
+
install-ps-am:
|
1962
|
+
|
1963
|
+
installcheck-am:
|
1964
|
+
|
1965
|
+
maintainer-clean: maintainer-clean-recursive
|
1966
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1967
|
+
-rm -rf $(top_srcdir)/autom4te.cache
|
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
|
2063
|
+
-rm -f Makefile
|
2064
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
2065
|
+
|
2066
|
+
mostlyclean: mostlyclean-recursive
|
2067
|
+
|
2068
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
2069
|
+
mostlyclean-libtool
|
2070
|
+
|
2071
|
+
pdf: pdf-recursive
|
2072
|
+
|
2073
|
+
pdf-am:
|
2074
|
+
|
2075
|
+
ps: ps-recursive
|
2076
|
+
|
2077
|
+
ps-am:
|
2078
|
+
|
2079
|
+
uninstall-am: uninstall-pkgconfigDATA uninstall-toolexeclibLTLIBRARIES
|
2080
|
+
|
2081
|
+
.MAKE: $(am__recursive_targets) all install-am install-strip
|
2082
|
+
|
2083
|
+
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
2084
|
+
am--depfiles am--refresh check check-am clean clean-cscope \
|
2085
|
+
clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
2086
|
+
clean-toolexeclibLTLIBRARIES cscope cscopelist-am ctags \
|
2087
|
+
ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
|
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
|
2103
|
+
|
2104
|
+
.PRECIOUS: Makefile
|
2105
|
+
|
2106
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi.map-sun : libffi.map $(top_srcdir)/make_sunver.pl \
|
2107
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ $(libffi_la_OBJECTS) $(libffi_la_LIBADD)
|
2108
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ perl $(top_srcdir)/make_sunver.pl libffi.map \
|
2109
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ `echo $(libffi_la_OBJECTS) $(libffi_la_LIBADD) | \
|
2110
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ sed 's,\([^/ ]*\)\.l\([ao]\),.libs/\1.\2,g'` \
|
2111
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ > $@ || (rm -f $@ ; exit 1)
|
2112
|
+
|
2113
|
+
libffi.map: $(top_srcdir)/libffi.map.in
|
2114
|
+
$(COMPILE) -D$(TARGET) -DGENERATE_LIBFFI_MAP \
|
2115
|
+
-E -x assembler-with-cpp -o $@ $(top_srcdir)/libffi.map.in
|
2116
|
+
|
2117
|
+
dist-hook:
|
2118
|
+
d=`(cd $(distdir); pwd)`; (cd doc; make pdf; cp *.pdf $$d/doc)
|
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)
|
2124
|
+
|
2125
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
2126
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
2127
|
+
.NOEXPORT:
|