Edit

kc3-lang/libffi/patches/sunstudio

Branch :

  • Show log

    Commit

  • Author : Anthony Green
    Date : 2010-01-15 09:48:33
    Hash : 0739e7dc
    Message : Add x86 Sun Studio compiler support

  • patches/sunstudio
  • Index: libffi/ChangeLog.libffi
    ===================================================================
    --- libffi.orig/ChangeLog.libffi
    +++ libffi/ChangeLog.libffi
    @@ -1,3 +1,8 @@
    +2010-01-15  Oliver Kiddle  <okiddle@yahoo.co.uk>
    +
    +	* src/x86/ffitarget.h (ffi_abi): Check for __i386 and __amd64 for
    +	Sun Studio compiler compatibility. 
    +
     2010-01-12  Conrad Irwin <conrad.irwin@gmail.com>
     
     	* doc/libffi.texi: Add closure example.
    Index: libffi/src/x86/ffitarget.h
    ===================================================================
    --- libffi.orig/src/x86/ffitarget.h
    +++ libffi/src/x86/ffitarget.h
    @@ -1,5 +1,5 @@
     /* -----------------------------------------------------------------*-C-*-
    -   ffitarget.h - Copyright (c) 1996-2003  Red Hat, Inc.
    +   ffitarget.h - Copyright (c) 1996-2003, 2010  Red Hat, Inc.
        Copyright (C) 2008  Free Software Foundation, Inc.
     
        Target configuration macros for x86 and x86-64.
    @@ -74,10 +74,10 @@ typedef enum ffi_abi {
     #else
     
       /* ---- Intel x86 and AMD x86-64 - */
    -#if !defined(X86_WIN32) && (defined(__i386__) || defined(__x86_64__))
    +#if !defined(X86_WIN32) && (defined(__i386__) || defined(__x86_64__) || defined(__i386) || defined(__amd64))
       FFI_SYSV,
       FFI_UNIX64,   /* Unix variants all use the same ABI for x86-64  */
    -#ifdef __i386__
    +#if defined(__i386__) || defined(__i386)
       FFI_DEFAULT_ABI = FFI_SYSV,
     #else
       FFI_DEFAULT_ABI = FFI_UNIX64,