do not emit i64 support code in shared libs

This commit is contained in:
Alon Zakai 2014-02-07 11:32:38 -05:00
Родитель b286fb5aa3
Коммит 484a2d3a16
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1852,7 +1852,7 @@ function JSify(data, functionsOnly) {
// rest of the output that we started to print out earlier (see comment on the
// "Final shape that will be created").
if (PRECISE_I64_MATH && Types.preciseI64MathUsed) {
if (!INCLUDE_FULL_LIBRARY && !SIDE_MODULE) {
if (!INCLUDE_FULL_LIBRARY && !SIDE_MODULE && !BUILD_AS_SHARED_LIB) {
// first row are utilities called from generated code, second are needed from fastLong
['i64Add', 'i64Subtract', 'bitshift64Shl', 'bitshift64Lshr', 'bitshift64Ashr',
'llvm_ctlz_i32', 'llvm_cttz_i32'].forEach(function(func) {