From: David Galloway Date: Fri, 7 Nov 2025 15:43:53 +0000 (-0500) Subject: ceph-dev-pipeline: -DWITH_STATIC_LIBSTDCXX=ON for focal X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0bf4d2693ee0c70fd72560f59046295a110af76a;p=ceph-build.git 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 --- diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index dd027b840..165a40266 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";