mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #260 from N00byKing/3535
Implement Pull #3535 from citra: CMake: Set EMU_ARCH_BITS in CMakeLists.txt
This commit is contained in:
		
						commit
						2ab021da14
					
				@ -160,6 +160,9 @@ set_property(DIRECTORY APPEND PROPERTY
 | 
				
			|||||||
    COMPILE_DEFINITIONS $<$<CONFIG:Debug>:_DEBUG> $<$<NOT:$<CONFIG:Debug>>:NDEBUG>)
 | 
					    COMPILE_DEFINITIONS $<$<CONFIG:Debug>:_DEBUG> $<$<NOT:$<CONFIG:Debug>>:NDEBUG>)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					math(EXPR EMU_ARCH_BITS ${CMAKE_SIZEOF_VOID_P}*8)
 | 
				
			||||||
 | 
					add_definitions(-DEMU_ARCH_BITS=${EMU_ARCH_BITS})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# System imported libraries
 | 
					# System imported libraries
 | 
				
			||||||
# ======================
 | 
					# ======================
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -58,7 +58,6 @@ add_library(common STATIC
 | 
				
			|||||||
    misc.cpp
 | 
					    misc.cpp
 | 
				
			||||||
    param_package.cpp
 | 
					    param_package.cpp
 | 
				
			||||||
    param_package.h
 | 
					    param_package.h
 | 
				
			||||||
    platform.h
 | 
					 | 
				
			||||||
    quaternion.h
 | 
					    quaternion.h
 | 
				
			||||||
    scm_rev.cpp
 | 
					    scm_rev.cpp
 | 
				
			||||||
    scm_rev.h
 | 
					    scm_rev.h
 | 
				
			||||||
 | 
				
			|||||||
@ -1,34 +0,0 @@
 | 
				
			|||||||
/**
 | 
					 | 
				
			||||||
 * Copyright (C) 2005-2012 Gekko Emulator
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * @file    platform.h
 | 
					 | 
				
			||||||
 * @author  ShizZy <shizzy247@gmail.com>
 | 
					 | 
				
			||||||
 * @date    2012-02-11
 | 
					 | 
				
			||||||
 * @brief   Platform detection macros for portable compilation
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * @section LICENSE
 | 
					 | 
				
			||||||
 * This program is free software; you can redistribute it and/or
 | 
					 | 
				
			||||||
 * modify it under the terms of the GNU General Public License as
 | 
					 | 
				
			||||||
 * published by the Free Software Foundation; either version 2 of
 | 
					 | 
				
			||||||
 * the License, or (at your option) any later version.
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * This program is distributed in the hope that it will be useful, but
 | 
					 | 
				
			||||||
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 | 
				
			||||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 | 
					 | 
				
			||||||
 * General Public License for more details at
 | 
					 | 
				
			||||||
 * http://www.gnu.org/copyleft/gpl.html
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * Official project repository can be found at:
 | 
					 | 
				
			||||||
 * http://code.google.com/p/gekko-gc-emu/
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
 | 
					 | 
				
			||||||
// Platform detection
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#if defined(ARCHITECTURE_x86_64) || defined(__aarch64__)
 | 
					 | 
				
			||||||
#define EMU_ARCH_BITS 64
 | 
					 | 
				
			||||||
#elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM)
 | 
					 | 
				
			||||||
#define EMU_ARCH_BITS 32
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
@ -18,7 +18,6 @@
 | 
				
			|||||||
#include "common/logging/log.h"
 | 
					#include "common/logging/log.h"
 | 
				
			||||||
#include "common/logging/text_formatter.h"
 | 
					#include "common/logging/text_formatter.h"
 | 
				
			||||||
#include "common/microprofile.h"
 | 
					#include "common/microprofile.h"
 | 
				
			||||||
#include "common/platform.h"
 | 
					 | 
				
			||||||
#include "common/scm_rev.h"
 | 
					#include "common/scm_rev.h"
 | 
				
			||||||
#include "common/scope_exit.h"
 | 
					#include "common/scope_exit.h"
 | 
				
			||||||
#include "common/string_util.h"
 | 
					#include "common/string_util.h"
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user