diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-26 12:12:17 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-26 12:13:06 -0800 |
commit | 39165e9e511da3c041865d7e343c81e6d7cafd6c (patch) | |
tree | 8a9cad78b4650cf1f223fb02d9fa325f74f02c28 /src | |
parent | 9f609a10bfe90202d6e9d15216c502d6aa18bbcb (diff) |
fix js libraries in fastcomp; fixes #1948
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index 7d768c3d..e4ce1c88 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -134,7 +134,7 @@ load('settings.js'); var settings_file = arguments_[0]; var ll_file = arguments_[1]; phase = arguments_[2]; -if (phase == 'pre') { +if (phase == 'pre' || phase == 'glue') { additionalLibraries = Array.prototype.slice.call(arguments_, 3); } else { var forwardedDataFile = arguments_[3]; |