diff options
author | 2015-12-03 14:50:04 +0100 | |
---|---|---|
committer | 2015-12-03 14:50:04 +0100 | |
commit | 20b32acb8ba9f2284d4b613d7a4336a8542d95b4 (patch) | |
tree | 12aef825f752a254b9ff128eaa9dc1b9477c4b5b | |
parent | d9db2350fb39de7b5f1e7600d55c12b68cf09ad8 (diff) |
OSX version is taken on different way so it is considered 6.0 (nw)
-rw-r--r-- | scripts/genie.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 40e5d9e8c5a..c7b36fb924f 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -724,7 +724,7 @@ else end local version = str_to_version(_OPTIONS["gcc_version"]) -if string.find(_OPTIONS["gcc"], "clang") and ((version < 30500) or (_OPTIONS["targetos"]=="macosx" and (version <= 30500))) then +if string.find(_OPTIONS["gcc"], "clang") and ((version < 30500) or (_OPTIONS["targetos"]=="macosx" and (version <= 60000))) then buildoptions_cpp { "-x c++", "-std=c++1y", |