aboutsummaryrefslogtreecommitdiffstats
path: root/arch.h
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2017-04-29 00:30:38 +0200
committerGravatar Christian Hesse <mail@eworm.de>2017-04-29 00:34:01 +0200
commit984f4ad69f9b7bad5dc54472dd374fd7edc5a5a9 (patch)
treeae652fc00e7217c7b77beb722893c4ad60f7e747 /arch.h
parent24ab5936629e735ff551f060a894fd93ad91470e (diff)
downloadpaccache-master.tar.gz
paccache-master.tar.zst
This project has been renamed to `pacredir`. Please...HEADmaster
... get it from https://github.com/eworm-de/pacredir#pacredir or https://git.eworm.de/cgit.cgi/pacredir/about/
Diffstat (limited to 'arch.h')
-rw-r--r--arch.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/arch.h b/arch.h
deleted file mode 100644
index 57bced2..0000000
--- a/arch.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * (C) 2013-2017 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: