forked from dolphin-emu/dolphin
		
	Our defines were never clear between what meant 64bit or x86_64 This makes a clear cut between bitness and architecture. This commit also has the side effect of bringing up aarch64 compiling support.
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2013 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#include "scmrev.h"
 | 
						|
#include "Common/Common.h"
 | 
						|
 | 
						|
#ifdef _DEBUG
 | 
						|
	#define BUILD_TYPE_STR "Debug "
 | 
						|
#elif defined DEBUGFAST
 | 
						|
	#define BUILD_TYPE_STR "DebugFast "
 | 
						|
#else
 | 
						|
	#define BUILD_TYPE_STR ""
 | 
						|
#endif
 | 
						|
 | 
						|
const char *scm_rev_str = "Dolphin "
 | 
						|
#if !SCM_IS_MASTER
 | 
						|
	"[" SCM_BRANCH_STR "] "
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __INTEL_COMPILER
 | 
						|
	BUILD_TYPE_STR SCM_DESC_STR "-ICC";
 | 
						|
#else
 | 
						|
	BUILD_TYPE_STR SCM_DESC_STR;
 | 
						|
#endif
 | 
						|
 | 
						|
#if _M_X86_64
 | 
						|
#define NP_ARCH "x64"
 | 
						|
#elif _M_ARM_32
 | 
						|
#define NP_ARCH "ARM32"
 | 
						|
#elif _M_ARM_64
 | 
						|
#define NP_ARCH "ARM64"
 | 
						|
#elif _M_X86_32
 | 
						|
#define NP_ARCH "x86"
 | 
						|
#else
 | 
						|
#define NP_ARCH "Unk"
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef _WIN32
 | 
						|
const char *netplay_dolphin_ver = SCM_DESC_STR " W" NP_ARCH;
 | 
						|
#elif __APPLE__
 | 
						|
const char *netplay_dolphin_ver = SCM_DESC_STR " M" NP_ARCH;
 | 
						|
#else
 | 
						|
const char *netplay_dolphin_ver = SCM_DESC_STR " L" NP_ARCH;
 | 
						|
#endif
 | 
						|
 | 
						|
const char *scm_rev_git_str = SCM_REV_STR;
 | 
						|
 | 
						|
const char *scm_desc_str = SCM_DESC_STR;
 | 
						|
const char *scm_branch_str = SCM_BRANCH_STR;
 |