blob: 17301ce03b14b42741d95a4dfde86d838cbdfb55 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* (C) 2013-2014 by Christian Hesse <mail@eworm.de>
*
* This software may be used and distributed according to the terms
* of the GNU General Public License, incorporated herein by reference.
*/
#ifndef _ARCH_H
#define _ARCH_H
/* the binary needs to know its own architecture */
#if defined __x86_64__
# define ARCH "x86_64"
#elif defined __i386__
# define ARCH "i686"
#elif defined __ARM_ARCH_7__
# define ARCH "armv7h"
#elif defined __ARM_ARCH_6__
# if defined __VFP_FP__
# define ARCH "armv6h"
# else
# define ARCH "arm"
# endif
#else
# error Unknown architecture!
#endif
#endif /* _ARCH_H */
// vim: set syntax=c:
|