File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
7373Any other configuration not listed here will lead to undefined behavior
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if(CMAKE_VERSION VERSION_LESS 3.9.0)
1010 message (FATAL_ERROR "CMake >= 3.9 required" )
1111endif ()
1212cmake_policy (PUSH)
13- cmake_policy (VERSION 3.9...4.1 )
13+ cmake_policy (VERSION 3.9...4.2 )
1414set (CMAKE_IMPORT_FILE_VERSION 1)
1515
1616include (CMakeFindDependencyMacro)
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments