Skip to content

Added docu to all public methods - improved english for existing docs - #12

Merged
tkausch merged 3 commits into
mainfrom
MarkdownDocumentationRewrite
Nov 3, 2025
Merged

Added docu to all public methods - improved english for existing docs#12
tkausch merged 3 commits into
mainfrom
MarkdownDocumentationRewrite

Conversation

@tkausch

@tkausch tkausch commented Nov 3, 2025

Copy link
Copy Markdown
Owner

PR Type

Documentation


Description

  • Rewrote documentation for all public methods and types across the codebase

  • Improved clarity and consistency of docstring formatting and language

  • Added missing documentation for previously undocumented public APIs

  • Enhanced parameter descriptions with better examples and context


Diagram Walkthrough

flowchart LR
  A["Public APIs"] -->|"Add/Improve Docs"| B["Deserializer Protocol"]
  A -->|"Add/Improve Docs"| C["RestApiCaller Class"]
  A -->|"Add/Improve Docs"| D["Error & Options Types"]
  A -->|"Add/Improve Docs"| E["Security & Logging"]
  B --> F["Enhanced Documentation"]
  C --> F
  D --> F
  E --> F
Loading

File Walkthrough

Relevant files
Documentation
14 files
Deserializer.swift
Improved protocol and class documentation clarity               
+6/-5     
RestApiCaller.swift
Comprehensive docs for HTTP methods and interceptors         
+96/-87 
RestError.swift
Enhanced error case documentation and formatting                 
+23/-16 
RestOptions.swift
Clarified options struct purpose and properties                   
+9/-3     
HTTPStatusCode.swift
Added convenience bridge method documentation                       
+1/-0     
HTTPUtil.swift
Documented HTTP method and MIME type enums                             
+3/-3     
LogNetworkInterceptor.swift
Added docs for logging interceptor and methods                     
+6/-1     
URLSession+Linux.swift
Documented Linux async/await wrapper function                       
+1/-0     
Logger+Extension.swift
Added documentation for logger namespace and instances     
+4/-1     
OSLogHandler.swift
Documented log handler initialization and methods               
+7/-0     
AuthorizerInterceptor.swift
Added docs for authorization interceptor class                     
+3/-0     
CertificateCAPinning.swift
Documented certificate pinning delegate and methods           
+4/-0     
PublicKeyServerPinning.swift
Improved public key pinning documentation                               
+5/-3     
URLRequestAuthorizer.swift
Enhanced authorization protocol and implementation docs   
+11/-7   

@qodo-code-review

qodo-code-review Bot commented Nov 3, 2025

Copy link
Copy Markdown

PR Compliance Guide 🔍

(Compliance updated until commit 41a96f8)

Below is a summary of compliance checks for this PR:

Security Compliance
🟢
No security concerns identified No security vulnerabilities detected by AI analysis. Human verification advised for critical code.
Ticket Compliance
🎫 No ticket provided
  • Create ticket/issue
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
🟢
Generic: Meaningful Naming and Self-Documenting Code

Objective: Ensure all identifiers clearly express their purpose and intent, making code
self-documenting

Status: Passed

Generic: Comprehensive Audit Trails

Objective: To create a detailed and reliable record of critical system actions for security analysis
and compliance.

Status:
Logging Scope: The PR adds/updates logging around requests and responses, but it is unclear whether all
critical security-relevant actions (e.g., auth header application, cookie manipulations,
status validations) are consistently logged with sufficient context across all execution
paths, requiring human verification.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 9 lines)
Generic: Robust Error Handling and Edge Case Management

Objective: Ensure comprehensive error handling that provides meaningful context and graceful
degradation

Status:
Error Context: While error enums gained clearer docs, the diff does not show additions ensuring all
failure paths include actionable context or explicit handling of edge cases within calling
sites, so robustness cannot be fully verified from documentation-only changes.

Referred Code
/// Errors thrown when executing REST requests.
///
/// Every case carries additional context so that callers can decide whether to retry, surface the failure,
/// or attempt to recover (for example when a deserializer reports malformed data).
public enum RestError: Error {

    /// Indicates that the server responded using an unknown protocol.
    /// - Parameters:
    ///   - URLResponse: The response returned form the server.
    ///   - Data: The raw returned data from the server.
    case badResponse(URLResponse, Data)

    /// Indicates that the server responded with an unexpected MIME type.
    /// - Parameter String: The returned MIME type.
    case invalidMimeType(String?)

    /// Indicates that query parameters with key could not be encoded using percent encoding.
    case invalidQueryParameter

    /// Indicates the server's response could not be deserialized using the given Deserializer.
    /// - Parameters:


 ... (clipped 18 lines)
Generic: Secure Error Handling

Objective: To prevent the leakage of sensitive system information through error messages while
providing sufficient detail for internal debugging.

Status:
Sensitive Logs: The logging interceptor can pretty-print headers and bodies which may expose sensitive
information if used in user-facing contexts or non-secure logs; verify that such detailed
logs are restricted to secure internal logging only.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 9 lines)
Generic: Secure Logging Practices

