The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SipHash with Swift 5.9 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.0.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.27.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/attaswift/SipHash.git
Reference: master
Initialized empty Git repository in /Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/attaswift/SipHash
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 527b277 Update README, explicitly marking this package as obsolete
Cloned https://github.com/attaswift/SipHash.git
Revision (git rev-parse @):
527b2773671280f6051fc5059804b37e93b825a2
SUCCESS checkout https://github.com/attaswift/SipHash.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "siphash",
      "name": "SipHash",
      "url": "https://github.com/attaswift/SipHash.git",
      "version": "unspecified",
      "path": "/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SipHash",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/attaswift/SipHash.git
[1/440] Fetching siphash
Fetched https://github.com/attaswift/SipHash.git (0.42s)
Creating working copy for https://github.com/attaswift/SipHash.git
Working copy of https://github.com/attaswift/SipHash.git resolved at master
warning: '.resolve-product-dependencies': dependency 'siphash' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.9
Building package at path:  $PWD/checkout
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.0.0.app xcrun swift build --arch arm64
Building for debugging...
[1/6] Compiling SipHash SipHasher.swift
[2/6] Emitting module SipHash
[3/6] Compiling SipHash SipHashable.swift
[4/6] Compiling SipHash RandomUInt64.swift
[5/6] Compiling SipHash Primitive Types.swift
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:26:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Bool>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:26:46: note: implicit argument conversion from 'Bool' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Bool>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:26:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Bool>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:34:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:34:46: note: implicit argument conversion from 'Int' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:34:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:42:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:42:46: note: implicit argument conversion from 'UInt' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:42:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:50:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int64>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:50:46: note: implicit argument conversion from 'Int64' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int64>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:50:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int64>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:58:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt64>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:58:46: note: implicit argument conversion from 'UInt64' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt64>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:58:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt64>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:66:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int32>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:66:46: note: implicit argument conversion from 'Int32' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int32>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:66:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int32>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:74:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt32>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:74:46: note: implicit argument conversion from 'UInt32' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt32>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:74:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt32>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:82:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int16>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:82:46: note: implicit argument conversion from 'Int16' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int16>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:82:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int16>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:90:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt16>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:90:46: note: implicit argument conversion from 'UInt16' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt16>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:90:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt16>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:98:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int8>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:98:46: note: implicit argument conversion from 'Int8' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int8>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:98:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Int8>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:106:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt8>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:106:46: note: implicit argument conversion from 'UInt8' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt8>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:106:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<UInt8>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:118:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Float>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:118:46: note: implicit argument conversion from 'Float' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Float>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:118:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Float>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:126:16: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Double>.size))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:126:46: note: implicit argument conversion from 'Double' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Double>.size))
                                             ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:126:46: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
        append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<Double>.size))
                                             ^
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:151:20: warning: initialization of 'UnsafeRawBufferPointer' results in a dangling buffer pointer
            append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<CGFloat>.size))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:151:50: note: implicit argument conversion from 'CGFloat' to 'UnsafeRawPointer?' produces a pointer valid only for the duration of the call to 'init(start:count:)'
            append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<CGFloat>.size))
                                                 ^~~~~
/Users/admin/builds/J1XnyXFH/1/finestructure/swiftpackageindex-builder/spi-builder-workspace/SipHash/Primitive Types.swift:151:50: note: use 'withUnsafeBytes' in order to explicitly convert argument to buffer pointer valid for a defined scope
            append(UnsafeRawBufferPointer(start: &data, count: MemoryLayout<CGFloat>.size))
                                                 ^
[5/6] Linking libSipHash.dylib
Build complete! (5.85s)
Build complete.
Done.