Fix compile errors when using clang-cl to compile the SDK

Add global define for the clang compiler, and leave non-member 'fltx4' operator functions out when using clang to compile the SDK as these are causing errors. 'fltx4' is a typedef of __m128; not a user defined class, so these operators couldn't be added.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 22:13:58 +02:00
parent 615e0efccd
commit 2740d4edad
2 changed files with 14 additions and 3 deletions

View File

@ -5942,7 +5942,7 @@ inline const fltx4 Normalized3SIMD(const fltx4 vec)
// Some convenience operator overloads, which are just aliasing the functions above.
// Unnecessary on 360, as you already have them from xboxmath.h
// Component wise add
#ifndef COMPILER_GCC
#if !defined (COMPILER_GCC) && !defined (COMPILER_CLANG)
FORCEINLINE fltx4 operator+=(fltx4& a, FLTX4 b)
{

View File

@ -5,9 +5,15 @@
#pragma intrinsic(__rdtsc)
#endif
#define TIER0_DLL_EXPORT
#define COMPILER_MSVC
#ifdef _MSC_VER
#define COMPILER_MSVC 1 // !TODO: Set in CMake!
#endif // _MSC_VER
#ifdef __clang__
#define COMPILER_CLANG 1 // !TODO: Set in CMake!
#endif // __clang__
//-----------------------------------------------------------------------------
// Set up platform defines.
@ -133,6 +139,11 @@
#define GNUC 1
#endif
#ifdef COMPILER_CLANG
#define CLANG 1
#define POSIX_MATH 1
#endif
#if defined( _WIN32 )
#define _WINDOWS 1
#endif