MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

bump up stack limit for windows

+7
+7
meson.build
··· 89 89 endif 90 90 91 91 ant_link_args = link_args 92 + if host_machine.system() == 'windows' 93 + ant_link_args += ['-Wl,--stack,134217728'] 94 + elif host_machine.system() == 'darwin' 95 + ant_link_args += ['-Wl,-stack_size,0x2000000'] 96 + else 97 + ant_link_args += ['-Wl,-z,stacksize=134217728'] 98 + endif 92 99 if get_option('linker_map') 93 100 ant_linkmap = meson.project_build_root() + '/ant.linkmap' 94 101 if host_machine.system() == 'darwin'