diff options
| author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-09 15:51:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-09 15:51:51 +0200 |
| commit | 98124aafe861bd759c6cfd40395921325a367186 (patch) | |
| tree | cf97cc3e94a77f88b1370cb919c4a374c618eb14 | |
| parent | dbf3a13d0faad856726b96942425e08618aa89d3 (diff) | |
| parent | 26d4df4e174124e1174c624d770661b1394fcf5f (diff) | |
| download | redot-cpp-98124aafe861bd759c6cfd40395921325a367186.tar.gz | |
Merge pull request #580 from Faless/js/fix_suffix
Fix JavaScript library suffix.
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | SConstruct | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ logs/* *.os *.so *.obj +*.bc *.pyc *.dblite *.pdb @@ -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') |
