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.
1 parent a200d5f commit 42145b0Copy full SHA for 42145b0
backends/qualcomm/scripts/download_qnn_sdk.py
@@ -295,9 +295,12 @@ def _install_glibc_234():
295
build_dir = pathlib.Path(tmpdir) / "glibc-build"
296
os.makedirs(build_dir, exist_ok=True)
297
298
+ logger.info("[glibc] Configuring build...")
299
env = os.environ.copy()
300
# Remove LD_LIBRARY_PATH to satisfy configure checks
301
env.pop("LD_LIBRARY_PATH", None)
302
+ # allow warnings
303
+ env["CFLAGS"] = "-O2 -Wno-error"
304
305
# Configure
306
cmd = ["../glibc-2.34/configure", f"--prefix={GLIBC_ROOT}"]
0 commit comments