Objective: To ensure logs are useful for debugging and auditing without exposing sensitive
information like PII, PHI, or cardholder data.

Status:
PII in Logs: Newly added detailed request/response logging (including headers, cookies, and bodies)
could capture PII or secrets; confirm redaction policies or controls to prevent sensitive
data from being logged at any level.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 9 lines)
Generic: Security-First Input Validation and Data Handling

Objective: Ensure all data inputs are validated, sanitized, and handled securely to prevent
vulnerabilities

Status:
Token Exposure: The Basic and Bearer authorizers log authorization header values at trace level which
risks exposure of credentials or tokens in logs; this requires review and likely redaction
or removal.

Referred Code
    public func configureAuthorizationHeader(for urlRequest: inout URLRequest) {
        logger.trace("Set HTTP Authorization header",  metadata: [
            "urlRequest": "\(String(describing: urlRequest.url?.absoluteString))",
            "Authorization": "\(headerValue)"])
        urlRequest.setValue(self.headerValue, forHTTPHeaderField: "Authorization")
    }
}

/// Configures `Authorization` headers for Bearer token authentication.
public class BearerReqeustAuthorizer: URLRequestAuthorizer {

    let logger = Logger.SwiftRestRequests.security

    // The token value (without `Bearer` prefix) to be used for the HTTP `Authorization` request header.
    public var token: String

    /// Creates a Bearer authorization helper with the provided token.
    /// - Parameter token: Token value (without `Bearer` prefix) inserted into the header.
    public init(token: String) {
        self.token = token
    }


 ... (clipped 6 lines)
Compliance status legend 🟢 - Fully Compliant
🟡 - Partial Compliant
🔴 - Not Compliant
⚪ - Requires Further Human Verification
🏷️ - Compliance label

Previous compliance checks

Compliance check up to commit 014020d
Security Compliance
🟢
No security concerns identified No security vulnerabilities detected by AI analysis. Human verification advised for critical code.
Ticket Compliance
🎫 No ticket provided
  • Create ticket/issue
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
🟢
Generic: Meaningful Naming and Self-Documenting Code

Objective: Ensure all identifiers clearly express their purpose and intent, making code
self-documenting

Status: Passed

Generic: Comprehensive Audit Trails

Objective: To create a detailed and reliable record of critical system actions for security analysis
and compliance.

Status:
Logging Scope: The PR adds or modifies only documentation while existing logging remains unchanged and
may not guarantee comprehensive audit trails of critical actions across the system.

Referred Code
open class LogNetworkInterceptor: URLRequestInterceptor {

    static let noBody =  "none"

    let logger = Logger.SwiftRestRequests.interceptor
    let enableNetworkTracing: Bool


    /// Creates a new interceptor.
    /// - Parameter enableNetworkTracing: When `true`, headers, cookies, and bodies are pretty-printed; otherwise only method/URL pairs are logged.
    public init(enableNetworkTracing: Bool) {
        self.enableNetworkTracing = enableNetworkTracing
    }

    private func prettyCookieHeaders(_ cookieList: [HTTPCookie]) -> String {
        return cookieList.reduce("") { partialResult, cookie in
            partialResult + "  \"\(cookie.name)\": \"\(cookie.value)\"\n "
        }
    }

    /// Logs request metadata before the request is executed.


 ... (clipped 49 lines)
Generic: Robust Error Handling and Edge Case Management

Objective: Ensure comprehensive error handling that provides meaningful context and graceful
degradation

Status:
Error Context: Documentation was improved but no new handling was added; verify elsewhere that thrown
RestError cases are logged with actionable context and that empty/invalid bodies are
handled gracefully.

Referred Code
/// Errors thrown when executing REST requests.
///
/// Every case carries additional context so that callers can decide whether to retry, surface the failure,
/// or attempt to recover (for example when a deserializer reports malformed data).
public enum RestError: Error {

    /// Indicates that the server responded using an unknown protocol.
    /// - Parameters:
    ///   - URLResponse: The response returned form the server.
    ///   - Data: The raw returned data from the server.
    case badResponse(URLResponse, Data)

    /// Indicates that the server responded with an unexpected MIME type.
    /// - Parameter String: The returned MIME type.
    case invalidMimeType(String?)

    /// Indicates that query parameters with key could not be encoded using percent encoding.
    case invalidQueryParameter

    /// Indicates the server's response could not be deserialized using the given Deserializer.
    /// - Parameters:


