mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Support building for Windows on 64-bit Arm (#2355)
Support to build for Windows on Arm.
This commit is contained in:
committed by
GitHub
parent
4115d04ae0
commit
aef863afa2
@@ -53,17 +53,17 @@
|
||||
|
||||
#include "basic_test_conversions.h"
|
||||
|
||||
#if defined(_WIN32)
|
||||
#if defined(_M_IX86) || defined(_M_X64)
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#else // !_WIN32
|
||||
#else
|
||||
#if defined(__SSE__)
|
||||
#include <xmmintrin.h>
|
||||
#endif
|
||||
#if defined(__SSE2__)
|
||||
#include <emmintrin.h>
|
||||
#endif
|
||||
#endif // _WIN32
|
||||
#endif
|
||||
|
||||
cl_context gContext = NULL;
|
||||
cl_command_queue gQueue = NULL;
|
||||
|
||||
Reference in New Issue
Block a user