Merge pull request #15 from DrItanium/ia64

Added Itanium Support
This commit is contained in:
Daniel Gibson 2012-12-09 08:32:19 -08:00
commit 1f71e22486
4 changed files with 10 additions and 1 deletions

View file

@ -99,7 +99,7 @@ endif
# Refuse all other platforms as a firewall against PEBKAC
# (You'll need some #ifdef for your unsupported plattform!)
ifeq ($(findstring $(ARCH), i386 x86_64 sparc64),)
ifeq ($(findstring $(ARCH), i386 x86_64 sparc64 ia64),)
$(error arch $(ARCH) is currently not supported)
endif

View file

@ -29,6 +29,11 @@
#ifdef __x86_64__
#define INT long int
#elif defined __ia64__
/* I will have to double check this but if my experience in adding CLIPS to
* LLVM is any sign then long int will fail horribly but long long will work on
* ia64. I'll double check this on my zx6000. */
#define INT long long
#else
#define INT int
#endif

View file

@ -57,6 +57,8 @@
#define CPUSTRING "amd64"
#elif defined __sparc__
#define CPUSTRING "sparc64"
#elif defined __ia64__
#define CPUSTRING "ia64"
#else
#define CPUSTRING "Unknown"
#endif

View file

@ -104,6 +104,8 @@
#define ARCH "amd64"
#elif defined(__sparc__)
#define ARCH "sparc64"
#elif defined(__ia64__)
#define ARCH "ia64"
#else
#define ARCH "unknown"
#endif