mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 01:01:33 +02:00
Add WasiSharedLibExt
This commit is contained in:
parent
39a3f5a678
commit
2ee0138591
@ -311,6 +311,7 @@ Const
|
||||
RsjExt = '.rsj';
|
||||
LibExt = '.a';
|
||||
SharedLibExt = '.so';
|
||||
WasiSharedLibExt = '';
|
||||
DyLibExt = '.dylib';
|
||||
DLLExt = '.dll';
|
||||
AIXSharedLibExt = '.a';
|
||||
@ -2973,6 +2974,8 @@ begin
|
||||
Result:=LibraryName+DyLibExt
|
||||
else if aOS = Aix then
|
||||
Result:=LibraryName+AIXSharedLibExt
|
||||
else if AOS in [wasip1,wasip1threads,wasip2] then
|
||||
Result:=LibraryName+WasiSharedLibExt
|
||||
else
|
||||
Result:=LibraryName+SharedLibExt;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user