]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-dev-pipeline: -DWITH_STATIC_LIBSTDCXX=ON for focal 2491/head
authorDavid Galloway <david.galloway@ibm.com>
Fri, 7 Nov 2025 15:43:53 +0000 (10:43 -0500)
committerDavid Galloway <david.galloway@ibm.com>
Fri, 7 Nov 2025 15:58:22 +0000 (10:58 -0500)
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 <david.galloway@ibm.com>
ceph-dev-pipeline/build/Jenkinsfile

index dd027b840909d65bfd24d3509ca207944d79e2b8..165a40266ab85b3e7540fe14ce99a77515961a6b 100644 (file)
@@ -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";