diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 06:27:19 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 06:27:19 +0000 |
commit | a7eb54c25f3543197b383b9ea5aaf50ebd746f69 (patch) | |
tree | 87d6f21fc7a6a2b1391da0c6847d4ad608f473a5 /code/qcommon | |
parent | 354953a21db9a9d4a6661a599d3956d693428816 (diff) | |
download | ioquake3-aero-a7eb54c25f3543197b383b9ea5aaf50ebd746f69.tar.gz ioquake3-aero-a7eb54c25f3543197b383b9ea5aaf50ebd746f69.zip |
Add x86_64 ARCH_STRING for FreeBSD.
Partially fixes Bugzilla #4271.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1623 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/q_platform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/qcommon/q_platform.h b/code/qcommon/q_platform.h index ed5d907..b744205 100644 --- a/code/qcommon/q_platform.h +++ b/code/qcommon/q_platform.h @@ -199,6 +199,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #ifdef __i386__ #define ARCH_STRING "i386" +#elif defined __amd64__ +#define ARCH_STRING "x86_64" #elif defined __axp__ #define ARCH_STRING "alpha" #endif |