Skip to content

Commit fc43703

Browse files
committed
[doc] Update macOS to CMake 4.2 and Xcode 26.1
1 parent b8c7707 commit fc43703

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

doc/_pages/from_source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ officially supports when building from source:
3737
|------------------------------------|--------------|------------|-------|-------|------------------------------|------------|
3838
| Ubuntu 22.04 LTS (Jammy Jellyfish) | x86_64 | 3.10 | 8.4 | 3.22 | GCC 11 (default) or Clang 15 | OpenJDK 11 |
3939
| Ubuntu 24.04 LTS (Noble Numbat) | x86_64 | 3.12 | 8.4 | 3.28 | GCC 13 (default) or Clang 19 | OpenJDK 21 |
40-
| macOS Sequoia (15) | arm64 | 3.14 | 8.4 | 4.1 | Apple LLVM 17 (Xcode 26.0) | OpenJDK 23 |
40+
| macOS Sequoia (15) | arm64 | 3.14 | 8.4 | 4.2 | Apple LLVM 17 (Xcode 26.1) | OpenJDK 23 |
4141
| macOS Tahoe (26) ⁽⁴⁾ | arm64 | TBD | TBD | TBD | TBD | TBD |
4242

4343
"Official support" means that we have Continuous Integration test coverage to

doc/_pages/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Drake's pre-compiled binaries:
6767
|------------------------------------|----------------------------|-------|
6868
| Ubuntu 22.04 LTS (Jammy Jellyfish) | GCC 11 | C++20 |
6969
| Ubuntu 24.04 LTS (Noble Numbat) | GCC 13 | C++23 |
70-
| macOS Sequoia (15) | Apple LLVM 17 (Xcode 26.0) | C++23 |
70+
| macOS Sequoia (15) | Apple LLVM 17 (Xcode 26.1) | C++23 |
7171
| macOS Tahoe (26) | TBD | TBD |
7272

7373
Any other configuration not listed here will lead to undefined behavior

tools/install/libdrake/drake-config.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(CMAKE_VERSION VERSION_LESS 3.9.0)
1010
message(FATAL_ERROR "CMake >= 3.9 required")
1111
endif()
1212
cmake_policy(PUSH)
13-
cmake_policy(VERSION 3.9...4.1)
13+
cmake_policy(VERSION 3.9...4.2)
1414
set(CMAKE_IMPORT_FILE_VERSION 1)
1515

1616
include(CMakeFindDependencyMacro)

tools/install/libdrake/test/drake_python_dir_install_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_drake_python_dir(self):
1414
cmake_prefix_path = install_test_helper.get_install_dir()
1515

1616
cmake_content = """
17-
cmake_minimum_required(VERSION 3.9...4.1)
17+
cmake_minimum_required(VERSION 3.9...4.2)
1818
project(drake_python_dir_install_test)
1919
set(CMAKE_PREFIX_PATH {cmake_prefix_path})
2020
find_package(drake CONFIG REQUIRED)

tools/install/libdrake/test/find_package_drake_install_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_find_package_drake(self):
2626
cmake_prefix_path = install_test_helper.get_install_dir()
2727

2828
cmake_content = """
29-
cmake_minimum_required(VERSION 3.9...4.1)
29+
cmake_minimum_required(VERSION 3.9...4.2)
3030
project(find_package_drake_install_test)
3131
set(CMAKE_PREFIX_PATH {cmake_prefix_path})
3232
find_package(drake CONFIG REQUIRED)

0 commit comments

Comments
 (0)