diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-05-04 15:59:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 15:59:36 +0200 |
commit | 24e4aeb2c6e91cb33996737ccee8e30b71cb6dfd (patch) | |
tree | 37d61b6a3198ce370f6e03c117798de16e0770a8 /SConstruct | |
parent | d00e46966d2196507c64fd2cb6a51d37f15b856e (diff) | |
parent | b2331e1f6dc436e0d0d474cd2188288d4e266a14 (diff) | |
download | redot-cpp-24e4aeb2c6e91cb33996737ccee8e30b71cb6dfd.tar.gz |
Merge pull request #746 from NicholasShatokhin/master
Build javascript target on windows host
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -409,7 +409,12 @@ elif env["platform"] == "android": env.Append(CCFLAGS=["-O3"]) elif env["platform"] == "javascript": - env["ENV"] = os.environ + if host_platform == "windows": + env = Environment(ENV=os.environ, tools=["cc", "c++", "ar", "link", "textfile", "zip"]) + opts.Update(env) + else: + env["ENV"] = os.environ + env["CC"] = "emcc" env["CXX"] = "em++" env["AR"] = "emar" |