diff --git a/CMakeLists.txt b/CMakeLists.txt index 9117342e5..3487c22c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,10 +119,6 @@ if(MLX_BUILD_METAL) COMMAND zsh "-c" "/usr/bin/xcrun -sdk macosx --show-sdk-version" OUTPUT_VARIABLE MACOS_SDK_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE COMMAND_ERROR_IS_FATAL ANY) - execute_process( - COMMAND zsh "-c" "/usr/bin/xcrun -sdk macosx --show-sdk-path" - OUTPUT_VARIABLE CMAKE_OSX_SYSROOT - OUTPUT_STRIP_TRAILING_WHITESPACE COMMAND_ERROR_IS_FATAL ANY) if(${MACOS_SDK_VERSION} LESS 14.0) message( diff --git a/python/src/distributed.cpp b/python/src/distributed.cpp index 36607d7d1..9f4a7cb59 100644 --- a/python/src/distributed.cpp +++ b/python/src/distributed.cpp @@ -67,7 +67,7 @@ void init_distributed(nb::module_& parent_module) { Args: backend (str, optional): The name of the backend to check for availability. - It takes the same values as ``init()``. Default: ``any``. + It takes the same values as :func:`init()`. Default: ``"any"``. Returns: bool: Whether the distributed backend is available.