[libcxx-commits] [libcxx] 749e218 - [libc++][NFC] Remove obsolete --osx-roots parameter to run-buildbot
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Oct 9 12:05:47 PDT 2024
Author: Louis Dionne
Date: 2024-10-09T15:04:56-04:00
New Revision: 749e21860061a1b317916579252a864b92a134d7
URL: https://github.com/llvm/llvm-project/commit/749e21860061a1b317916579252a864b92a134d7
DIFF: https://github.com/llvm/llvm-project/commit/749e21860061a1b317916579252a864b92a134d7.diff
LOG: [libc++][NFC] Remove obsolete --osx-roots parameter to run-buildbot
That isn't used anymore since we now run backdeployment testing
on the target system directly instead of using pre-packaged roots.
Added:
Modified:
libcxx/utils/ci/run-buildbot
Removed:
################################################################################
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index e040f15acc3dae..536d6270361307 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -28,10 +28,6 @@ ${PROGNAME} [options] <BUILDER>
--build-dir <DIR> The directory to use for building the library. By default,
this is '<llvm-root>/build/<builder>'.
---osx-roots <DIR> Path to pre-downloaded macOS dylibs. By default, we download
- them from Green Dragon. This is only relevant at all when
- running back-deployment testing if one wants to override
- the old dylibs we use to run the tests with
diff erent ones.
Environment variables
CC The C compiler to use, this value is used by CMake. This
variable is optional.
@@ -66,10 +62,6 @@ while [[ $# -gt 0 ]]; do
BUILD_DIR="${2}"
shift; shift
;;
- --osx-roots)
- OSX_ROOTS="${2}"
- shift; shift
- ;;
*)
BUILDER="${1}"
shift
More information about the libcxx-commits
mailing list