mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:28:05 +02:00
systems_iphonesym -> systems_iphonesim
It's a simulator, not a symbolator
This commit is contained in:
parent
3ba9cf5b4f
commit
e62cf5b9e7
@ -692,7 +692,7 @@ Implementation
|
||||
result:=result+'_osx_dynamic'
|
||||
else if target_info.system in systems_ios then
|
||||
result:='_ios_dynamic'
|
||||
else if target_info.system in systems_iphonesym then
|
||||
else if target_info.system in systems_iphonesim then
|
||||
result:='_iossim_dynamic'
|
||||
else
|
||||
internalerror(2022071010);
|
||||
|
@ -289,11 +289,11 @@ interface
|
||||
|
||||
{ all darwin systems }
|
||||
systems_ios = [system_arm_ios,system_aarch64_ios];
|
||||
systems_iphonesym = [system_i386_iphonesim,system_x86_64_iphonesim];
|
||||
systems_iphonesim = [system_i386_iphonesim,system_x86_64_iphonesim];
|
||||
systems_macosx = [system_powerpc_darwin,system_i386_darwin,
|
||||
system_powerpc64_darwin,system_x86_64_darwin,
|
||||
system_aarch64_darwin];
|
||||
systems_darwin = systems_ios + systems_iphonesym + systems_macosx;
|
||||
systems_darwin = systems_ios + systems_iphonesim + systems_macosx;
|
||||
|
||||
{ all WebAssembly systems }
|
||||
systems_wasm = [system_wasm32_embedded,system_wasm32_wasi];
|
||||
|
Loading…
Reference in New Issue
Block a user