mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 11:31:07 +00:00
aedi: bump oldest supported os version for x64 to 10.15
moltenvk 1.2.8 cannot be built for 10.13 because of glslang dependency on filesystem from c++ standard library
This commit is contained in:
parent
ea5fc49c46
commit
525172637a
2 changed files with 3 additions and 3 deletions
|
@ -279,7 +279,7 @@ class MoltenVKTarget(base.MakeTarget):
|
|||
'-dynamiclib',
|
||||
'-arch', 'arm64',
|
||||
'-arch', 'x86_64',
|
||||
'-mmacosx-version-min=10.13',
|
||||
'-mmacosx-version-min=10.15',
|
||||
'-compatibility_version', '1.0.0',
|
||||
'-current_version', '1.0.0',
|
||||
'-install_name', '@rpath/libMoltenVK.dylib',
|
||||
|
@ -454,7 +454,7 @@ class VpxTarget(base.ConfigureMakeDependencyTarget):
|
|||
|
||||
def configure(self, state: BuildState):
|
||||
hosts = {
|
||||
'x86_64': 'x86_64-darwin17-gcc',
|
||||
'x86_64': 'x86_64-darwin19-gcc',
|
||||
'arm64': 'arm64-darwin20-gcc',
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ from pathlib import Path
|
|||
from .packaging.version import Version as StrictVersion
|
||||
|
||||
# Minimum OS versions
|
||||
OS_VERSION_X86_64 = StrictVersion('10.13')
|
||||
OS_VERSION_X86_64 = StrictVersion('10.15')
|
||||
OS_VERSION_ARM64 = StrictVersion('11.0')
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue