05-27-2020, 06:38 AM
(This post was last modified: 05-27-2020, 06:39 AM by Alexandre Machado.)
In IW 15.2.0 released today, there is a new variable which allows you to bypass the SSE 4.2 compatibility check.
In your DPR File, before running your application just set
Example:
This will allow SSE 4.2 compression to be used regardless of the status obtained via cpuid instruction. You can use it when you are certain that SSE 4.2 is supported.
In your DPR File, before running your application just set
Example:
Code:
begin
IWZLibExAPI.IgnoreSSE42Check := True;
TIWStart.Execute(True);
end.
This will allow SSE 4.2 compression to be used regardless of the status obtained via cpuid instruction. You can use it when you are certain that SSE 4.2 is supported.