diff --git a/Tools/wasm/wasix-configure-wrapper b/Tools/wasm/wasix-configure-wrapper index ab9a216859a902..5e935eacfba7cc 100755 --- a/Tools/wasm/wasix-configure-wrapper +++ b/Tools/wasm/wasix-configure-wrapper @@ -70,7 +70,7 @@ export LD="wasixld" export CFLAGS="\ -DOPENSSL_THREADS \ - -Os -flto" + -flto" WASIXCC_RUN_WASM_OPT=no \ "$@" \ diff --git a/Tools/wasm/wasm_build.py b/Tools/wasm/wasm_build.py index b7a836da4b0e5d..d07beee3754479 100755 --- a/Tools/wasm/wasm_build.py +++ b/Tools/wasm/wasm_build.py @@ -563,7 +563,7 @@ def configure_cmd(self) -> List[str]: @property def make_cmd(self) -> List[str]: """Generate make command""" - cmd = ["make"] + cmd = ["make", "-j8"] platform = self.host.platform if platform.make_wrapper: cmd.insert(0, os.fspath(platform.make_wrapper))