 ... (clipped 18 lines)
Generic: Secure Error Handling

Objective: To prevent the leakage of sensitive system information through error messages while
providing sufficient detail for internal debugging.

Status:
Sensitive Logging: The interceptor pretty-prints headers, cookies, and bodies when tracing is enabled which
may expose sensitive details unless gated appropriately for user-facing outputs.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 8 lines)
Generic: Secure Logging Practices

Objective: To ensure logs are useful for debugging and auditing without exposing sensitive
information like PII, PHI, or cardholder data.

Status:
PII in Logs: When network tracing is enabled the code logs full headers, cookies, and potentially
request/response bodies which could include PII or secrets.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 8 lines)
Generic: Security-First Input Validation and Data Handling

Objective: Ensure all data inputs are validated, sanitized, and handled securely to prevent
vulnerabilities

Status:
Deserialization Trust: The documentation updates retain JSON decoding of arbitrary responses without added
validation or sanitization, so verification is needed that upstream code validates inputs
and MIME types before decoding.

Referred Code
/// A generic deserializer that uses `JSONDecoder` to decode a `Decodable` value.
public final class DecodableDeserializer<T: Decodable & Sendable>: Deserializer {

    public typealias ResponseType = T

    public let acceptHeader = MimeType.ApplicationJson.rawValue

    public init() { }

    public func deserialize(_ data: Data) throws -> T {
        return try JSONDecoder().decode(T.self, from: data)
    }
Compliance check up to commit 9683bab
Security Compliance
🔴
Sensitive information exposure

Description: BasicRequestAuthorizer logs the full Authorization header value at trace level,
potentially exposing credentials in logs.
URLRequestAuthorizer.swift [60-68]

Referred Code
}

/// Applies the precomputed Basic authorization header to the request.
public func configureAuthorizationHeader(for urlRequest: inout URLRequest) {
    logger.trace("Set HTTP Authorization header",  metadata: [
        "urlRequest": "\(String(describing: urlRequest.url?.absoluteString))",
        "Authorization": "\(headerValue)"])
    urlRequest.setValue(self.headerValue, forHTTPHeaderField: "Authorization")
}
Sensitive information exposure

Description: Network interceptor logs request/response headers and bodies, which may include sensitive
data (e.g., Authorization tokens, personal data) when enableNetworkTracing is true.
LogNetworkInterceptor.swift [72-100]

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 8 lines)
Ticket Compliance
🎫 No ticket provided
  • Create ticket/issue
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
🟢
Generic: Meaningful Naming and Self-Documenting Code

Objective: Ensure all identifiers clearly express their purpose and intent, making code
self-documenting

Status: Passed

Generic: Secure Error Handling

Objective: To prevent the leakage of sensitive system information through error messages while
providing sufficient detail for internal debugging.

Status: Passed

Generic: Comprehensive Audit Trails

Objective: To create a detailed and reliable record of critical system actions for security analysis
and compliance.

Status:
Logging Scope: New logging-focused interceptor and added logger usages document behavior but do not
clearly ensure all critical security actions are audited, which may be outside the scope
of these doc changes.

Referred Code
open class LogNetworkInterceptor: URLRequestInterceptor {

    static let noBody =  "none"

    let logger = Logger.SwiftRestRequests.interceptor
    let enableNetworkTracing: Bool


    /// Creates a new interceptor.
    /// - Parameter enableNetworkTracing: When `true`, headers, cookies, and bodies are pretty-printed; otherwise only method/URL pairs are logged.
    public init(enableNetworkTracing: Bool) {
        self.enableNetworkTracing = enableNetworkTracing
    }

    private func prettyCookieHeaders(_ cookieList: [HTTPCookie]) -> String {
        return cookieList.reduce("") { partialResult, cookie in
            partialResult + "  \"\(cookie.name)\": \"\(cookie.value)\"\n "
        }
    }

    /// Logs request metadata before the request is executed.


 ... (clipped 49 lines)
Generic: Robust Error Handling and Edge Case Management

Objective: Ensure comprehensive error handling that provides meaningful context and graceful
degradation

Status:
Error Context: Documentation adds clearer error semantics but the diff does not show added handling for
null/empty/boundary cases or logging at failure points, which may exist elsewhere.

Referred Code
/// Errors thrown when executing REST requests.
///
/// Every case carries additional context so that callers can decide whether to retry, surface the failure,
/// or attempt to recover (for example when a deserializer reports malformed data).
public enum RestError: Error {

    /// Indicates that the server responded using an unknown protocol.
    /// - Parameters:
    ///   - URLResponse: The response returned form the server.
    ///   - Data: The raw returned data from the server.
    case badResponse(URLResponse, Data)

    /// Indicates that the server responded with an unexpected MIME type.
    /// - Parameter String: The returned MIME type.
    case invalidMimeType(String?)

    /// Indicates that query parameters with key could not be encoded using percent encoding.
    case invalidQueryParameter

    /// Indicates the server's response could not be deserialized using the given Deserializer.
    /// - Parameters:


