mirror of
https://git.vladimir.cc/vladimir/ewsdr.git
synced 2026-08-25 19:45:09 +00:00
fix macOS build
This commit is contained in:
+3
-2
@@ -990,12 +990,13 @@ begin
|
||||
FLastError := '';
|
||||
if FInitialized then Exit;
|
||||
|
||||
if not Assigned(@OpenChannel) then
|
||||
if not Assigned(@OpenChannel) or not Assigned(@XCreateAnalyzer) or
|
||||
not Assigned(@SetAnalyzer) then
|
||||
begin
|
||||
FInitialized := False;
|
||||
DllPath := IncludeTrailingPathDelimiter(ExtractFilePath(ParamStr(0))) + WDSP_LIB;
|
||||
if FileExists(DllPath) then
|
||||
FLastError := Format('Symbols from %s are not resolved. Check architecture (x64/x86) and dependencies.', [DllPath])
|
||||
FLastError := Format('Symbols from %s are not resolved. Check architecture and library version (need WDSP with analyzer API).', [DllPath])
|
||||
else
|
||||
FLastError := Format('WDSP library not found: %s', [DllPath]);
|
||||
Exit;
|
||||
|
||||
Reference in New Issue
Block a user