From bc8db52a6297f51cf71e8ec4781d44d4691157ca Mon Sep 17 00:00:00 2001 From: Surender Yadav Date: Wed, 15 Oct 2025 11:28:06 -0400 Subject: [PATCH] Adding fixes for missing highway header file on S390X/PPC and cmake tool error for PPC Signed-off-by: Surender Yadav --- ossm/bazelrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ossm/bazelrc b/ossm/bazelrc index 25fdfcedfb7..14d95c68bda 100644 --- a/ossm/bazelrc +++ b/ossm/bazelrc @@ -14,8 +14,8 @@ build --test_output=all # Arch-specific build flags, triggered with --config=$ARCH in bazel build command build:x86_64 --define=DUMMY=dummy -build:s390x --@envoy//source/extensions/filters/common/lua:luajit2=1 --cxxopt='-includeoptional' --copt=-Wno-error=type-limits --copt=-Wno-error=uninitialized --copt=-fno-builtin-strlen --action_env=BAZEL_LINKLIBS=-lstdc++ -build:ppc --@envoy//source/extensions/filters/common/lua:luajit2=1 +build:s390x --@envoy//source/extensions/filters/common/lua:luajit2=1 --copt=-DTOOLCHAIN_MISS_ASM_HWCAP_H --host_copt=-DTOOLCHAIN_MISS_ASM_HWCAP_H --cxxopt='-includeoptional' --copt=-Wno-error=type-limits --copt=-Wno-error=uninitialized --copt=-fno-builtin-strlen --action_env=BAZEL_LINKLIBS=-lstdc++ +build:ppc --@envoy//source/extensions/filters/common/lua:luajit2=1 --copt=-DTOOLCHAIN_MISS_ASM_HWCAP_H --host_copt=-DTOOLCHAIN_MISS_ASM_HWCAP_H --action_env=BAZEL_LINKLIBS=-lstdc++ build:aarch64 --define=DUMMY=dummy # Colored ouput messes with some of the logging systems in CI, so we disable that.