The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SQLiteVec, reference 0.0.13 (eaa734), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 00:14:13 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.61.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jkrukowski/SQLiteVec.git
Reference: 0.0.13
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jkrukowski/SQLiteVec
 * tag               0.0.13     -> FETCH_HEAD
HEAD is now at eaa734a Added FTS5 tests, formatting
Cloned https://github.com/jkrukowski/SQLiteVec.git
Revision (git rev-parse @):
eaa734a8c7615e2ef791c218280292f27d33db39
SUCCESS checkout https://github.com/jkrukowski/SQLiteVec.git at 0.0.13
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/jkrukowski/SQLiteVec.git
https://github.com/jkrukowski/SQLiteVec.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SQLiteVec",
  "name" : "SQLiteVec",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SQLiteVecCLI",
      "targets" : [
        "SQLiteVecCLI"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SQLiteVec",
      "targets" : [
        "SQLiteVec"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CSQLiteVec",
      "targets" : [
        "CSQLiteVec"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SQLiteVecTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVecTests",
      "path" : "Tests/SQLiteVecTests",
      "sources" : [
        "CoreTests.swift",
        "DatabaseTests.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "SQLiteVec"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLiteVecCLI",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVecCLI",
      "path" : "Sources/SQLiteVecCLI",
      "product_memberships" : [
        "SQLiteVecCLI"
      ],
      "sources" : [
        "CLI.swift"
      ],
      "target_dependencies" : [
        "SQLiteVec"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SQLiteVec",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVec",
      "path" : "Sources/SQLiteVec",
      "product_memberships" : [
        "SQLiteVecCLI",
        "SQLiteVec"
      ],
      "sources" : [
        "Core.swift",
        "Database.swift",
        "Models.swift"
      ],
      "target_dependencies" : [
        "CSQLiteVec"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSQLiteVec",
      "module_type" : "ClangTarget",
      "name" : "CSQLiteVec",
      "path" : "Sources/CSQLiteVec",
      "product_memberships" : [
        "SQLiteVecCLI",
        "SQLiteVec",
        "CSQLiteVec"
      ],
      "sources" : [
        "extinit.c",
        "sqlite-vec.c",
        "sqlite3.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/10] Write sources
[0/10] Write SQLiteVecCLI-entitlement.plist
[3/10] Write swift-version-2F0A5646E1D333AE.txt
[4/10] Compiling CSQLiteVec extinit.c
[5/10] Compiling CSQLiteVec sqlite-vec.c
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:31923:25: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 31923 |           szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15;
       |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:66475:19: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 66475 |       u32 iLast = MIN(iLastFrame, HASHTABLE_NPAGE_ONE+iPg*HASHTABLE_NPAGE);
       |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:72521:32: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 72521 |     rc = defragmentPage(pPage, MIN(4, pPage->nFree - (2+nByte)));
       |                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:73229:43: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 73229 |       char *zFullPathname = sqlite3Malloc(MAX(nFullPathname,nFilename));
       |                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:76006:11: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 76006 |     amt = MAX(0, (int)(pCur->pPage->aDataEnd - pCur->info.pPayload));
       |           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:78475:16: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 78475 |     int nAdd = MIN(nNew,iOld-iNew);
       |                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80330:23: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 80330 |           int nCopy = MIN(nOut, nIn);
       |                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80364:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 80364 |           nOut = MIN(pBt->usableSize - 4, nRem);
       |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:82370:21: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 82370 |   const int nCopy = MIN(nSrcPgsz, nDestPgsz);
       |                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:82641:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 82641 |           iEnd = MIN(PENDING_BYTE + pgszDest, iSize);
       |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:84128:49: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 84128 |     if( sqlite3VdbeMemClearAndResize(pMem, (int)MAX(nAlloc,32)) ){
       |                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:89799:22: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 89799 |           int nCmp = MIN(mem1.n, pRhs->n);
       |                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:89827:22: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 89827 |           int nCmp = MIN(nStr, pRhs->n);
       |                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:90035:12: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 90035 |     nCmp = MIN( pPKey2->n, nStr );
       |            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:93219:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 93219 |       nextIndex = MAX(idx + 1, nextIndex);
       |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:103661:28: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 103661 |       sqlite3_int64 nNew = MAX(128, 2*(sqlite3_int64)p->nAlloc);
        |                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:103942:25: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 103942 |   res = memcmp(v1, v2, (MIN(n1, n2) - 13)/2);
        |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104128:17: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 104128 |       mxCache = MIN(mxCache, SQLITE_MAX_PMASZ);
        |                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104129:28: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 104129 |       pSorter->mxPmaSize = MAX(pSorter->mnPmaSize, (int)mxCache);
        |                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:105127:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 105127 |     pIncr->mxSz = MAX(pTask->pSorter->mxKeysize+9,pTask->pSorter->mxPmaSize/2);
        |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:105581:21: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 105581 |           nReader = MIN(pTask->nPMA - i, SORTER_MAX_MERGE_COUNT);
        |                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:106458:17: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 106458 |     int nCopy = MIN(nRead, (p->nChunkSize - iChunkOffset));
        |                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:106565:22: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 106565 |         int iSpace = MIN(nWrite, p->nChunkSize - iChunkOffset);
        |                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:106779:10: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 106779 |   return MAX(pVfs->szOsFile, (int)sizeof(MemJournal));
        |          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:120070:18: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 120070 |   pParse->nTab = MAX(pParse->nTab, iTab);
        |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:126473:15: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 126473 |   int nCopy = MIN(ArraySize(aVal), pIdx->nKeyCol);
        |               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:159042:65: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 159042 |       aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*MAX(nEq,n));
        |                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:160232:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 160232 |       nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm);
        |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:160239:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 160239 |       nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop);
        |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:164250:14: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 164250 |   mxBitCol = MIN(BMS-1,pTable->nCol);
        |              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:165835:25: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 165835 |       pTemplate->rRun = MIN(p->rRun, pTemplate->rRun);
        |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:165836:25: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 165836 |       pTemplate->nOut = MIN(p->nOut - 1, pTemplate->nOut);
        |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:165844:25: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 165844 |       pTemplate->rRun = MAX(p->rRun, pTemplate->rRun);
        |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:165845:25: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 165845 |       pTemplate->nOut = MAX(p->nOut + 1, pTemplate->nOut);
        |                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:166189:10: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 166189 |   nCmp = MIN(nCmp, (pIdx->nColumn - nEq));
        |          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:168754:19: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 168754 |   aFrom[0].nRow = MIN(pParse->nQueryLoop, 48);  assert( 48==sqlite3LogEst(28) );
        |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:172664:12: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 172664 |     nArg = MAX(nArg, windowArgCount(pWin));
        |            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:240639:18: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 240639 |     p->iHeight = MAX(p->iHeight, p->apChild[ii]->iHeight + 1);
        |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:242050:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 242050 |       int nMin = MIN(p1->nKey, p2->nKey);
        |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:242989:10: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 242989 |   nCmp = MIN(pLeft->n, pRight->n);
        |          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:243368:27: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 243368 |             nOriginCntr = MAX(nOriginCntr, pSeg->iOrigin2);
        |                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244056:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 244056 |       int iEod = MIN(pIter->iEndofDoclist, pIter->pLeaf->szLeaf);
        |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244754:19: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 244754 |       nCmp = (u32)MIN(nNew, nTerm-nMatch);
        |                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245760:16: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 245760 |   int nChunk = MIN(nRem, pSeg->pLeaf->szLeaf - pSeg->iLeafOffset);
        |                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245785:16: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 245785 |       nChunk = MIN(nRem, pData->szLeaf - 4);
        |                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:246129:14: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 246129 |       nSeg = MIN(pStruct->aLevel[iLevel].nSeg, nSegment);
        |              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:246635:14: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 246635 |   int nMin = MIN(pPage->term.n, nTerm);
        |              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247579:17: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 247579 |       nPrefix = MIN(nPrefix, nPrefix2);
        |                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247995:20: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 247995 |     pNew->nLevel = MIN(pStruct->nLevel+1, FTS5_MAX_LEVEL);
        |                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:248511:40: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 248511 |       assert_nc( memcmp(pToken, pTerm, MIN(nToken, nTerm))<=0 );
        |                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:249759:22: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 249759 |   int nSlotPerPage = MAX(MINSLOT, (p->pConfig->pgsz - 8) / szKey);
        |                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:249789:13: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
 249789 |     nSlot = MAX(nElem*4, MINSLOT);
        |             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
  218 | #define MAX(a, b) (((a)>(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14972:10: note: other definition of 'MAX'
 14972 | # define MAX(A,B) ((A)>(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:250296:53: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 250296 |         res = fts5Memcmp(&pLeaf->p[iOff], zIdxTerm, MIN(nTerm, nIdxTerm));
        |                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:259705:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 259705 |       int nCmp = MIN(nTerm, pCsr->nLeTerm);
        |                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:259779:20: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
 259779 |         int nCmp = MIN(nTerm, pCsr->nLeTerm);
        |                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
  215 | #define MIN(a, b) (((a)<(b))?(a):(b))
      |         ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:14969:10: note: other definition of 'MIN'
 14969 | # define MIN(A,B) ((A)<(B)?(A):(B))
       |          ^
55 warnings generated.
[6/10] Compiling CSQLiteVec sqlite3.c
[8/14] Compiling SQLiteVec Core.swift
[9/14] Compiling SQLiteVec Models.swift
[10/14] Emitting module SQLiteVec
[11/14] Compiling SQLiteVec Database.swift
[12/16] Emitting module SQLiteVecCLI
[13/16] Compiling SQLiteVecCLI CLI.swift
[13/16] Write Objects.LinkFileList
[14/16] Linking SQLiteVecCLI
[15/16] Applying SQLiteVecCLI
Build complete! (7.89s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SQLiteVec",
  "name" : "SQLiteVec",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SQLiteVecCLI",
      "targets" : [
        "SQLiteVecCLI"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SQLiteVec",
      "targets" : [
        "SQLiteVec"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CSQLiteVec",
      "targets" : [
        "CSQLiteVec"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SQLiteVecTests",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVecTests",
      "path" : "Tests/SQLiteVecTests",
      "sources" : [
        "CoreTests.swift",
        "DatabaseTests.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "SQLiteVec"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SQLiteVecCLI",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVecCLI",
      "path" : "Sources/SQLiteVecCLI",
      "product_memberships" : [
        "SQLiteVecCLI"
      ],
      "sources" : [
        "CLI.swift"
      ],
      "target_dependencies" : [
        "SQLiteVec"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SQLiteVec",
      "module_type" : "SwiftTarget",
      "name" : "SQLiteVec",
      "path" : "Sources/SQLiteVec",
      "product_memberships" : [
        "SQLiteVecCLI",
        "SQLiteVec"
      ],
      "sources" : [
        "Core.swift",
        "Database.swift",
        "Models.swift"
      ],
      "target_dependencies" : [
        "CSQLiteVec"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSQLiteVec",
      "module_type" : "ClangTarget",
      "name" : "CSQLiteVec",
      "path" : "Sources/CSQLiteVec",
      "product_memberships" : [
        "SQLiteVecCLI",
        "SQLiteVec",
        "CSQLiteVec"
      ],
      "sources" : [
        "extinit.c",
        "sqlite-vec.c",
        "sqlite3.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.