Skip to content
  • Moritz Angermann's avatar
    30d1b643
    Drop hard Xcode dependency · 30d1b643
    Moritz Angermann authored and Zubin's avatar Zubin committed
    XCODE_VERSION calls out to `xcodebuild`, which is only available
    when having `Xcode` installed. The CommandLineTools are not
    sufficient. To install Xcode, you must have an apple id to download
    the Xcode.xip from apple.
    
    We do not use xcodebuild anywhere in our build explicilty. At best
    it appears to be a proxy for checking the linker or the compiler.
    These should rather be done with
    ```
    xcrun ld -version
    ```
    or similar, and not by proxy through Xcode. The CLR should be
    sufficient for building software on macOS.
    
    (cherry picked from commit a3ee3b99)
    30d1b643
    Drop hard Xcode dependency
    Moritz Angermann authored and Zubin's avatar Zubin committed
    XCODE_VERSION calls out to `xcodebuild`, which is only available
    when having `Xcode` installed. The CommandLineTools are not
    sufficient. To install Xcode, you must have an apple id to download
    the Xcode.xip from apple.
    
    We do not use xcodebuild anywhere in our build explicilty. At best
    it appears to be a proxy for checking the linker or the compiler.
    These should rather be done with
    ```
    xcrun ld -version
    ```
    or similar, and not by proxy through Xcode. The CLR should be
    sufficient for building software on macOS.
    
    (cherry picked from commit a3ee3b99)
Loading