Backed out 2 changesets (bug 1810627, bug 1747145) for causing build bustages CLOSED TREE

Backed out changeset 93b94212020f (bug 1810627)
Backed out changeset b5d3998c113c (bug 1747145)
This commit is contained in:
Norisz Fay 2023-01-18 04:37:58 +02:00
Родитель 4a90b146bd
Коммит c1fa36ebc4
2 изменённых файлов: 27 добавлений и 58 удалений

Просмотреть файл

@ -96,22 +96,16 @@ def compiler_class(compiler, host_or_target):
def checking_fn(fn):
return fn
# We accept onerror being a @depends function that returns a callable.
# So, create a similar @depends function when it's not already one.
if not isinstance(onerror, SandboxDependsFunction):
onerror = dependable(lambda: onerror)
@depends(
self,
dependable(flags),
extra_toolchain_flags,
stlport_cppflags,
dependable(header),
onerror,
when=when,
)
@checking_fn
def func(compiler, flags, extra_flags, stlport_flags, header, onerror):
def func(compiler, flags, extra_flags, stlport_flags, header):
flags = list(flags or [])
if is_target:
flags += extra_flags or []

Просмотреть файл

@ -2421,10 +2421,21 @@ with only_when(requires_wasm_sandboxing & compile_environment):
@depends(
"--with-wasi-sysroot",
bootstrap_path("sysroot-wasm32-wasi", when=bootstrap_wasi_sysroot),
"--with-wasm-sandboxed-libraries",
)
@imports("os")
def wasi_sysroot(wasi_sysroot, bootstrapped_sysroot):
def wasi_sysroot(wasi_sysroot, bootstrapped_sysroot, sandboxed_libs):
if not wasi_sysroot:
if not bootstrapped_sysroot:
suggest_disable = ""
if sandboxed_libs.origin == "default":
suggest_disable = (
" Or build with --without-wasm-sandboxed-libraries."
)
die(
"Cannot find a wasi sysroot. Please give its location with "
"--with-wasi-sysroot." + suggest_disable
)
return bootstrapped_sysroot
wasi_sysroot = wasi_sysroot[0]
@ -2435,59 +2446,24 @@ with only_when(requires_wasm_sandboxing & compile_environment):
return wasi_sysroot
@depends(wasi_sysroot)
def wasi_sysroot_flags(wasi_sysroot):
if wasi_sysroot:
log.info("Using wasi sysroot in %s", wasi_sysroot)
return ["--sysroot=%s" % wasi_sysroot]
return []
set_config("WASI_SYSROOT", wasi_sysroot)
def wasm_compiler_with_flags(compiler, sysroot_flags):
if compiler:
def wasm_compiler_with_flags(compiler, sysroot):
if not sysroot:
return
elif compiler:
return (
compiler.wrapper + [compiler.compiler] + compiler.flags + sysroot_flags
compiler.wrapper
+ [compiler.compiler]
+ compiler.flags
+ ["--sysroot=%s" % sysroot]
)
@template
def wasm_compiler_error(msg):
@depends("--with-wasm-sandboxed-libraries")
def wasm_compiler_error(sandboxed_libs):
suggest_disable = ""
if sandboxed_libs.origin == "default":
suggest_disable = " Or build with --without-wasm-sandboxed-libraries."
return lambda: die(msg + suggest_disable)
return wasm_compiler_error
@template
def check_wasm_compiler(compiler, language):
compiler.try_compile(
includes=["cstring" if language == "C++" else "string.h"],
flags=wasi_sysroot_flags,
check_msg="the wasm %s compiler can find wasi headers" % language,
onerror=wasm_compiler_error(
"Cannot find wasi headers or problem with the wasm compiler. "
"Please fix the problem."
),
)
compiler.try_run(
flags=wasi_sysroot_flags,
check_msg="the wasm %s linker can find wasi libraries" % language,
onerror=wasm_compiler_error(
"Cannot find wasi libraries or problem with the wasm linker. "
"Please fix the problem."
),
)
wasm_cc = compiler("C", wasm, other_compiler=c_compiler)
check_wasm_compiler(wasm_cc, "C")
@depends(wasm_cc, wasi_sysroot_flags)
def wasm_cc_with_flags(wasm_cc, wasi_sysroot_flags):
return wasm_compiler_with_flags(wasm_cc, wasi_sysroot_flags)
@depends(wasm_cc, wasi_sysroot)
def wasm_cc_with_flags(wasm_cc, wasi_sysroot):
return wasm_compiler_with_flags(wasm_cc, wasi_sysroot)
set_config("WASM_CC", wasm_cc_with_flags)
@ -2498,11 +2474,10 @@ with only_when(requires_wasm_sandboxing & compile_environment):
other_compiler=cxx_compiler,
other_c_compiler=c_compiler,
)
check_wasm_compiler(wasm_cxx, "C++")
@depends(wasm_cxx, wasi_sysroot_flags)
def wasm_cxx_with_flags(wasm_cxx, wasi_sysroot_flags):
return wasm_compiler_with_flags(wasm_cxx, wasi_sysroot_flags)
@depends(wasm_cxx, wasi_sysroot)
def wasm_cxx_with_flags(wasm_cxx, wasi_sysroot):
return wasm_compiler_with_flags(wasm_cxx, wasi_sysroot)
set_config("WASM_CXX", wasm_cxx_with_flags)