diff options
author | comex | 2015-01-19 19:08:48 -0500 |
---|---|---|
committer | comex | 2015-01-19 19:08:48 -0500 |
commit | 066a1fa86407c80c3b7ef2c3e8c86f1ffbd2929d (patch) | |
tree | 6f5a4abebbcb4cf034ab009a49c167ac95da418e /lib/substitute-internal.h | |
parent | add the required copy of the GPL; clarify license text (diff) | |
download | substitute-066a1fa86407c80c3b7ef2c3e8c86f1ffbd2929d.tar.gz |
some reorganization
Diffstat (limited to 'lib/substitute-internal.h')
-rw-r--r-- | lib/substitute-internal.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/substitute-internal.h b/lib/substitute-internal.h index e89715f..0f3e0ad 100644 --- a/lib/substitute-internal.h +++ b/lib/substitute-internal.h @@ -32,23 +32,24 @@ typedef struct section section_x; #define TARGET_x86_64 #elif defined(FORCE_TARGET_i386) #define TARGET_i386 - #define TARGET_UNSUPPORTED #elif defined(FORCE_TARGET_arm) #define TARGET_arm - #define TARGET_SUPPORTED #elif defined(FORCE_TARGET_arm64) #define TARGET_arm64 - #define TARGET_SUPPORTED #elif defined(__x86_64__) #define TARGET_x86_64 #elif defined(__i386__) #define TARGET_i386 #elif defined(__arm__) #define TARGET_arm - #define TARGET_SUPPORTED #elif defined(__arm64__) #define TARGET_arm64 - #define TARGET_SUPPORTED #else #error target? #endif + +#if defined(TARGET_arm) + #include "arm/misc.h" +#elif defined(TARGET_arm64) + #include "arm64/misc.h" +#endif |