We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--no-stack-first
1 parent 51c136f commit b960e51Copy full SHA for b960e51
tools/building.py
@@ -266,8 +266,12 @@ def lld_flags_for_executable(external_symbols):
266
# function like we do in STANDALONE_WASM mode.
267
cmd += ['--no-entry']
268
269
+ # The default for `--stack-first` is transitioning from disabled to
270
+ # enabled. So be explicit in all cases for now.
271
if settings.STACK_FIRST:
272
cmd.append('--stack-first')
273
+ else:
274
+ cmd.append('--no-stack-first')
275
276
if not settings.RELOCATABLE:
277
cmd.append('--table-base=%s' % settings.TABLE_BASE)
0 commit comments