mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 05:18:12 +02:00
macOS: use -macos_version_min for recent versions
-macosx_version_min was renamed. Ideally we would base this on the version of the toolset used, but we don't know that. Instead, use it when targeting more recent macOS versions
This commit is contained in:
parent
6c0be9f534
commit
fd83bb10d4
@ -354,7 +354,12 @@ implementation
|
||||
begin
|
||||
if MacOSXVersionMin.isvalid then
|
||||
begin
|
||||
result:='-macosx_version_min '+MacOSXVersionMin.str;
|
||||
{ This does not depend on the target version but on the toolchain
|
||||
version, but we only know the former and not the latter }
|
||||
if MacOSXVersionMin.relationto(11,0,0)>=0 then
|
||||
result:='-macosx_version_min '+MacOSXVersionMin.str
|
||||
else
|
||||
result:='-macos_version_min '+MacOSXVersionMin.str;
|
||||
end
|
||||
else if iPhoneOSVersionMin.isvalid then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user