File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -852,6 +852,7 @@ def save_settings():
852
852
853
853
# merge forwarded data
854
854
assert settings .get ('ASM_JS' ), 'fastcomp is asm.js only'
855
+ settings ['EXPORTED_FUNCTIONS' ] = forwarded_json ['EXPORTED_FUNCTIONS' ]
855
856
all_exported_functions = set (settings ['EXPORTED_FUNCTIONS' ]) # both asm.js and otherwise
856
857
for additional_export in settings ['DEFAULT_LIBRARY_FUNCS_TO_INCLUDE' ]: # additional functions to export from asm, if they are implemented
857
858
all_exported_functions .add ('_' + additional_export )
Original file line number Diff line number Diff line change @@ -485,7 +485,8 @@ var PassManager = {
485
485
} ) ) ;
486
486
} else if ( phase == 'glue' ) {
487
487
print ( '\n//FORWARDED_DATA:' + JSON . stringify ( {
488
- Functions : Functions
488
+ Functions : Functions ,
489
+ EXPORTED_FUNCTIONS : EXPORTED_FUNCTIONS
489
490
} ) ) ;
490
491
}
491
492
} ,
You can’t perform that action at this time.
0 commit comments