|
From: Tim B. <tbi...@us...> - 2006-06-08 17:07:10
|
Update of /cvsroot/aaf/AAF/ref-impl/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17038/ref-impl/include Modified Files: AAFPlatform.h Log Message: Port to PPC Linux. Index: AAFPlatform.h =================================================================== RCS file: /cvsroot/aaf/AAF/ref-impl/include/AAFPlatform.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** AAFPlatform.h 22 Feb 2006 23:42:37 -0000 1.19 --- AAFPlatform.h 8 Jun 2006 17:07:06 -0000 1.20 *************** *** 106,109 **** --- 106,121 ---- /* * Compiler: GNU C++ + * Processor: ppc + * OS: Linux + */ + #elif defined(__GNUC__) && defined(__powerpc__) && defined(__linux__) + #define CPU_POWERPC + #define OS_LINUX + #define OS_UNIX + #define COMPILER_GCC + #define PLATFORM_GCC_POWERPC_LINUX + + /* + * Compiler: GNU C++ * Processor: ppc64 (Apple G5 and IBM Power64) * OS: Linux *************** *** 277,280 **** --- 289,293 ---- #elif defined(PLATFORM_GCC_INTEL_LINUX) \ || defined(PLATFORM_GCC_X86_64_LINUX) \ + || defined(PLATFORM_GCC_POWERPC_LINUX) \ || defined(PLATFORM_GCC_POWERPC64_LINUX) \ || defined(PLATFORM_GCC_POWERPC_DARWIN) \ |