|
发表于 2025-1-12 21:32:13
|
显示全部楼层
The 2023 version starts compiling slowly and always freezes for several seconds to over 10 seconds. It can run without errors, but it affects efficiency. This should be a license format issue and may require a license with a legal SIGN field.
The execution delay problem is not due to the license file issue. It is because the binary fetch was only processed for l_pubkey_verify and not for scl_lc_checkout, which only prevents checksum errors, causing snpslmd to proceed with license checkout through reread processing during execution. This is because it checks out using the very last condition among various checkout conditions. This is due to continuous repeated comparisons, and despite no specific errors (because l_pubkey_verify was fetched), it fails to receive the return value for the scl_lc_checkout condition.
Therefore, even if the return value for the scl_lc_checkout condition is not received, if there is no error in l_pubkey_verify, time is consumed while comparing the checkout mode conditions, and it waits until a connection failure is confirmed after attempting to connect to the internet and being blocked.
Consequently, if scl_lc_checkout is fetched, it executes immediately. Additionally, processing this eliminates the need to run the daemon. |
|