ffi 1.9.18 → 1.9.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +22 -0
- data/.gitmodules +3 -0
- data/.travis.yml +52 -0
- data/.yardopts +5 -0
- data/Gemfile +15 -0
- data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
- data/README.md +3 -4
- data/Rakefile +41 -5
- data/appveyor.yml +22 -0
- data/ext/ffi_c/AbstractMemory.c +6 -1
- data/ext/ffi_c/Call.c +1 -22
- data/ext/ffi_c/Call.h +0 -9
- data/ext/ffi_c/Closure.c +54 -0
- data/ext/ffi_c/{ClosurePool.h → Closure.h} +13 -23
- data/ext/ffi_c/Function.c +16 -25
- data/ext/ffi_c/Function.h +1 -2
- data/ext/ffi_c/FunctionInfo.c +0 -4
- data/ext/ffi_c/MethodHandle.c +33 -268
- data/ext/ffi_c/Platform.c +10 -2
- data/ext/ffi_c/extconf.rb +10 -5
- data/ext/ffi_c/ffi.c +2 -2
- data/ext/ffi_c/libffi/.appveyor.yml +48 -0
- data/ext/ffi_c/libffi/.gitignore +36 -0
- data/ext/ffi_c/libffi/.travis/install.sh +14 -0
- data/ext/ffi_c/libffi/.travis.yml +30 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +2 -2
- data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.libffi-3.1} +1402 -2
- data/ext/ffi_c/libffi/ChangeLog.v1 +1 -1
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +169 -158
- data/ext/ffi_c/libffi/Makefile.in +927 -938
- data/ext/ffi_c/libffi/README +164 -52
- data/ext/ffi_c/libffi/acinclude.m4 +387 -0
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/config.guess +336 -371
- data/ext/ffi_c/libffi/config.sub +246 -115
- data/ext/ffi_c/libffi/configure +6976 -2189
- data/ext/ffi_c/libffi/configure.ac +148 -256
- data/ext/ffi_c/libffi/configure.host +277 -4
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/Makefile.in +811 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +430 -45
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +24 -13
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
- data/ext/ffi_c/libffi/include/Makefile.am +3 -3
- data/ext/ffi_c/libffi/include/Makefile.in +188 -71
- data/ext/ffi_c/libffi/include/ffi.h.in +112 -50
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +32 -11
- data/ext/ffi_c/libffi/install-sh +190 -202
- data/ext/ffi_c/libffi/libffi.map.in +80 -0
- data/ext/ffi_c/libffi/libffi.pc.in +3 -2
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
- data/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/ltmain.sh +3553 -2033
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +69 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +13 -8
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +31 -104
- data/ext/ffi_c/libffi/m4/{ax_check_compiler_flags.m4 → ax_check_compile_flag.m4} +30 -34
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +32 -11
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +6 -5
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +31 -21
- data/ext/ffi_c/libffi/man/Makefile.am +2 -2
- data/ext/ffi_c/libffi/man/Makefile.in +141 -49
- data/ext/ffi_c/libffi/man/ffi.3 +10 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/missing +150 -311
- data/ext/ffi_c/libffi/msvcc.sh +72 -9
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +964 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
- data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +608 -517
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +24 -7
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +303 -417
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +366 -45
- data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/debug.c +6 -1
- data/ext/ffi_c/libffi/src/dlmalloc.c +16 -11
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +11 -7
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/unix.S +2 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
- data/ext/ffi_c/libffi/src/m32r/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +103 -28
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +10 -3
- data/ext/ffi_c/libffi/src/mips/n32.S +128 -56
- data/ext/ffi_c/libffi/src/mips/o32.S +148 -27
- data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
- data/ext/ffi_c/libffi/src/moxie/ffi.c +40 -44
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/powerpc/aix.S +245 -7
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +253 -4
- data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +103 -1378
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +111 -30
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +945 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +103 -44
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +100 -59
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +360 -108
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +68 -112
- data/ext/ffi_c/libffi/src/prep_cif.c +108 -24
- data/ext/ffi_c/libffi/src/raw_api.c +18 -5
- data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
- data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
- data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/types.c +43 -14
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +591 -500
- data/ext/ffi_c/libffi/src/x86/ffi64.c +359 -116
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +55 -35
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +287 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +975 -400
- data/ext/ffi_c/libffi/src/x86/unix64.S +398 -299
- data/ext/ffi_c/libffi/src/x86/win64.S +222 -458
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +253 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +79 -73
- data/ext/ffi_c/libffi/testsuite/Makefile.in +219 -111
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +121 -25
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/{closure_stdcall.c → closure_simple.c} +7 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +3 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +11 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +23 -40
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +6 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +18 -19
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +8 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest.cc +3 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest_ffi_call.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/libffi.bsd.mk +11 -5
- data/ext/ffi_c/libffi.darwin.mk +14 -4
- data/ext/ffi_c/libffi.gnu.mk +3 -2
- data/ext/ffi_c/libffi.mk +10 -5
- data/ext/ffi_c/libffi.vc.mk +1 -1
- data/ext/ffi_c/libffi.vc64.mk +1 -1
- data/ffi.gemspec +16 -3
- data/lib/ffi/enum.rb +124 -0
- data/lib/ffi/library.rb +66 -14
- data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +113 -20
- data/lib/ffi/platform.rb +7 -2
- data/lib/ffi/pointer.rb +1 -0
- data/lib/ffi/struct.rb +0 -2
- data/lib/ffi/version.rb +1 -2
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +7 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +76 -0
- data/samples/qsort.rb +21 -0
- data/samples/sample_helper.rb +6 -0
- metadata +164 -115
- data/ext/ffi_c/ClosurePool.c +0 -283
- data/ext/ffi_c/libffi/Makefile.vc +0 -141
- data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
- data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
- data/ext/ffi_c/libffi/build-ios.sh +0 -67
- data/ext/ffi_c/libffi/compile +0 -143
- data/ext/ffi_c/libffi/depcomp +0 -630
- data/ext/ffi_c/libffi/doc/libffi.info +0 -593
- data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
- data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +0 -427
- data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
- data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
- data/ext/ffi_c/libffi/mdate-sh +0 -201
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
- data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
- data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
- data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
- data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
- data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
- data/ext/ffi_c/libffi/texinfo.tex +0 -7210
- data/gen/Rakefile +0 -30
- data/libtest/Benchmark.c +0 -52
- data/libtest/BoolTest.c +0 -34
- data/libtest/BufferTest.c +0 -31
- data/libtest/ClosureTest.c +0 -205
- data/libtest/EnumTest.c +0 -51
- data/libtest/FunctionTest.c +0 -70
- data/libtest/GNUmakefile +0 -149
- data/libtest/GlobalVariable.c +0 -62
- data/libtest/LastErrorTest.c +0 -21
- data/libtest/NumberTest.c +0 -132
- data/libtest/PointerTest.c +0 -63
- data/libtest/ReferenceTest.c +0 -23
- data/libtest/StringTest.c +0 -34
- data/libtest/StructTest.c +0 -243
- data/libtest/UnionTest.c +0 -43
- data/libtest/VariadicTest.c +0 -99
- data/spec/ffi/async_callback_spec.rb +0 -35
- data/spec/ffi/bool_spec.rb +0 -32
- data/spec/ffi/buffer_spec.rb +0 -279
- data/spec/ffi/callback_spec.rb +0 -773
- data/spec/ffi/custom_param_type.rb +0 -37
- data/spec/ffi/custom_type_spec.rb +0 -74
- data/spec/ffi/dup_spec.rb +0 -52
- data/spec/ffi/enum_spec.rb +0 -423
- data/spec/ffi/errno_spec.rb +0 -20
- data/spec/ffi/ffi_spec.rb +0 -28
- data/spec/ffi/fixtures/Benchmark.c +0 -52
- data/spec/ffi/fixtures/BoolTest.c +0 -34
- data/spec/ffi/fixtures/BufferTest.c +0 -31
- data/spec/ffi/fixtures/ClosureTest.c +0 -205
- data/spec/ffi/fixtures/EnumTest.c +0 -51
- data/spec/ffi/fixtures/FunctionTest.c +0 -142
- data/spec/ffi/fixtures/GNUmakefile +0 -149
- data/spec/ffi/fixtures/GlobalVariable.c +0 -62
- data/spec/ffi/fixtures/LastErrorTest.c +0 -21
- data/spec/ffi/fixtures/NumberTest.c +0 -132
- data/spec/ffi/fixtures/PipeHelper.h +0 -21
- data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
- data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
- data/spec/ffi/fixtures/PointerTest.c +0 -63
- data/spec/ffi/fixtures/ReferenceTest.c +0 -23
- data/spec/ffi/fixtures/StringTest.c +0 -34
- data/spec/ffi/fixtures/StructTest.c +0 -243
- data/spec/ffi/fixtures/UnionTest.c +0 -43
- data/spec/ffi/fixtures/VariadicTest.c +0 -99
- data/spec/ffi/fixtures/classes.rb +0 -438
- data/spec/ffi/function_spec.rb +0 -97
- data/spec/ffi/io_spec.rb +0 -16
- data/spec/ffi/library_spec.rb +0 -286
- data/spec/ffi/long_double.rb +0 -30
- data/spec/ffi/managed_struct_spec.rb +0 -68
- data/spec/ffi/memorypointer_spec.rb +0 -78
- data/spec/ffi/number_spec.rb +0 -247
- data/spec/ffi/platform_spec.rb +0 -114
- data/spec/ffi/pointer_spec.rb +0 -285
- data/spec/ffi/rbx/attach_function_spec.rb +0 -34
- data/spec/ffi/rbx/memory_pointer_spec.rb +0 -194
- data/spec/ffi/rbx/spec_helper.rb +0 -6
- data/spec/ffi/rbx/struct_spec.rb +0 -18
- data/spec/ffi/spec_helper.rb +0 -93
- data/spec/ffi/string_spec.rb +0 -118
- data/spec/ffi/strptr_spec.rb +0 -50
- data/spec/ffi/struct_by_ref_spec.rb +0 -43
- data/spec/ffi/struct_callback_spec.rb +0 -69
- data/spec/ffi/struct_initialize_spec.rb +0 -35
- data/spec/ffi/struct_packed_spec.rb +0 -50
- data/spec/ffi/struct_spec.rb +0 -886
- data/spec/ffi/typedef_spec.rb +0 -91
- data/spec/ffi/union_spec.rb +0 -67
- data/spec/ffi/variadic_spec.rb +0 -132
- data/spec/spec.opts +0 -4
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
AC_DEFUN([GCC_AS_CFI_PSEUDO_OP],
|
|
2
|
+
[AC_CACHE_CHECK([assembler .cfi pseudo-op support],
|
|
3
|
+
gcc_cv_as_cfi_pseudo_op, [
|
|
4
|
+
gcc_cv_as_cfi_pseudo_op=unknown
|
|
5
|
+
AC_TRY_COMPILE([asm (".cfi_startproc\n\t.cfi_endproc");],,
|
|
6
|
+
[gcc_cv_as_cfi_pseudo_op=yes],
|
|
7
|
+
[gcc_cv_as_cfi_pseudo_op=no])
|
|
8
|
+
])
|
|
9
|
+
if test "x$gcc_cv_as_cfi_pseudo_op" = xyes; then
|
|
10
|
+
AC_DEFINE(HAVE_AS_CFI_PSEUDO_OP, 1,
|
|
11
|
+
[Define if your assembler supports .cfi_* directives.])
|
|
12
|
+
fi
|
|
13
|
+
])
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# ===========================================================================
|
|
2
|
+
# http://www.gnu.org/software/autoconf-archive/ax_append_flag.html
|
|
3
|
+
# ===========================================================================
|
|
4
|
+
#
|
|
5
|
+
# SYNOPSIS
|
|
6
|
+
#
|
|
7
|
+
# AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
|
|
8
|
+
#
|
|
9
|
+
# DESCRIPTION
|
|
10
|
+
#
|
|
11
|
+
# FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
|
|
12
|
+
# added in between.
|
|
13
|
+
#
|
|
14
|
+
# If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
|
|
15
|
+
# CFLAGS) is used. FLAGS-VARIABLE is not changed if it already contains
|
|
16
|
+
# FLAG. If FLAGS-VARIABLE is unset in the shell, it is set to exactly
|
|
17
|
+
# FLAG.
|
|
18
|
+
#
|
|
19
|
+
# NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
|
|
20
|
+
#
|
|
21
|
+
# LICENSE
|
|
22
|
+
#
|
|
23
|
+
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
|
24
|
+
# Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
|
|
25
|
+
#
|
|
26
|
+
# This program is free software: you can redistribute it and/or modify it
|
|
27
|
+
# under the terms of the GNU General Public License as published by the
|
|
28
|
+
# Free Software Foundation, either version 3 of the License, or (at your
|
|
29
|
+
# option) any later version.
|
|
30
|
+
#
|
|
31
|
+
# This program is distributed in the hope that it will be useful, but
|
|
32
|
+
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
33
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
34
|
+
# Public License for more details.
|
|
35
|
+
#
|
|
36
|
+
# You should have received a copy of the GNU General Public License along
|
|
37
|
+
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
38
|
+
#
|
|
39
|
+
# As a special exception, the respective Autoconf Macro's copyright owner
|
|
40
|
+
# gives unlimited permission to copy, distribute and modify the configure
|
|
41
|
+
# scripts that are the output of Autoconf when processing the Macro. You
|
|
42
|
+
# need not follow the terms of the GNU General Public License when using
|
|
43
|
+
# or distributing such scripts, even though portions of the text of the
|
|
44
|
+
# Macro appear in them. The GNU General Public License (GPL) does govern
|
|
45
|
+
# all other use of the material that constitutes the Autoconf Macro.
|
|
46
|
+
#
|
|
47
|
+
# This special exception to the GPL applies to versions of the Autoconf
|
|
48
|
+
# Macro released by the Autoconf Archive. When you make and distribute a
|
|
49
|
+
# modified version of the Autoconf Macro, you may extend this special
|
|
50
|
+
# exception to the GPL to apply to your modified version as well.
|
|
51
|
+
|
|
52
|
+
#serial 2
|
|
53
|
+
|
|
54
|
+
AC_DEFUN([AX_APPEND_FLAG],
|
|
55
|
+
[AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
|
|
56
|
+
AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])dnl
|
|
57
|
+
AS_VAR_SET_IF(FLAGS,
|
|
58
|
+
[case " AS_VAR_GET(FLAGS) " in
|
|
59
|
+
*" $1 "*)
|
|
60
|
+
AC_RUN_LOG([: FLAGS already contains $1])
|
|
61
|
+
;;
|
|
62
|
+
*)
|
|
63
|
+
AC_RUN_LOG([: FLAGS="$FLAGS $1"])
|
|
64
|
+
AS_VAR_SET(FLAGS, ["AS_VAR_GET(FLAGS) $1"])
|
|
65
|
+
;;
|
|
66
|
+
esac],
|
|
67
|
+
[AS_VAR_SET(FLAGS,["$1"])])
|
|
68
|
+
AS_VAR_POPDEF([FLAGS])dnl
|
|
69
|
+
])dnl AX_APPEND_FLAG
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
# by the code (e.g. for gcc's -fstrict-aliasing), and that floating-point
|
|
22
22
|
# computations can be re-ordered as needed.
|
|
23
23
|
#
|
|
24
|
-
# Requires macros:
|
|
24
|
+
# Requires macros: AX_CHECK_COMPILE_FLAG, AX_COMPILER_VENDOR,
|
|
25
25
|
# AX_GCC_ARCHFLAG, AX_GCC_X86_CPUID.
|
|
26
26
|
#
|
|
27
27
|
# LICENSE
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
# modified version of the Autoconf Macro, you may extend this special
|
|
56
56
|
# exception to the GPL to apply to your modified version as well.
|
|
57
57
|
|
|
58
|
-
#serial
|
|
58
|
+
#serial 13
|
|
59
59
|
|
|
60
60
|
AC_DEFUN([AX_CC_MAXOPT],
|
|
61
61
|
[
|
|
@@ -64,7 +64,7 @@ AC_REQUIRE([AX_COMPILER_VENDOR])
|
|
|
64
64
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
65
65
|
|
|
66
66
|
AC_ARG_ENABLE(portable-binary, [AS_HELP_STRING([--enable-portable-binary], [disable compiler optimizations that would produce unportable binaries])],
|
|
67
|
-
acx_maxopt_portable=$
|
|
67
|
+
acx_maxopt_portable=$enableval, acx_maxopt_portable=no)
|
|
68
68
|
|
|
69
69
|
# Try to determine "good" native compiler flags if none specified via CFLAGS
|
|
70
70
|
if test "$ac_test_CFLAGS" != "set"; then
|
|
@@ -90,7 +90,7 @@ if test "$ac_test_CFLAGS" != "set"; then
|
|
|
90
90
|
else
|
|
91
91
|
xlc_opt="-qtune=auto"
|
|
92
92
|
fi
|
|
93
|
-
|
|
93
|
+
AX_CHECK_COMPILE_FLAG($xlc_opt,
|
|
94
94
|
CFLAGS="-O3 -qansialias -w $xlc_opt",
|
|
95
95
|
[CFLAGS="-O3 -qansialias -w"
|
|
96
96
|
echo "******************************************************"
|
|
@@ -125,7 +125,7 @@ if test "$ac_test_CFLAGS" != "set"; then
|
|
|
125
125
|
esac
|
|
126
126
|
if test "x$icc_flags" != x; then
|
|
127
127
|
for flag in $icc_flags; do
|
|
128
|
-
|
|
128
|
+
AX_CHECK_COMPILE_FLAG($flag, [icc_archflag=$flag; break])
|
|
129
129
|
done
|
|
130
130
|
fi
|
|
131
131
|
AC_MSG_CHECKING([for icc architecture flag])
|
|
@@ -140,11 +140,16 @@ if test "$ac_test_CFLAGS" != "set"; then
|
|
|
140
140
|
# default optimization flags for gcc on all systems
|
|
141
141
|
CFLAGS="-O3 -fomit-frame-pointer"
|
|
142
142
|
|
|
143
|
+
# -malign-double for x86 systems
|
|
144
|
+
# LIBFFI -- DON'T DO THIS - CHANGES ABI
|
|
145
|
+
# AX_CHECK_COMPILE_FLAG(-malign-double, CFLAGS="$CFLAGS -malign-double")
|
|
146
|
+
|
|
143
147
|
# -fstrict-aliasing for gcc-2.95+
|
|
144
|
-
|
|
148
|
+
AX_CHECK_COMPILE_FLAG(-fstrict-aliasing,
|
|
145
149
|
CFLAGS="$CFLAGS -fstrict-aliasing")
|
|
146
150
|
|
|
147
|
-
|
|
151
|
+
# note that we enable "unsafe" fp optimization with other compilers, too
|
|
152
|
+
AX_CHECK_COMPILE_FLAG(-ffast-math, CFLAGS="$CFLAGS -ffast-math")
|
|
148
153
|
|
|
149
154
|
AX_GCC_ARCHFLAG($acx_maxopt_portable)
|
|
150
155
|
;;
|
|
@@ -161,7 +166,7 @@ if test "$ac_test_CFLAGS" != "set"; then
|
|
|
161
166
|
CFLAGS="-O3"
|
|
162
167
|
fi
|
|
163
168
|
|
|
164
|
-
|
|
169
|
+
AX_CHECK_COMPILE_FLAG($CFLAGS, [], [
|
|
165
170
|
echo ""
|
|
166
171
|
echo "********************************************************"
|
|
167
172
|
echo "* WARNING: The guessed CFLAGS don't seem to work with *"
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
# - $3 action-if-found : add value to shellvariable
|
|
26
26
|
# - $4 action-if-not-found : nothing
|
|
27
27
|
#
|
|
28
|
+
# NOTE: These macros depend on AX_APPEND_FLAG.
|
|
29
|
+
#
|
|
28
30
|
# LICENSE
|
|
29
31
|
#
|
|
30
32
|
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
|
@@ -56,99 +58,14 @@
|
|
|
56
58
|
# modified version of the Autoconf Macro, you may extend this special
|
|
57
59
|
# exception to the GPL to apply to your modified version as well.
|
|
58
60
|
|
|
59
|
-
#serial
|
|
61
|
+
#serial 14
|
|
60
62
|
|
|
61
|
-
AC_DEFUN([
|
|
62
|
-
AS_VAR_PUSHDEF([FLAGS],[
|
|
63
|
-
AS_VAR_PUSHDEF([VAR],[
|
|
63
|
+
AC_DEFUN([AX_FLAGS_WARN_ALL],[dnl
|
|
64
|
+
AS_VAR_PUSHDEF([FLAGS],[_AC_LANG_PREFIX[]FLAGS])dnl
|
|
65
|
+
AS_VAR_PUSHDEF([VAR],[ac_cv_[]_AC_LANG_ABBREV[]flags_warn_all])dnl
|
|
64
66
|
AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for maximum warnings],
|
|
65
67
|
VAR,[VAR="no, unknown"
|
|
66
|
-
|
|
67
|
-
ac_save_[]FLAGS="$[]FLAGS"
|
|
68
|
-
for ac_arg dnl
|
|
69
|
-
in "-pedantic % -Wall" dnl GCC
|
|
70
|
-
"-xstrconst % -v" dnl Solaris C
|
|
71
|
-
"-std1 % -verbose -w0 -warnprotos" dnl Digital Unix
|
|
72
|
-
"-qlanglvl=ansi % -qsrcmsg -qinfo=all:noppt:noppc:noobs:nocnd" dnl AIX
|
|
73
|
-
"-ansi -ansiE % -fullwarn" dnl IRIX
|
|
74
|
-
"+ESlit % +w1" dnl HP-UX C
|
|
75
|
-
"-Xc % -pvctl[,]fullmsg" dnl NEC SX-5 (Super-UX 10)
|
|
76
|
-
"-h conform % -h msglevel 2" dnl Cray C (Unicos)
|
|
77
|
-
#
|
|
78
|
-
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
|
|
79
|
-
AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
|
|
80
|
-
[VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
|
|
81
|
-
done
|
|
82
|
-
FLAGS="$ac_save_[]FLAGS"
|
|
83
|
-
AC_LANG_POP([C])
|
|
84
|
-
])
|
|
85
|
-
case ".$VAR" in
|
|
86
|
-
.ok|.ok,*) m4_ifvaln($3,$3) ;;
|
|
87
|
-
.|.no|.no,*) m4_ifvaln($4,$4,[m4_ifval($2,[
|
|
88
|
-
AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $2"])
|
|
89
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $2"])]) ;;
|
|
90
|
-
*) m4_ifvaln($3,$3,[
|
|
91
|
-
if echo " $[]m4_ifval($1,$1,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
|
|
92
|
-
then AC_RUN_LOG([: m4_ifval($1,$1,FLAGS) does contain $VAR])
|
|
93
|
-
else AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"])
|
|
94
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"
|
|
95
|
-
fi ]) ;;
|
|
96
|
-
esac
|
|
97
|
-
AS_VAR_POPDEF([VAR])dnl
|
|
98
|
-
AS_VAR_POPDEF([FLAGS])dnl
|
|
99
|
-
])
|
|
100
|
-
|
|
101
|
-
dnl the only difference - the LANG selection... and the default FLAGS
|
|
102
|
-
|
|
103
|
-
AC_DEFUN([AX_CXXFLAGS_WARN_ALL],[dnl
|
|
104
|
-
AS_VAR_PUSHDEF([FLAGS],[CXXFLAGS])dnl
|
|
105
|
-
AS_VAR_PUSHDEF([VAR],[ax_cv_cxxflags_warn_all])dnl
|
|
106
|
-
AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for maximum warnings],
|
|
107
|
-
VAR,[VAR="no, unknown"
|
|
108
|
-
AC_LANG_PUSH([C++])
|
|
109
|
-
ac_save_[]FLAGS="$[]FLAGS"
|
|
110
|
-
for ac_arg dnl
|
|
111
|
-
in "-pedantic % -Wall" dnl GCC
|
|
112
|
-
"-xstrconst % -v" dnl Solaris C
|
|
113
|
-
"-std1 % -verbose -w0 -warnprotos" dnl Digital Unix
|
|
114
|
-
"-qlanglvl=ansi % -qsrcmsg -qinfo=all:noppt:noppc:noobs:nocnd" dnl AIX
|
|
115
|
-
"-ansi -ansiE % -fullwarn" dnl IRIX
|
|
116
|
-
"+ESlit % +w1" dnl HP-UX C
|
|
117
|
-
"-Xc % -pvctl[,]fullmsg" dnl NEC SX-5 (Super-UX 10)
|
|
118
|
-
"-h conform % -h msglevel 2" dnl Cray C (Unicos)
|
|
119
|
-
#
|
|
120
|
-
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
|
|
121
|
-
AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
|
|
122
|
-
[VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
|
|
123
|
-
done
|
|
124
|
-
FLAGS="$ac_save_[]FLAGS"
|
|
125
|
-
AC_LANG_POP([C++])
|
|
126
|
-
])
|
|
127
|
-
case ".$VAR" in
|
|
128
|
-
.ok|.ok,*) m4_ifvaln($3,$3) ;;
|
|
129
|
-
.|.no|.no,*) m4_ifvaln($4,$4,[m4_ifval($2,[
|
|
130
|
-
AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $2"])
|
|
131
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $2"])]) ;;
|
|
132
|
-
*) m4_ifvaln($3,$3,[
|
|
133
|
-
if echo " $[]m4_ifval($1,$1,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
|
|
134
|
-
then AC_RUN_LOG([: m4_ifval($1,$1,FLAGS) does contain $VAR])
|
|
135
|
-
else AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"])
|
|
136
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"
|
|
137
|
-
fi ]) ;;
|
|
138
|
-
esac
|
|
139
|
-
AS_VAR_POPDEF([VAR])dnl
|
|
140
|
-
AS_VAR_POPDEF([FLAGS])dnl
|
|
141
|
-
])
|
|
142
|
-
|
|
143
|
-
dnl the only difference - the LANG selection... and the default FLAGS
|
|
144
|
-
|
|
145
|
-
AC_DEFUN([AX_FCFLAGS_WARN_ALL],[dnl
|
|
146
|
-
AS_VAR_PUSHDEF([FLAGS],[FCFLAGS])dnl
|
|
147
|
-
AS_VAR_PUSHDEF([VAR],[ax_cv_fcflags_warn_all])dnl
|
|
148
|
-
AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for maximum warnings],
|
|
149
|
-
VAR,[VAR="no, unknown"
|
|
150
|
-
AC_LANG_PUSH([Fortran])
|
|
151
|
-
ac_save_[]FLAGS="$[]FLAGS"
|
|
68
|
+
ac_save_[]FLAGS="$[]FLAGS"
|
|
152
69
|
for ac_arg dnl
|
|
153
70
|
in "-warn all % -warn all" dnl Intel
|
|
154
71
|
"-pedantic % -Wall" dnl GCC
|
|
@@ -164,25 +81,17 @@ do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
|
|
|
164
81
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
|
|
165
82
|
[VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
|
|
166
83
|
done
|
|
167
|
-
|
|
168
|
-
AC_LANG_POP([Fortran])
|
|
84
|
+
FLAGS="$ac_save_[]FLAGS"
|
|
169
85
|
])
|
|
86
|
+
AS_VAR_POPDEF([FLAGS])dnl
|
|
87
|
+
AC_REQUIRE([AX_APPEND_FLAG])
|
|
170
88
|
case ".$VAR" in
|
|
171
89
|
.ok|.ok,*) m4_ifvaln($3,$3) ;;
|
|
172
|
-
.|.no|.no,*)
|
|
173
|
-
|
|
174
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $2"])]) ;;
|
|
175
|
-
*) m4_ifvaln($3,$3,[
|
|
176
|
-
if echo " $[]m4_ifval($1,$1,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
|
|
177
|
-
then AC_RUN_LOG([: m4_ifval($1,$1,FLAGS) does contain $VAR])
|
|
178
|
-
else AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"])
|
|
179
|
-
m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"
|
|
180
|
-
fi ]) ;;
|
|
90
|
+
.|.no|.no,*) m4_default($4,[m4_ifval($2,[AX_APPEND_FLAG([$2], [$1])])]) ;;
|
|
91
|
+
*) m4_default($3,[AX_APPEND_FLAG([$VAR], [$1])]) ;;
|
|
181
92
|
esac
|
|
182
93
|
AS_VAR_POPDEF([VAR])dnl
|
|
183
|
-
|
|
184
|
-
])
|
|
185
|
-
|
|
94
|
+
])dnl AX_FLAGS_WARN_ALL
|
|
186
95
|
dnl implementation tactics:
|
|
187
96
|
dnl the for-argument contains a list of options. The first part of
|
|
188
97
|
dnl these does only exist to detect the compiler - usually it is
|
|
@@ -193,3 +102,21 @@ dnl like -Woption or -Xoption as they think of it is a pass-through
|
|
|
193
102
|
dnl to later compile stages or something. The "%" is used as a
|
|
194
103
|
dnl delimiter. A non-option comment can be given after "%%" marks
|
|
195
104
|
dnl which will be shown but not added to the respective C/CXXFLAGS.
|
|
105
|
+
|
|
106
|
+
AC_DEFUN([AX_CFLAGS_WARN_ALL],[dnl
|
|
107
|
+
AC_LANG_PUSH([C])
|
|
108
|
+
AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
|
|
109
|
+
AC_LANG_POP([C])
|
|
110
|
+
])
|
|
111
|
+
|
|
112
|
+
AC_DEFUN([AX_CXXFLAGS_WARN_ALL],[dnl
|
|
113
|
+
AC_LANG_PUSH([C++])
|
|
114
|
+
AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
|
|
115
|
+
AC_LANG_POP([C++])
|
|
116
|
+
])
|
|
117
|
+
|
|
118
|
+
AC_DEFUN([AX_FCFLAGS_WARN_ALL],[dnl
|
|
119
|
+
AC_LANG_PUSH([Fortran])
|
|
120
|
+
AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
|
|
121
|
+
AC_LANG_POP([Fortran])
|
|
122
|
+
])
|
|
@@ -1,24 +1,31 @@
|
|
|
1
1
|
# ===========================================================================
|
|
2
|
-
#
|
|
2
|
+
# http://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
|
|
3
3
|
# ===========================================================================
|
|
4
4
|
#
|
|
5
5
|
# SYNOPSIS
|
|
6
6
|
#
|
|
7
|
-
#
|
|
7
|
+
# AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS])
|
|
8
8
|
#
|
|
9
9
|
# DESCRIPTION
|
|
10
10
|
#
|
|
11
|
-
# Check whether the given
|
|
12
|
-
#
|
|
13
|
-
# ignored.)
|
|
11
|
+
# Check whether the given FLAG works with the current language's compiler
|
|
12
|
+
# or gives an error. (Warnings, however, are ignored)
|
|
14
13
|
#
|
|
15
14
|
# ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on
|
|
16
15
|
# success/failure.
|
|
17
16
|
#
|
|
17
|
+
# If EXTRA-FLAGS is defined, it is added to the current language's default
|
|
18
|
+
# flags (e.g. CFLAGS) when the check is done. The check is thus made with
|
|
19
|
+
# the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to
|
|
20
|
+
# force the compiler to issue an error when a bad flag is given.
|
|
21
|
+
#
|
|
22
|
+
# NOTE: Implementation based on AX_CFLAGS_GCC_OPTION. Please keep this
|
|
23
|
+
# macro in sync with AX_CHECK_{PREPROC,LINK}_FLAG.
|
|
24
|
+
#
|
|
18
25
|
# LICENSE
|
|
19
26
|
#
|
|
20
|
-
# Copyright (c)
|
|
21
|
-
# Copyright (c)
|
|
27
|
+
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
|
28
|
+
# Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
|
|
22
29
|
#
|
|
23
30
|
# This program is free software: you can redistribute it and/or modify it
|
|
24
31
|
# under the terms of the GNU General Public License as published by the
|
|
@@ -46,31 +53,20 @@
|
|
|
46
53
|
# modified version of the Autoconf Macro, you may extend this special
|
|
47
54
|
# exception to the GPL to apply to your modified version as well.
|
|
48
55
|
|
|
49
|
-
#serial
|
|
56
|
+
#serial 2
|
|
50
57
|
|
|
51
|
-
AC_DEFUN([
|
|
52
|
-
[AC_PREREQ(2.59)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
[
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
[
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=yes,
|
|
67
|
-
eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=no)
|
|
68
|
-
_AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS])
|
|
69
|
-
eval ax_check_compiler_flags=$AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])
|
|
70
|
-
AC_MSG_RESULT($ax_check_compiler_flags)
|
|
71
|
-
if test "x$ax_check_compiler_flags" = xyes; then
|
|
72
|
-
m4_default([$2], :)
|
|
73
|
-
else
|
|
74
|
-
m4_default([$3], :)
|
|
75
|
-
fi
|
|
76
|
-
])dnl AX_CHECK_COMPILER_FLAGS
|
|
58
|
+
AC_DEFUN([AX_CHECK_COMPILE_FLAG],
|
|
59
|
+
[AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
|
|
60
|
+
AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
|
|
61
|
+
AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
|
|
62
|
+
ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
|
|
63
|
+
_AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
|
|
64
|
+
AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
|
|
65
|
+
[AS_VAR_SET(CACHEVAR,[yes])],
|
|
66
|
+
[AS_VAR_SET(CACHEVAR,[no])])
|
|
67
|
+
_AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
|
|
68
|
+
AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes],
|
|
69
|
+
[m4_default([$2], :)],
|
|
70
|
+
[m4_default([$3], :)])
|
|
71
|
+
AS_VAR_POPDEF([CACHEVAR])dnl
|
|
72
|
+
])dnl AX_CHECK_COMPILE_FLAGS
|
|
@@ -44,20 +44,41 @@
|
|
|
44
44
|
# modified version of the Autoconf Macro, you may extend this special
|
|
45
45
|
# exception to the GPL to apply to your modified version as well.
|
|
46
46
|
|
|
47
|
-
#serial
|
|
47
|
+
#serial 11
|
|
48
48
|
|
|
49
49
|
AC_DEFUN([AX_COMPILER_VENDOR],
|
|
50
|
-
[
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
50
|
+
[AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
|
|
51
|
+
[# note: don't check for gcc first since some other compilers define __GNUC__
|
|
52
|
+
vendors="intel: __ICC,__ECC,__INTEL_COMPILER
|
|
53
|
+
ibm: __xlc__,__xlC__,__IBMC__,__IBMCPP__
|
|
54
|
+
pathscale: __PATHCC__,__PATHSCALE__
|
|
55
|
+
clang: __clang__
|
|
56
|
+
gnu: __GNUC__
|
|
57
|
+
sun: __SUNPRO_C,__SUNPRO_CC
|
|
58
|
+
hp: __HP_cc,__HP_aCC
|
|
59
|
+
dec: __DECC,__DECCXX,__DECC_VER,__DECCXX_VER
|
|
60
|
+
borland: __BORLANDC__,__TURBOC__
|
|
61
|
+
comeau: __COMO__
|
|
62
|
+
cray: _CRAYC
|
|
63
|
+
kai: __KCC
|
|
64
|
+
lcc: __LCC__
|
|
65
|
+
sgi: __sgi,sgi
|
|
66
|
+
microsoft: _MSC_VER
|
|
67
|
+
metrowerks: __MWERKS__
|
|
68
|
+
watcom: __WATCOMC__
|
|
69
|
+
portland: __PGI
|
|
70
|
+
unknown: UNKNOWN"
|
|
71
|
+
for ventest in $vendors; do
|
|
72
|
+
case $ventest in
|
|
73
|
+
*:) vendor=$ventest; continue ;;
|
|
74
|
+
*) vencpp="defined("`echo $ventest | sed 's/,/) || defined(/g'`")" ;;
|
|
75
|
+
esac
|
|
56
76
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[
|
|
57
|
-
#if !($vencpp)
|
|
58
|
-
|
|
59
|
-
#endif
|
|
60
|
-
])], [
|
|
77
|
+
#if !($vencpp)
|
|
78
|
+
thisisanerror;
|
|
79
|
+
#endif
|
|
80
|
+
])], [break])
|
|
61
81
|
done
|
|
82
|
+
ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor=`echo $vendor | cut -d: -f1`
|
|
62
83
|
])
|
|
63
84
|
])
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
# modified version of the Autoconf Macro, you may extend this special
|
|
80
80
|
# exception to the GPL to apply to your modified version as well.
|
|
81
81
|
|
|
82
|
-
#serial
|
|
82
|
+
#serial 23
|
|
83
83
|
|
|
84
84
|
AC_DEFUN([AX_ENABLE_BUILDDIR],[
|
|
85
85
|
AC_REQUIRE([AC_CANONICAL_HOST])[]dnl
|
|
@@ -121,7 +121,8 @@ if test ".$srcdir" = ".." ; then
|
|
|
121
121
|
test -f $srcdir/$cache_file && mv $srcdir/$cache_file .
|
|
122
122
|
AC_MSG_RESULT(....exec $SHELL $srcdir/[$]0 "--srcdir=$srcdir" "--enable-builddir=$SUB" ${1+"[$]@"})
|
|
123
123
|
case "[$]0" in # restart
|
|
124
|
-
[
|
|
124
|
+
[[\\/]]* | ?:[[\\/]]*) # Asbolute name
|
|
125
|
+
eval $SHELL "'[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;;
|
|
125
126
|
*) eval $SHELL "'$srcdir/[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;;
|
|
126
127
|
esac ; exit $?
|
|
127
128
|
fi
|
|
@@ -204,7 +205,7 @@ a\\
|
|
|
204
205
|
; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
|
|
205
206
|
; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
|
|
206
207
|
; use=$x basename "\$\@" _ALL $x; n=$x echo \$\$BUILD | wc -w $x \\\\\\
|
|
207
|
-
; echo "MAKE \$\$HOST : \$\$n * \$\@"; if test "\$\$n"
|
|
208
|
+
; echo "MAKE \$\$HOST : \$\$n * \$\@"; if test "\$\$n" -eq "0" ; then : \\\\\\
|
|
208
209
|
; BUILD=$x grep "^####.*|" Makefile |tail -1| sed -e 's/.*|//' $x ; fi \\\\\\
|
|
209
210
|
; test ".\$\$BUILD" = "." && BUILD="." \\\\\\
|
|
210
211
|
; test "\$\$use" = "\$\@" && BUILD=$x echo "\$\$BUILD" | tail -1 $x \\\\\\
|
|
@@ -217,7 +218,7 @@ dnl special rule add-on: "dist" copies the tarball to $(PUB). (source tree)
|
|
|
217
218
|
; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
|
|
218
219
|
; found=$x echo \$\$BUILD | wc -w $x \\\\\\
|
|
219
220
|
; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).tar.*" \\\\\\
|
|
220
|
-
; if test "\$\$found"
|
|
221
|
+
; if test "\$\$found" -eq "0" ; then : \\\\\\
|
|
221
222
|
; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\
|
|
222
223
|
; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
|
|
223
224
|
; for f in \$\$i/\$(PACKAGE)-\$(VERSION).tar.* \\\\\\
|
|
@@ -229,7 +230,7 @@ dnl special rule add-on: "dist-foo" copies all the archives to $(PUB). (source t
|
|
|
229
230
|
; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
|
|
230
231
|
; found=$x echo \$\$BUILD | wc -w $x \\\\\\
|
|
231
232
|
; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).*" \\\\\\
|
|
232
|
-
; if test "\$\$found"
|
|
233
|
+
; if test "\$\$found" -eq "0" ; then : \\\\\\
|
|
233
234
|
; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\
|
|
234
235
|
; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
|
|
235
236
|
; for f in \$\$i/\$(PACKAGE)-\$(VERSION).* \\\\\\
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# This macro tries to guess the "native" arch corresponding to the target
|
|
12
12
|
# architecture for use with gcc's -march=arch or -mtune=arch flags. If
|
|
13
13
|
# found, the cache variable $ax_cv_gcc_archflag is set to this flag and
|
|
14
|
-
# ACTION-SUCCESS is executed; otherwise $ax_cv_gcc_archflag is
|
|
14
|
+
# ACTION-SUCCESS is executed; otherwise $ax_cv_gcc_archflag is set to
|
|
15
15
|
# "unknown" and ACTION-FAILURE is executed. The default ACTION-SUCCESS is
|
|
16
16
|
# to add $ax_cv_gcc_archflag to the end of $CFLAGS.
|
|
17
17
|
#
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
# When cross-compiling, or if $CC is not gcc, then ACTION-FAILURE is
|
|
28
28
|
# called unless the user specified --with-gcc-arch manually.
|
|
29
29
|
#
|
|
30
|
-
# Requires macros:
|
|
30
|
+
# Requires macros: AX_CHECK_COMPILE_FLAG, AX_GCC_X86_CPUID
|
|
31
31
|
#
|
|
32
32
|
# (The main emphasis here is on recent CPUs, on the principle that doing
|
|
33
33
|
# high-performance computing on old hardware is uncommon.)
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
#
|
|
37
37
|
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
|
38
38
|
# Copyright (c) 2008 Matteo Frigo
|
|
39
|
+
# Copyright (c) 2012 Tsukasa Oi
|
|
39
40
|
#
|
|
40
41
|
# This program is free software: you can redistribute it and/or modify it
|
|
41
42
|
# under the terms of the GNU General Public License as published by the
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
# modified version of the Autoconf Macro, you may extend this special
|
|
64
65
|
# exception to the GPL to apply to your modified version as well.
|
|
65
66
|
|
|
66
|
-
#serial
|
|
67
|
+
#serial 11
|
|
67
68
|
|
|
68
69
|
AC_DEFUN([AX_GCC_ARCHFLAG],
|
|
69
70
|
[AC_REQUIRE([AC_PROG_CC])
|
|
@@ -84,7 +85,7 @@ if test "x$ax_gcc_arch" = xyes; then
|
|
|
84
85
|
ax_gcc_arch=""
|
|
85
86
|
if test "$cross_compiling" = no; then
|
|
86
87
|
case $host_cpu in
|
|
87
|
-
i[[3456]]86*|x86_64*) # use cpuid codes
|
|
88
|
+
i[[3456]]86*|x86_64*) # use cpuid codes
|
|
88
89
|
AX_GCC_X86_CPUID(0)
|
|
89
90
|
AX_GCC_X86_CPUID(1)
|
|
90
91
|
case $ax_cv_gcc_x86_cpuid_0 in
|
|
@@ -92,18 +93,24 @@ case $host_cpu in
|
|
|
92
93
|
case $ax_cv_gcc_x86_cpuid_1 in
|
|
93
94
|
*5[[48]]?:*:*:*) ax_gcc_arch="pentium-mmx pentium" ;;
|
|
94
95
|
*5??:*:*:*) ax_gcc_arch=pentium ;;
|
|
95
|
-
*6[[3456]]?:*:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
|
|
96
|
-
*6a?:*[[01]]:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
|
|
97
|
-
*6a?:*[[234]]:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
|
|
98
|
-
*6[[
|
|
99
|
-
*6[[78b]]?:*:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
|
|
100
|
-
*
|
|
101
|
-
|
|
96
|
+
*0?6[[3456]]?:*:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
|
|
97
|
+
*0?6a?:*[[01]]:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
|
|
98
|
+
*0?6a?:*[[234]]:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
|
|
99
|
+
*0?6[[9de]]?:*:*:*) ax_gcc_arch="pentium-m pentium3 pentiumpro" ;;
|
|
100
|
+
*0?6[[78b]]?:*:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
|
|
101
|
+
*0?6f?:*:*:*|*1?66?:*:*:*) ax_gcc_arch="core2 pentium-m pentium3 pentiumpro" ;;
|
|
102
|
+
*1?6[[7d]]?:*:*:*) ax_gcc_arch="penryn core2 pentium-m pentium3 pentiumpro" ;;
|
|
103
|
+
*1?6[[aef]]?:*:*:*|*2?6[[5cef]]?:*:*:*) ax_gcc_arch="corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
|
104
|
+
*1?6c?:*:*:*|*[[23]]?66?:*:*:*) ax_gcc_arch="atom core2 pentium-m pentium3 pentiumpro" ;;
|
|
105
|
+
*2?6[[ad]]?:*:*:*) ax_gcc_arch="corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
|
106
|
+
*0?6??:*:*:*) ax_gcc_arch=pentiumpro ;;
|
|
107
|
+
*6??:*:*:*) ax_gcc_arch="core2 pentiumpro" ;;
|
|
108
|
+
?000?f3[[347]]:*:*:*|?000?f4[1347]:*:*:*|?000?f6?:*:*:*)
|
|
102
109
|
case $host_cpu in
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
110
|
+
x86_64*) ax_gcc_arch="nocona pentium4 pentiumpro" ;;
|
|
111
|
+
*) ax_gcc_arch="prescott pentium4 pentiumpro" ;;
|
|
112
|
+
esac ;;
|
|
113
|
+
?000?f??:*:*:*) ax_gcc_arch="pentium4 pentiumpro";;
|
|
107
114
|
esac ;;
|
|
108
115
|
*:68747541:*:*) # AMD
|
|
109
116
|
case $ax_cv_gcc_x86_cpuid_1 in
|
|
@@ -121,10 +128,13 @@ case $host_cpu in
|
|
|
121
128
|
ax_gcc_arch="athlon-xp athlon-4 athlon k7" ;;
|
|
122
129
|
*) ax_gcc_arch="athlon-4 athlon k7" ;;
|
|
123
130
|
esac ;;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
131
|
+
?00??f[[4cef8b]]?:*:*:*) ax_gcc_arch="athlon64 k8" ;;
|
|
132
|
+
?00??f5?:*:*:*) ax_gcc_arch="opteron k8" ;;
|
|
133
|
+
?00??f7?:*:*:*) ax_gcc_arch="athlon-fx opteron k8" ;;
|
|
134
|
+
?00??f??:*:*:*) ax_gcc_arch="k8" ;;
|
|
135
|
+
?05??f??:*:*:*) ax_gcc_arch="btver1 amdfam10 k8" ;;
|
|
136
|
+
?06??f??:*:*:*) ax_gcc_arch="bdver1 amdfam10 k8" ;;
|
|
137
|
+
*f??:*:*:*) ax_gcc_arch="amdfam10 k8" ;;
|
|
128
138
|
esac ;;
|
|
129
139
|
*:746e6543:*:*) # IDT
|
|
130
140
|
case $ax_cv_gcc_x86_cpuid_1 in
|
|
@@ -145,7 +155,7 @@ case $host_cpu in
|
|
|
145
155
|
sparc*)
|
|
146
156
|
AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/])
|
|
147
157
|
cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null`
|
|
148
|
-
cputype=`echo "$cputype" | tr -d ' -' |tr $as_cr_LETTERS $as_cr_letters`
|
|
158
|
+
cputype=`echo "$cputype" | tr -d ' -' | sed 's/SPARCIIi/SPARCII/' | tr $as_cr_LETTERS $as_cr_letters`
|
|
149
159
|
case $cputype in
|
|
150
160
|
*ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;;
|
|
151
161
|
*ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;;
|
|
@@ -197,7 +207,7 @@ for arch in $ax_gcc_arch; do
|
|
|
197
207
|
flags="-march=$arch -mcpu=$arch -m$arch"
|
|
198
208
|
fi
|
|
199
209
|
for flag in $flags; do
|
|
200
|
-
|
|
210
|
+
AX_CHECK_COMPILE_FLAG($flag, [ax_cv_gcc_archflag=$flag; break])
|
|
201
211
|
done
|
|
202
212
|
test "x$ax_cv_gcc_archflag" = xunknown || break
|
|
203
213
|
done
|