#if os(macOS) import Foundation import MachO #endif /// Information about this executable. public enum ExecutableInfo { /// A stable identifier for this executable. Uses the Mach-O header UUID on macOS. Nil on Linux. public static let buildID: String? = { #if os(macOS) func getUUID(pointer: UnsafeRawPointer) -> UUID? { var offset: UInt64 = 0 let header = pointer.bindMemory(to: mach_header_64.self, capacity: 1) offset += UInt64(MemoryLayout.size) for _ in 0..