Changeset 4939


Ignore:
Timestamp:
Aug 8, 2006, 12:03:15 PM (18 years ago)
Author:
Gary Byers
Message:

Treat X8664 like PPC64 (e.g., use dlfcn) on Darwin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lisp-kernel/pmcl-kernel.c

    r4852 r4939  
    8686;
    8787
    88 #ifdef PPC64
    89 /* Assume that if the OS is new enough to support PPC64, it has
     88#if WORD_SIZE == 64
     89/* Assume that if the OS is new enough to support PPC64/X8664, it has
    9090   a reasonable dlfcn.h
    9191*/
     
    17491749#endif
    17501750#ifdef DARWIN
    1751 #ifdef PPC64
     1751#if defined(PPC64) || defined(X8664)
    17521752  if (handle == NULL) {
    17531753    handle = RTLD_DEFAULT;
Note: See TracChangeset for help on using the changeset viewer.