 ... (clipped 18 lines)
Generic: Secure Logging Practices

Objective: To ensure logs are useful for debugging and auditing without exposing sensitive
information like PII, PHI, or cardholder data.

Status:
Potential PII Logs: The interceptor logs headers, cookies, and bodies when tracing is enabled, which could
include sensitive data depending on runtime usage and is not masked here.

Referred Code
        logger.info("Request: \(method) \(url)\nheaders: \(prettyJsonHeaders) \ncookieHeaders: { \n\(prettyCookies)} \nbody: \(prettyJsonBody)")
    } else {
        logger.info("Request: \(method) \(url)")
    }


}

/// Logs response metadata once the request finishes.
public func receiveResponse(data:  Data, response: HTTPURLResponse, for session: URLSession) {

    guard let headerData = try? JSONSerialization.data(withJSONObject:  response.allHeaderFields, options: .prettyPrinted),
          let prettyJsonHeaders = String(data: headerData , encoding: .utf8) else {
        print("WARNING: Something went wrong while converting headers to JSON data.")
        return
    }


    let prettyJsonBody = data.prettyPrintedJSONString ?? "nil"

    let url = response.url?.absoluteString ?? "nil"


 ... (clipped 8 lines)
Generic: Security-First Input Validation and Data Handling

Objective: Ensure all data inputs are validated, sanitized, and handled securely to prevent
vulnerabilities

Status:
Input Validation: Documentation changes introduce no new validation or sanitization for external inputs
(headers, query params, payloads) in the shown additions, which may be handled elsewhere.

Referred Code

@qodo-code-review

qodo-code-review Bot commented Nov 3, 2025

Copy link
Copy Markdown

PR Code Suggestions ✨

No code suggestions found for the PR.

@qodo-code-review

Copy link
Copy Markdown

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Swift 5.9 on macos-latest

Failed stage: Build [❌]

Failure summary:

The action failed during Swift Package Manager build because the compiler could not build the system
module DarwinFoundation (and thus the Objective‑C module Darwin) when compiling the dependency
swift-log. Key errors indicate an SDK/toolchain mismatch:
- Error: module '_stddef' requires feature
'found_incompatible_headers__check_search_paths' from the macOS 15.5 SDK module map.
- Numerous
"unknown type name" errors for standard C types like ptrdiff_t, size_t, and wchar_t while importing
headers via the macOS 15.5 SDK.
- Final errors: could not build Objective-C module 'Darwin' and
error: emit-module command failed with exit code 1.

This suggests the workflow used Swift 5.9.2 toolchain
(/Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64) together with Xcode 16.4/macOS 15.5 SDK
headers, which are incompatible. Align the Swift toolchain with the Xcode/SDK version (e.g., use the
Xcode 16.4 bundled Swift or a matching Swift version), or adjust the SDK to one compatible with
Swift 5.9.2.

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

147:  Target: arm64-apple-macosx10.15.4
148:  Creating working copy for https://github.com/apple/swift-log
149:  Working copy of https://github.com/apple/swift-log resolved at 1.6.4
150:  warning: 'swift-log': /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-frontend -frontend -c -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Package.swift -target arm64-apple-macosx10.15.4 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -I /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/pm/ManifestAPI -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -vfsoverlay /var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/TemporaryDirectory.5ROAPH/vfs.yaml -swift-version 5 -package-description-version 5.9.0 -new-driver-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-driver -disable-implicit-concurrency-module-import -disable-implicit-string-processing-module-import -empty-abi-descriptor -resource-dir /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift -module-name main -target-sdk-version 15.5 -target-sdk-name macosx15.5 -external-plugin-path '/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server' -external-plugin-path '/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server' -external-plugin-path '/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server' -external-plugin-path '/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server' -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/host/plugins -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/local/lib/swift/host/plugins -o /var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/TemporaryDirectory.hznJ47/Package-1.o
151:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/clang /var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/TemporaryDirectory.hznJ47/Package-1.o -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks --sysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk --target=arm64-apple-macosx10.15.4 -force_load /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/macosx/libswiftCompatibilityConcurrency.a -force_load /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/macosx/libswiftCompatibility56.a -force_load /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/macosx/libswiftCompatibilityPacks.a -L /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/macosx -L /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift -rpath /usr/lib/swift -L /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/pm/ManifestAPI -L /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -lPackageDescription -Xlinker -rpath -Xlinker /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/pm/ManifestAPI -o /var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/TemporaryDirectory.XzkUu3/swift-log-manifest
152:  Apple Swift version 5.9.2 (swift-5.9.2-RELEASE)
153:  Target: arm64-apple-macosx10.15.4
154:  Building for debugging...
155:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swiftc -module-name Logging -emit-dependencies -emit-module -emit-module-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.swiftmodule -output-file-map /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/output-file-map.json -parse-as-library -incremental -c /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Locks.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Logging.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/MetadataProvider.swift -I /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug -target arm64-apple-macosx10.13 -swift-version 5 -v -enable-batch-mode -index-store-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/index/store -Onone -enable-testing -g -j3 -DSWIFT_PACKAGE -DDEBUG -module-cache-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/ModuleCache -parseable-output -parse-as-library -emit-objc-header -emit-objc-header-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging-Swift.h -enable-experimental-feature StrictConcurrency=complete -enable-upcoming-feature MemberImportVisibility -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -L /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -Xcc -isysroot -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -Xcc -F -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -suppress-warnings -package-name swift_log -Xfrontend -external-plugin-path -Xfrontend /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -Xfrontend -external-plugin-path -Xfrontend /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server
156:  Apple Swift version 5.9.2 (swift-5.9.2-RELEASE)
157:  Target: arm64-apple-macosx10.13
158:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-frontend -frontend -c -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Locks.swift -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Logging.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/MetadataProvider.swift -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.d -emit-reference-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.swiftdeps -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.d -emit-reference-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.swiftdeps -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -I /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -module-cache-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/ModuleCache -suppress-warnings -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-driver -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -enable-experimental-feature StrictConcurrency=complete -enable-upcoming-feature MemberImportVisibility -empty-abi-descriptor -resource-dir /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -isysroot -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -Xcc -F -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -module-name Logging -package-name swift_log -target-sdk-version 15.5 -target-sdk-name macosx15.5 -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/host/plugins -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.swift.o -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.swift.o -index-store-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/index/store -index-system-modules
159:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-frontend -frontend -c -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Locks.swift -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Logging.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/MetadataProvider.swift -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.d -emit-reference-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.swiftdeps -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.d -emit-reference-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.swiftdeps -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -I /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -module-cache-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/ModuleCache -suppress-warnings -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-driver -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -enable-experimental-feature StrictConcurrency=complete -enable-upcoming-feature MemberImportVisibility -empty-abi-descriptor -resource-dir /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -isysroot -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -Xcc -F -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -module-name Logging -package-name swift_log -target-sdk-version 15.5 -target-sdk-name macosx15.5 -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/host/plugins -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Locks.swift.o -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/LogHandler.swift.o -index-store-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/index/store -index-system-modules
160:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Locks.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Logging.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/MetadataProvider.swift -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -I /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -module-cache-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/ModuleCache -suppress-warnings -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-driver -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -enable-experimental-feature StrictConcurrency=complete -enable-upcoming-feature MemberImportVisibility -empty-abi-descriptor -resource-dir /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -isysroot -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -Xcc -F -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -module-name Logging -package-name swift_log -target-sdk-version 15.5 -target-sdk-name macosx15.5 -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/host/plugins -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.swiftdoc -emit-module-source-info-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.swiftsourceinfo -emit-objc-header-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging-Swift.h -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging.emit-module.d -parse-as-library -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.swiftmodule -emit-abi-descriptor-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.abi.json
161:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-frontend -frontend -c /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Locks.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift -primary-file /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/Logging.swift /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/checkouts/swift-log/Sources/Logging/MetadataProvider.swift -emit-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging.d -emit-reference-dependencies-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging.swiftdeps -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -I /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -module-cache-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/ModuleCache -suppress-warnings -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/bin/swift-driver -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-plugin-server -enable-experimental-feature StrictConcurrency=complete -enable-upcoming-feature MemberImportVisibility -empty-abi-descriptor -resource-dir /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -isysroot -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk -Xcc -F -Xcc /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -module-name Logging -package-name swift_log -target-sdk-version 15.5 -target-sdk-name macosx15.5 -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/host/plugins -plugin-path /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/Logging.build/Logging.swift.o -index-store-path /Users/runner/work/SwiftRestRequests/SwiftRestRequests/.build/arm64-apple-macosx/debug/index/store -index-system-modules
162:  error: emit-module command failed with exit code 1 (use -v to see invocation)
163:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
164:  #include <sys/cdefs.h>
165:  ^
166:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
167:  extern module assert_h "c_standard_library.modulemap"
168:  ^
169:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
170:  module _stddef [system] {
171:  ^
172:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_ptrdiff_t.h:41:10: note: submodule of top-level module '_stddef' implicitly imported here
173:  #include <stddef.h>
174:  ^
175:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
176:  #include <sys/cdefs.h>
177:  ^
178:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
179:  extern module assert_h "c_standard_library.modulemap"
180:  ^
181:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
182:  module _stddef [system] {
183:  ^
184:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_size_t.h:40:10: note: submodule of top-level module '_stddef' implicitly imported here
185:  #include <stddef.h>
186:  ^
187:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
188:  #include <sys/cdefs.h>
189:  ^
190:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
191:  extern module assert_h "c_standard_library.modulemap"
192:  ^
193:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
194:  module _stddef [system] {
...

208:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:
209:  #include <sys/_endian.h>
210:  ^
211:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:
212:  #include <libkern/_OSByteOrder.h>
213:  ^
214:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:
215:  #include <sys/_types.h>
216:  ^
217:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:
218:  #include <machine/_types.h>
219:  ^
220:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:
221:  #include "arm/_types.h"
222:  ^
223:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/_types.h:75:9: error: unknown type name 'ptrdiff_t'
224:  typedef ptrdiff_t               __darwin_ptrdiff_t;     /* ptr1 - ptr2 */
...

235:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:
236:  #include <sys/_endian.h>
237:  ^
238:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:
239:  #include <libkern/_OSByteOrder.h>
240:  ^
241:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:
242:  #include <sys/_types.h>
243:  ^
244:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:
245:  #include <machine/_types.h>
246:  ^
247:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:
248:  #include "arm/_types.h"
249:  ^
250:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/_types.h:85:9: error: unknown type name 'size_t'
251:  typedef size_t                  __darwin_size_t;        /* sizeof() */
...

262:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/endian.h:61:
263:  #include <sys/_endian.h>
264:  ^
265:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_endian.h:131:
266:  #include <libkern/_OSByteOrder.h>
267:  ^
268:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/libkern/_OSByteOrder.h:32:
269:  #include <sys/_types.h>
270:  ^
271:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types.h:33:
272:  #include <machine/_types.h>
273:  ^
274:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/_types.h:34:
275:  #include "arm/_types.h"
276:  ^
277:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/_types.h:101:9: error: unknown type name 'wchar_t'
278:  typedef wchar_t                 __darwin_wchar_t;       /* wchar_t */
279:  ^
280:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
281:  #include <sys/cdefs.h>
282:  ^
283:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
284:  extern module assert_h "c_standard_library.modulemap"
285:  ^
286:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
287:  module _stddef [system] {
288:  ^
289:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_null.h:40:10: note: submodule of top-level module '_stddef' implicitly imported here
290:  #include <stddef.h>
291:  ^
292:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
293:  #include <sys/cdefs.h>
294:  ^
295:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
296:  extern module assert_h "c_standard_library.modulemap"
297:  ^
298:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
299:  module _stddef [system] {
300:  ^
301:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_offsetof.h:40:10: note: submodule of top-level module '_stddef' implicitly imported here
302:  #include <stddef.h>
303:  ^
304:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: note: while building module 'DarwinFoundation' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:
305:  #include <sys/cdefs.h>
306:  ^
307:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:1: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/module.modulemap:56:
308:  extern module assert_h "c_standard_library.modulemap"
309:  ^
310:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/c_standard_library.modulemap:318:8: error: module '_stddef' requires feature 'found_incompatible_headers__check_search_paths'
311:  module _stddef [system] {
312:  ^
313:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_rsize_t.h:40:10: note: submodule of top-level module '_stddef' implicitly imported here
314:  #include <stddef.h>
315:  ^
316:  <module-includes>:1:9: note: in file included from <module-includes>:1:
317:  #import "copyfile.h"
318:  ^
319:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:35:10: error: could not build module 'DarwinFoundation'
320:  #include <sys/cdefs.h>
321:  ^
322:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:36:10: note: while building module '_stdint' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/copyfile.h:36:
323:  #include <stdint.h>
324:  ^
325:  <module-includes>:1:9: note: in file included from <module-includes>:1:
326:  #import "/Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/stdint.h"
327:  ^
328:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/stdint.h:52:16: note: in file included from /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/stdint.h:52:
329:  # include_next <stdint.h>
330:  ^
331:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/stdint.h:18:10: error: could not build module 'DarwinFoundation'
332:  #include <sys/_types/_int8_t.h>
333:  ^
334:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:10: note: while building module 'sys_types' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:
335:  #include <sys/types.h>
336:  ^
337:  <module-includes>:1:9: note: in file included from <module-includes>:1:
338:  #import "sys/types.h"
339:  ^
340:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:72:10: error: could not build module 'DarwinFoundation'
341:  #include <sys/appleapiopts.h>
342:  ^
343:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:10: note: while building module 'sys_types' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:
344:  #include <sys/types.h>
345:  ^
346:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:113:10: note: while building module 'netinet_in' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:113:
347:  #include <sys/_types/_in_addr_t.h>
348:  ^
349:  <module-includes>:1:9: note: in file included from <module-includes>:1:
350:  #import "sys/_types/_in_addr_t.h"
351:  ^
352:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_in_addr_t.h:30:10: error: could not build module 'DarwinFoundation'
353:  #include <machine/types.h> /* __uint32_t */
354:  ^
355:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:10: note: while building module 'sys_types' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:
356:  #include <sys/types.h>
357:  ^
358:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:173:10: note: while building module '_useconds_t' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:173:
359:  #include <sys/_types/_useconds_t.h>
360:  ^
361:  <module-includes>:1:9: note: in file included from <module-includes>:1:
362:  #import "sys/_types/_useconds_t.h"
363:  ^
364:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_useconds_t.h:30:10: error: could not build module 'DarwinFoundation'
365:  #include <sys/_types.h> /* __darwin_useconds_t */
366:  ^
367:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:10: note: while building module 'sys_types' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:
368:  #include <sys/types.h>
369:  ^
370:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:178:10: note: while building module '_errno' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:178:
371:  #include <sys/_types/_errno_t.h>
372:  ^
373:  <module-includes>:1:9: note: in file included from <module-includes>:1:
374:  #import "errno.h"
375:  ^
376:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/errno.h:23:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/errno.h:23:
377:  #include <sys/errno.h>
378:  ^
379:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/errno.h:72:10: error: could not build module 'DarwinFoundation'
380:  #include <sys/cdefs.h>
381:  ^
382:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:10: note: while building module 'sys_types' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/util.h:64:
383:  #include <sys/types.h>
384:  ^
385:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:187:10: note: while building module '_sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/types.h:187:
386:  #include <sys/_types/_fd_def.h>
387:  ^
388:  <module-includes>:1:9: note: in file included from <module-includes>:1:
389:  #import "sys/_types/_fd_def.h"
390:  ^
391:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_fd_def.h:31:10: error: could not build module 'DarwinFoundation'
392:  #include <machine/types.h> /* __int32_t and uintptr_t */
393:  ^
394:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/stdio.h:61:10: note: while building module '_stdio' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/stdio.h:61:
395:  #include <_stdio.h>
396:  ^
397:  <module-includes>:1:9: note: in file included from <module-includes>:1:
398:  #import "_stdio.h"
399:  ^
400:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_stdio.h:69:10: error: could not build module 'DarwinFoundation'
401:  #include <_bounds.h>
402:  ^
403:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/uuid/uuid.h:39:10: note: while building module 'uuid' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/uuid/uuid.h:39:
404:  #include <sys/_types/_uuid_t.h>
405:  ^
406:  <module-includes>:1:9: note: in file included from <module-includes>:1:
407:  #import "sys/_types/_uuid_t.h"
408:  ^
409:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_uuid_t.h:30:10: error: could not build module 'DarwinFoundation'
410:  #include <sys/_types.h> /* __darwin_uuid_t */
411:  ^
412:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
413:  #include <sys/_types/_posix_vdisable.h>
414:  ^
415:  <module-includes>:1:9: note: in file included from <module-includes>:1:
416:  #import "unistd.h"
417:  ^
418:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:71:10: error: could not build module 'DarwinFoundation'
419:  #include <_bounds.h>
420:  ^
421:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
422:  #include <sys/_types/_posix_vdisable.h>
423:  ^
424:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:75:10: note: while building module '_limits' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:75:
425:  #include <sys/syslimits.h>
426:  ^
427:  <module-includes>:1:9: note: in file included from <module-includes>:1:
428:  #import "/Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/limits.h"
429:  ^
430:  /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/limits.h:21:15: note: in file included from /Users/runner/hostedtoolcache/swift-macOS/5.9.2/arm64/usr/lib/swift/clang/include/limits.h:21:
431:  #include_next <limits.h>
432:  ^
433:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/limits.h:63:10: error: could not build module 'DarwinFoundation'
434:  #include <sys/cdefs.h>
435:  ^
436:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
437:  #include <sys/_types/_posix_vdisable.h>
438:  ^
439:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:10: note: while building module 'sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:
440:  #include <sys/select.h>
441:  ^
442:  <module-includes>:1:9: note: in file included from <module-includes>:1:
443:  #import "sys/select.h"
444:  ^
445:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:66:10: error: could not build module 'DarwinFoundation'
446:  #include <sys/appleapiopts.h>
447:  ^
448:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
449:  #include <sys/_types/_posix_vdisable.h>
450:  ^
451:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:10: note: while building module 'sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:
452:  #include <sys/select.h>
453:  ^
454:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:76:10: note: while building module '_time' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:76:
455:  #include <sys/_types/_timespec.h>
456:  ^
457:  <module-includes>:1:9: note: in file included from <module-includes>:1:
458:  #import "_time.h"
459:  ^
460:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_time.h:66:10: error: could not build module 'DarwinFoundation'
461:  #include <_types.h>
462:  ^
463:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
464:  #include <sys/_types/_posix_vdisable.h>
465:  ^
466:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:10: note: while building module 'sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:
467:  #include <sys/select.h>
468:  ^
469:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:77:10: note: while building module 'sys_time' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:77:
470:  #include <sys/_types/_timeval.h>
471:  ^
472:  <module-includes>:1:9: note: in file included from <module-includes>:1:
473:  #import "sys/_types/_timeval.h"
474:  ^
475:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_timeval.h:31:10: error: could not build module 'DarwinFoundation'
476:  #include <machine/types.h> /* __darwin_time_t */
...

478:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
479:  #include <sys/_types/_posix_vdisable.h>
480:  ^
481:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:10: note: while building module 'sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:
482:  #include <sys/select.h>
483:  ^
484:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:86:10: note: while building module '_signal' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:86:
485:  #include <sys/_types/_sigset_t.h>
486:  ^
487:  <module-includes>:1:9: note: in file included from <module-includes>:1:
488:  #import "machine/signal.h"
489:  ^
490:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/signal.h:34:10: note: in file included from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/machine/signal.h:34:
491:  #include "arm/signal.h"
492:  ^
493:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/signal.h:14:10: error: could not build module 'DarwinFoundation'
494:  #include <sys/cdefs.h>
...

496:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
497:  #include <sys/_types/_posix_vdisable.h>
498:  ^
499:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:10: note: while building module 'sys_select' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:643:
500:  #include <sys/select.h>
501:  ^
502:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:86:10: note: while building module '_signal' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/select.h:86:
503:  #include <sys/_types/_sigset_t.h>
504:  ^
505:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/_mcontext.h:36:10: note: while building module 'mach' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/arm/_mcontext.h:36:
506:  #include <mach/machine/_structs.h>
507:  ^
508:  <module-includes>:1:9: note: in file included from <module-includes>:1:
509:  #import "sys/_types/_mach_port_t.h"
510:  ^
511:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_mach_port_t.h:49:10: error: could not build module 'DarwinFoundation'
512:  #include <sys/_types.h> /* __darwin_mach_port_t */
513:  ^
514:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:10: note: while building module 'unistd' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/termios.h:110:
515:  #include <sys/_types/_posix_vdisable.h>
516:  ^
517:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:660:10: note: while building module 'gethostuuid' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/unistd.h:660:
518:  #include <gethostuuid.h>
519:  ^
520:  <module-includes>:1:9: note: in file included from <module-includes>:1:
521:  #import "gethostuuid.h"
522:  ^
523:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/gethostuuid.h:32:10: error: could not build module '_time'
524:  #include <sys/_types/_timespec.h>
525:  ^
526:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/assert.h:58:10: note: while building module '_assert' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/assert.h:58:
527:  #include <_assert.h>
528:  ^
529:  <module-includes>:1:9: note: in file included from <module-includes>:1:
530:  #import "_assert.h"
531:  ^
532:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_assert.h:45:10: error: could not build module 'DarwinFoundation'
533:  #include <sys/cdefs.h>
534:  ^
535:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_complex.h:31:10: note: while building module '_complex' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_complex.h:31:
536:  #include <complex.h>
537:  ^
538:  <module-includes>:1:9: note: in file included from <module-includes>:1:
539:  #import "complex.h"
540:  ^
541:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/complex.h:34:10: error: could not build module 'DarwinFoundation'
542:  #include <sys/cdefs.h>
543:  ^
544:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/ctype.h:66:10: note: while building module '_ctype' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/ctype.h:66:
545:  #include <_ctype.h>
546:  ^
547:  <module-includes>:1:9: note: in file included from <module-includes>:1:
548:  #import "_ctype.h"
549:  ^
550:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_ctype.h:70:10: error: could not build module 'DarwinFoundation'
551:  #include <sys/cdefs.h>
552:  ^
553:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/ctype.h:66:10: note: while building module '_ctype' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/ctype.h:66:
554:  #include <_ctype.h>
555:  ^
556:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_ctype.h:72:10: note: while building module 'runetype' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_ctype.h:72:
557:  #include <runetype.h>
558:  ^
559:  <module-includes>:1:9: note: in file included from <module-includes>:1:
560:  #import "runetype.h"
561:  ^
562:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/runetype.h:42:10: error: could not build module 'DarwinFoundation'
563:  #include <_bounds.h>
564:  ^
565:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/inttypes.h:31:10: note: while building module '_inttypes' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/inttypes.h:31:
566:  #include <_inttypes.h>
567:  ^
568:  <module-includes>:1:9: note: in file included from <module-includes>:1:
569:  #import "_inttypes.h"
570:  ^
571:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_inttypes.h:223:10: error: could not build module 'DarwinFoundation'
572:  #include <sys/cdefs.h>
573:  ^
574:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_locale.h:31:10: note: while building module '_locale' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_locale.h:31:
575:  #include <locale.h>
576:  ^
577:  <module-includes>:1:9: note: in file included from <module-includes>:1:
578:  #import "locale.h"
579:  ^
580:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/locale.h:40:10: error: could not build module 'DarwinFoundation'
581:  #include <_bounds.h>
582:  ^
583:  /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_math.h:31:10: note: while building module '_math' imported from /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/_modules/_math.h:31:
584:  #include <math.h>
585:  ^
586:  <module-includes>:1:9: note...

@tkausch
tkausch merged commit 8f97074 into main Nov 3, 2025
3 checks passed
@tkausch
tkausch deleted the MarkdownDocumentationRewrite branch November 17, 2025 16:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant