mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Fix linking on El Capitan
Modern xcode, does not allow std::locale::numeric with 10.8 SDK
This commit is contained in:
parent
ea8eb956ff
commit
d4f2121cfa
1 changed files with 2 additions and 2 deletions
4
wscript
4
wscript
|
|
@ -545,12 +545,12 @@ int main() { return 0; }''',
|
|||
("-DMAC_OS_X_VERSION_MIN_REQUIRED=1070",
|
||||
'-mmacosx-version-min=10.7'))
|
||||
|
||||
elif conf.env['build_target'] in [ 'mavericks', 'yosemite', 'el_capitan' ]:
|
||||
elif conf.env['build_target'] in [ 'mavericks', 'yosemite' ]:
|
||||
compiler_flags.extend(
|
||||
("-DMAC_OS_X_VERSION_MAX_ALLOWED=1090",
|
||||
"-mmacosx-version-min=10.8"))
|
||||
|
||||
elif conf.env['build_target'] in [ 'sierra' ]:
|
||||
elif conf.env['build_target'] in ['el_capitan', 'sierra' ]:
|
||||
compiler_flags.extend(
|
||||
("-DMAC_OS_X_VERSION_MAX_ALLOWED=1090",
|
||||
"-mmacosx-version-min=10.9"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue