mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-03 08:51:08 +00:00
commit
1f71e22486
4 changed files with 10 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -57,6 +57,8 @@
|
|||
#define CPUSTRING "amd64"
|
||||
#elif defined __sparc__
|
||||
#define CPUSTRING "sparc64"
|
||||
#elif defined __ia64__
|
||||
#define CPUSTRING "ia64"
|
||||
#else
|
||||
#define CPUSTRING "Unknown"
|
||||
#endif
|
||||
|
|
|
@ -104,6 +104,8 @@
|
|||
#define ARCH "amd64"
|
||||
#elif defined(__sparc__)
|
||||
#define ARCH "sparc64"
|
||||
#elif defined(__ia64__)
|
||||
#define ARCH "ia64"
|
||||
#else
|
||||
#define ARCH "unknown"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue