|
Qore Programming Language
0.8.3
|
00001 /* -*- mode: c++; indent-tabs-mode: nil -*- */ 00002 #ifndef _QORE_MACROS_H 00003 #define _QORE_MACROS_H 00004 00005 // include the right assembly macro file for the current architecture 00006 00007 #ifdef __i386 00008 #include <qore/macros-i386.h> 00009 #endif // #ifdef __i386 00010 00011 #ifdef __x86_64 00012 #include <qore/macros-x86_64.h> 00013 #endif // #ifdef __x86_64 00014 00015 #ifdef __sparc 00016 #include <qore/macros-sparc.h> 00017 #endif // #ifdef __sparc 00018 00019 #if defined(__ppc) || defined(__ppc__) 00020 #include <qore/macros-powerpc.h> 00021 #endif // #ifdef __ppc 00022 00023 #ifdef __hppa 00024 #include <qore/macros-parisc.h> 00025 #endif // #ifdef __hppa 00026 00027 #ifdef __ia64 00028 #include <qore/macros-ia64.h> 00029 #endif // #ifdef __ia64 00030 00031 #endif // #ifndef _QORE_MACROS_H 00032