summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-05-04 15:59:36 +0200
committerGitHub <noreply@github.com>2022-05-04 15:59:36 +0200
commit24e4aeb2c6e91cb33996737ccee8e30b71cb6dfd (patch)
tree37d61b6a3198ce370f6e03c117798de16e0770a8 /SConstruct
parentd00e46966d2196507c64fd2cb6a51d37f15b856e (diff)
parentb2331e1f6dc436e0d0d474cd2188288d4e266a14 (diff)
downloadredot-cpp-24e4aeb2c6e91cb33996737ccee8e30b71cb6dfd.tar.gz
Merge pull request #746 from NicholasShatokhin/master
Build javascript target on windows host
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 6 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index b783156..c8a9508 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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"