diff options
Diffstat (limited to 'scripts/test/lld.py')
-rwxr-xr-x | scripts/test/lld.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/test/lld.py b/scripts/test/lld.py index 4aafd9549..7372698cd 100755 --- a/scripts/test/lld.py +++ b/scripts/test/lld.py @@ -26,6 +26,8 @@ def args_for_finalize(filename): return ['--check-stack-overflow', '--global-base=568'] elif 'shared' in filename: return ['--side-module'] + elif 'standalone-wasm' in filename: + return ['--standalone-wasm', '--global-base=568'] else: return ['--global-base=568'] |