Add config for linux/ppc64.

This commit is contained in:
Juan Francisco Cantero Hurtado 2015-10-19 14:53:47 +02:00 committed by Matthew Flatt
parent e803a3c15e
commit e957a7d655

View File

@ -173,9 +173,16 @@
# define MZ_TRY_EXTFLONUMS # define MZ_TRY_EXTFLONUMS
# define ASM_DBLPREC_CONTROL_87 # define ASM_DBLPREC_CONTROL_87
# endif # endif
# if defined(__powerpc__) # if defined(__powerpc__) && !defined(__powerpc64__)
# define SCHEME_PLATFORM_LIBRARY_SUBPATH "ppc-"SPLS_LINUX # define SCHEME_PLATFORM_LIBRARY_SUBPATH "ppc-"SPLS_LINUX
# endif # endif
# if defined(__powerpc64__)
# if defined(__LITTLE_ENDIAN__)
# define SCHEME_PLATFORM_LIBRARY_SUBPATH "ppc64le-"SPLS_LINUX
# else
# define SCHEME_PLATFORM_LIBRARY_SUBPATH "ppc64-"SPLS_LINUX
# endif
# endif
# if defined(__mc68000__) # if defined(__mc68000__)
# define SCHEME_PLATFORM_LIBRARY_SUBPATH "m68k-"SPLS_LINUX # define SCHEME_PLATFORM_LIBRARY_SUBPATH "m68k-"SPLS_LINUX
# endif # endif
@ -247,7 +254,7 @@
# define MZ_JIT_USE_MPROTECT # define MZ_JIT_USE_MPROTECT
# define MZ_USE_DWARF_LIBUNWIND # define MZ_USE_DWARF_LIBUNWIND
#endif #endif
#if defined(__powerpc__) #if defined(__powerpc__) && !defined(__powerpc64__)
# define MZ_USE_JIT_PPC # define MZ_USE_JIT_PPC
#endif #endif
# if defined(__arm__) # if defined(__arm__)