~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to ext/native/base/arch.h

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
// This provides MSVC's arch-detection defines on other platforms as well.
 
4
 
 
5
#ifndef _WIN32
 
6
 
 
7
#if defined(__x86_64__) && !defined(_M_X64)
 
8
#define _M_X64 1
 
9
#endif
 
10
 
 
11
#if defined(__x86__) && !defined(_M_IX86)
 
12
#define _M_IX86 1
 
13
#endif
 
14
 
 
15
// TODO: ARM, ARM64
 
16
 
 
17
#endif