mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 04:19:34 +01:00
* don't specify ARM architecture subtype to linker, because then it will
refuse linking in compiled resources (because those have a generic
cpu subtype)
git-svn-id: trunk@14330 -
This commit is contained in:
parent
877c024d4e
commit
d19eaab7c6
@ -333,7 +333,9 @@ begin
|
|||||||
system_x86_64_darwin:
|
system_x86_64_darwin:
|
||||||
LinkRes.Add('x86_64');
|
LinkRes.Add('x86_64');
|
||||||
system_arm_darwin:
|
system_arm_darwin:
|
||||||
LinkRes.Add(lower(cputypestr[current_settings.cputype]));
|
{ don't specify architecture subtype, because then CPU_SUBTYPE_ALL
|
||||||
|
files, such as compiled resources, are rejected }
|
||||||
|
LinkRes.Add('arm');
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user