Changeset 14256


Ignore:
Timestamp:
11/26/12 22:45:48 (11 years ago)
Author:
ehuelsmann
Message:

Patch submitted by Carlos Ungil: Correctly identify the platforms
to support CFFI.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Lisp.java

    r14089 r14256  
    23792379    // Processor architecture
    23802380    if(osArch != null) {
    2381       if (osArch.equals("amd64"))
     2381      if (osArch.equals("amd64") || osArch.equals("x86_64"))
    23822382        featureList = new Cons(Keyword.X86_64, featureList);
    2383       else if (osArch.equals("x86"))
     2383      else if (osArch.equals("x86") || osArch.equals("i386"))
    23842384        featureList = new Cons(Keyword.X86, featureList);
    23852385    }
Note: See TracChangeset for help on using the changeset viewer.