Qore Programming Language
0.8.11
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
include
qore
macros.h
1
/* -*- mode: c++; indent-tabs-mode: nil -*- */
2
#ifndef _QORE_MACROS_H
3
#define _QORE_MACROS_H
4
5
// include the right assembly macro file for the current architecture
6
7
#ifdef __i386
8
#include <qore/macros-i386.h>
9
#endif // #ifdef __i386
10
11
#ifdef __x86_64
12
#include <qore/macros-x86_64.h>
13
#endif // #ifdef __x86_64
14
15
#ifdef __sparc
16
#include <qore/macros-sparc.h>
17
#endif // #ifdef __sparc
18
19
#if defined(__ppc) || defined(__ppc__)
20
#include <qore/macros-powerpc.h>
21
#endif // #ifdef __ppc
22
23
#ifdef __hppa
24
#include <qore/macros-parisc.h>
25
#endif // #ifdef __hppa
26
27
#ifdef __ia64
28
#include <qore/macros-ia64.h>
29
#endif // #ifdef __ia64
30
31
#endif // #ifndef _QORE_MACROS_H
32