diff options
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 4f580dc8afa..a48c9ca24cd 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -955,7 +955,7 @@ end local version = str_to_version(_OPTIONS["gcc_version"]) - if string.find(_OPTIONS["gcc"], "clang") then + if string.find(_OPTIONS["gcc"], "clang") or string.find(_OPTIONS["gcc"], "pnacl") or string.find(_OPTIONS["gcc"], "asmjs") then if (version < 30400) then print("Clang version 3.4 or later needed") os.exit(-1) @@ -1043,13 +1043,6 @@ configuration { "pnacl" } } archivesplit_size "20" -configuration { "nacl*" } - buildoptions_cpp { - "-x c++", - "-std=c++14", - } - archivesplit_size "20" - configuration { "linux-*" } links { "dl", |