From 0bf4d2693ee0c70fd72560f59046295a110af76a Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 7 Nov 2025 10:43:53 -0500 Subject: [PATCH] ceph-dev-pipeline: -DWITH_STATIC_LIBSTDCXX=ON for focal This was set in use_ppa() in build_utils.sh. It's mistakenly been off since we switched to ceph-dev-pipeline as the default build job. Signed-off-by: David Galloway --- ceph-dev-pipeline/build/Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index dd027b84..165a4026 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -445,6 +445,9 @@ pipeline { case "default": ceph_extra_cmake_args += " -DALLOCATOR=tcmalloc" ceph_extra_cmake_args += " -DWITH_SYSTEM_BOOST=OFF -DWITH_BOOST_VALGRIND=ON" + if (os.version_name == "focal") { + ceph_extra_cmake_args += " -DWITH_STATIC_LIBSTDCXX=ON" + } break case ~/crimson.*/: deb_build_profiles = "pkg.ceph.crimson"; -- 2.39.5