Jelajahi Sumber

Solved C3861 __cpuid&__rdtsc identifier not found

error C3861: '__cpuid ': identifier not found
error C3861: '__rdtsc ': identifier not found
Eric-DawnEngine 8 tahun lalu
induk
melakukan
5cf3aa3e7b
1 mengubah file dengan 4 tambahan dan 0 penghapusan
  1. 4 0
      Source/BansheeCore/Source/BsProfilerCPU.cpp

+ 4 - 0
Source/BansheeCore/Source/BsProfilerCPU.cpp

@@ -5,6 +5,10 @@
 #include "BsPlatform.h"
 #include <chrono>
 
+#if BS_COMPILER == BS_COMPILER_MSVC
+	#include <intrin.h>
+#endif
+
 #if BS_COMPILER == BS_COMPILER_GNUC || BS_COMPILER == BS_COMPILER_CLANG
 	#include "cpuid.h"
 #endif