diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-05 15:03:47 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-05 15:47:49 +0200 |
commit | 26d4df4e174124e1174c624d770661b1394fcf5f (patch) | |
tree | cf97cc3e94a77f88b1370cb919c4a374c618eb14 /SConstruct | |
parent | dbf3a13d0faad856726b96942425e08618aa89d3 (diff) | |
download | redot-cpp-26d4df4e174124e1174c624d770661b1394fcf5f.tar.gz |
Fix JavaScript library suffix.
Also add `.bc` files to `.gitignore`
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -397,7 +397,7 @@ elif env["platform"] == "javascript": # Program() output consists of multiple files, so specify suffixes manually at builder. env["PROGSUFFIX"] = "" env["LIBPREFIX"] = "lib" - env["LIBSUFFIX"] = ".bc" + env["LIBSUFFIX"] = ".a" env["LIBPREFIXES"] = ["$LIBPREFIX"] env["LIBSUFFIXES"] = ["$LIBSUFFIX"] env.Replace(SHLINKFLAGS='$LINKFLAGS') |