[SYCL] Disable JIT on Windows Debug builds (#22900)
MSVC provides two incompatible build variants for its CRT: release and
debug. On Windows, we build a different SYCL runtime for each variant.
The debug SYCL runtime is not compatible with the SYCL JIT library since
the latter uses the release CRT. This change disables the JIT API in
debug builds to prevent a runtime crash that occurs when the API is
called.
Signed-off-by: Michael Aziz <michael.aziz@intel.com>