Build Information
Successful build of SQLiteVec, reference 0.0.13 (eaa734
), with Swift 5.10 for tvOS using Xcode 15.4 on 27 Nov 2024 22:46:48 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.4.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SQLiteVec-Package -destination generic/platform=tvOS
Build Log
~~~~~~~~~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6377:31: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
metadataInIdx = i;
~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6437:83: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = vec0_metadata_filter_text(p, value, buffer, size, op, b, metadata_idx, chunk_rowid, aMetadataIn, argv_idx);
~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6482:34: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
topk_rowids = sqlite3_malloc(k * sizeof(i64));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6489:37: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
topk_distances = sqlite3_malloc(k * sizeof(f32));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6496:38: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
tmp_topk_rowids = sqlite3_malloc(k * sizeof(i64));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6503:41: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
tmp_topk_distances = sqlite3_malloc(k * sizeof(f32));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6512:32: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
baseVectors = sqlite3_malloc(baseVectorsSize);
~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6536:38: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
chunk_topk_idxs = sqlite3_malloc(k * sizeof(i32));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6557:22: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
int idxStrLength = strlen(idxStr);
~~~~~~~~~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6634:54: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_read(blobVectors, baseVectors, currentBaseVectorsSize, 0);
~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:6755:17: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
min(k, p->chunk_size), bTaken, &used1);
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:113:36: note: expanded from macro 'min'
#define min(a, b) (((a) <= (b)) ? (a) : (b))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7193:22: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
int idxStrLength = strlen(idxStr);
~~~~~~~~~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7401:9: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
vector_column_byte_size(pVtab->vector_columns[vector_idx]),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7684:42: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
*bufferChunksValidity = sqlite3_malloc(validitySize);
~~~~~~~~~~~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7693:26: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
validitySize, 0);
^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7763:44: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
*bufferChunksValidity = sqlite3_malloc(validitySize);
~~~~~~~~~~~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7765:28: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
validitySize, 0);
^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7803:20: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
n = dimensions * sizeof(f32);
~ ~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7804:40: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
offset = chunk_offset * dimensions * sizeof(f32);
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7807:20: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
n = dimensions * sizeof(i8);
~ ~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7808:40: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
offset = chunk_offset * dimensions * sizeof(i8);
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7811:20: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
n = dimensions / CHAR_BIT;
~ ~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7812:40: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
offset = chunk_offset * dimensions / CHAR_BIT;
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7846:68: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobChunksValidity, &bx, 1, chunk_offset / CHAR_BIT);
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:7928:40: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
chunk_offset * sizeof(i64));
~~~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8014:75: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &block, sizeof(u8), chunk_offset / CHAR_BIT);
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8019:78: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &value, sizeof(value), chunk_offset * sizeof(i64));
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8024:78: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &value, sizeof(value), chunk_offset * sizeof(double));
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8029:76: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_read(blobValue, &prev_n, sizeof(int), chunk_offset * VEC0_METADATA_TEXT_VIEW_BUFFER_LENGTH);
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8041:101: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &view, VEC0_METADATA_TEXT_VIEW_BUFFER_LENGTH, chunk_offset * VEC0_METADATA_TEXT_VIEW_BUFFER_LENGTH);
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8349:37: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
int validityOffset = chunk_offset / CHAR_BIT;
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8482:75: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &block, sizeof(u8), chunk_offset / CHAR_BIT);
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8487:70: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &v, sizeof(v), chunk_offset * sizeof(i64));
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8492:70: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &v, sizeof(v), chunk_offset * sizeof(double));
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8497:71: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_read(blobValue, &n, sizeof(int), chunk_offset * VEC0_METADATA_TEXT_VIEW_BUFFER_LENGTH);
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:8504:76: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_blob_write(blobValue, &view, sizeof(view), chunk_offset * VEC0_METADATA_TEXT_VIEW_BUFFER_LENGTH);
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9432:41: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
i32 *topk_rowids = sqlite3_malloc(k * sizeof(i32));
~~~~~~~~~~~~~~ ~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9437:43: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
f32 *distances = sqlite3_malloc(bsize * sizeof(f32));
~~~~~~~~~~~~~~ ~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9449:33: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
u8 *candidates = bitmap_new(bsize);
~~~~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9452:28: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
u8 *taken = bitmap_new(bsize);
~~~~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9455:29: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
bitmap_fill(candidates, bsize);
~~~~~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9457:30: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
bitmap_set(candidates, i, 0);
~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9460:56: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
min_idx(distances, bsize, candidates, topk_rowids, k, taken, &k_used);
~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9460:24: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'i32' (aka 'int') [-Wshorten-64-to-32]
min_idx(distances, bsize, candidates, topk_rowids, k, taken, &k_used);
~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9536:31: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
p->blob->dimensions * sizeof(float), SQLITE_TRANSIENT);
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite-vec.c:9549:47: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
p->blob->dimensions * sizeof(float),
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
119 warnings generated.
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/sqlite3.o /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'CSQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/sqlite3.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/sqlite3.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/sqlite3.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/sqlite3.o
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:31923:25: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15;
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:32074:60: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
&pAccum->zText[pAccum->nChar-nCopyBytes], nCopyBytes);
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:32179:18: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
length = j;
~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:36951:14: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'VList' (aka 'int') [-Wshorten-64-to-32]
pIn[0] = nAlloc;
~ ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:38594:8: warning: "gethostuuid() is disabled." [-W#warnings]
# warning "gethostuuid() is disabled."
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:39912:14: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
do{ rc = osWrite(fd, "S", 1); }while( rc<0 && errno==EINTR );
~ ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:38943:21: note: expanded from macro 'osWrite'
#define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent)
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:41630:42: warning: implicit conversion loses integer precision: 'unsigned long long' to 'int' [-Wshorten-64-to-32]
int sharedLockByte = SHARED_FIRST+pInode->sharedByte;
~~~~~~~~~~~~~~ ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:41772:11: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
got = osPread(id->h, pBuf, cnt, offset);
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:38933:21: note: expanded from macro 'osPread'
#define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:41839:35: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nCopy = pFile->mmapSize - offset;
~~~~~ ~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:43343:33: warning: implicit conversion loses integer precision: 'off_t' (aka 'long long') to 'int' [-Wshorten-64-to-32]
for(iPg=(sStat.st_size/pgsz); iPg<(nByte/pgsz); iPg++){
~ ~~~~~~~~~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:45275:17: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR );
~ ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:38926:21: note: expanded from macro 'osRead'
#define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:45592:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
len = strlcat(lPath, "sqliteplocks", maxLen);
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/secure/_string.h:119:3: note: expanded from macro 'strlcat'
__builtin___strlcat_chk (dest, __VA_ARGS__, __darwin_obsz (dest))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:45600:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
len = strlcat(lPath, "/", maxLen);
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/secure/_string.h:119:3: note: expanded from macro 'strlcat'
__builtin___strlcat_chk (dest, __VA_ARGS__, __darwin_obsz (dest))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:45893:19: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
int len = osPread(conchFile->h, tBuf, PROXY_MAXCONCHLEN, 0);
~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:38933:21: note: expanded from macro 'osPread'
#define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:46056:37: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]);
~ ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:46271:53: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
int len = strlen((char *)pFile->lockingContext) - strlen(DOTLOCK_SUFFIX);
~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:58717:57: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:58303:48: note: expanded from macro 'put32bits'
#define put32bits(A,B) sqlite3Put4byte((u8*)A,B)
~~~~~~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:58836:27: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
iPageSize = pPager->pageSize;
~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:59425:27: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int i = pPager->pageSize-200; /* Loop counter */
~ ~~~~~~~~~~~~~~~~^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:59511:47: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsRead(jfd, (u8*)aData, pPager->pageSize, (*pOffset)+4);
~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:59613:58: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsWrite(pPager->fd, (u8 *)aData, pPager->pageSize, ofst);
~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:59846:26: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int szPage = pPager->pageSize;
~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:59992:31: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
u32 savedPageSize = pPager->pageSize;
~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:60216:59: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3WalReadFrame(pPager->pWal, iFrame,pPager->pageSize,pPg->pData);
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:60221:56: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsRead(pPager->fd, pPg->pData, pPager->pageSize, iOffset);
~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:60400:15: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pPager->pageSize, pList, nTruncate, isCommit, pPager->walSyncFlags
~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:60985:24: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
*pPageSize = pPager->pageSize;
~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:61361:69: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
sqlite3WalClose(pPager->pWal, db, pPager->walSyncFlags, pPager->pageSize,a);
~~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:61646:54: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset);
~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:61736:59: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4);
~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:62847:51: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
(i64)(pgno-1) * pPager->pageSize, pPager->pageSize, &pData
~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:63182:52: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3OsWrite(pPager->jfd, pData2, pPager->pageSize, iOff+4);
~~~~~~~~~~~~~~ ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:64001:5: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
+ (int)(sizeof(PgHdr) + 5*sizeof(void*));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:64004:12: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
+ pPager->pageSize;
^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:64011:10: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
return sqlite3PcachePageRefcount(pPage);
~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:64698:39: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pPager->walSyncFlags, pPager->pageSize, (u8 *)pPager->pTmpSpace,
~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:64858:36: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pPager->pageSize, (u8*)pPager->pTmpSpace);
~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:66475:19: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
u32 iLast = MIN(iLastFrame, HASHTABLE_NPAGE_ONE+iPg*HASHTABLE_NPAGE);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:66471:40: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
iLastFrame = (nSize - WAL_HDRSIZE) / szFrame;
~ ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:71858:12: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
return nPayload;
~~~~~~ ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:71863:24: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize-4);
~ ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:72521:32: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
rc = defragmentPage(pPage, MIN(4, pPage->nFree - (2+nByte)));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
char *zFullPathname = sqlite3Malloc(MAX(nFullPathname,nFilename));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
amt = MAX(0, (int)(pCur->pPage->aDataEnd - pCur->info.pPayload));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
int nAdd = MIN(nNew,iOld-iNew);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80106:24: warning: implicit conversion loses integer precision: 'const sqlite3_int64' (aka 'const long long') to 'int' [-Wshorten-64-to-32]
x2.nData = pX->nKey;
~ ~~~~^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80330:23: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
int nCopy = MIN(nOut, nIn);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
nOut = MIN(pBt->usableSize - 4, nRem);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80300:31: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pBt->nPreformatSize = nIn + (aOut - pBt->pTmpSpace);
~ ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:80312:32: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pBt->nPreformatSize = nOut + (aOut - pBt->pTmpSpace);
~ ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:82370:21: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
const int nCopy = MIN(nSrcPgsz, nDestPgsz);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
iEnd = MIN(PENDING_BYTE + pgszDest, iSize);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
if( sqlite3VdbeMemClearAndResize(pMem, (int)MAX(nAlloc,32)) ){
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
int nCmp = MIN(mem1.n, pRhs->n);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
int nCmp = MIN(nStr, pRhs->n);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
nCmp = MIN( pPKey2->n, nStr );
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:92397:42: warning: implicit conversion loses integer precision: 'sqlite3_uint64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
rc = sqlite3_bind_zeroblob(pStmt, i, n);
~~~~~~~~~~~~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:93219:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
nextIndex = MAX(idx + 1, nextIndex);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:94136:48: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
rc = sqlite3BtreePayload(pC->uc.pCursor, iOffset, len, pBuf);
~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:94159:50: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
rc = sqlite3VdbeMemFromBtree(pC->uc.pCursor, iOffset, len, pDest);
~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:97018:21: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pOut->u.nZero = nZero;
~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:103661:28: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
sqlite3_int64 nNew = MAX(128, 2*(sqlite3_int64)p->nAlloc);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:103665:19: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
p->nAlloc = nNew;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:103942:25: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
res = memcmp(v1, v2, (MIN(n1, n2) - 13)/2);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
mxCache = MIN(mxCache, SQLITE_MAX_PMASZ);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
pSorter->mxPmaSize = MAX(pSorter->mnPmaSize, (int)mxCache);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104951:26: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pSorter->mxKeysize = nPMA;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104955:33: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nMin = pSorter->iMemory + nReq;
~~~~ ~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104962:45: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
iListOff = (u8*)pSorter->list.pList - pSorter->list.aMemory;
~ ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:104973:26: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pSorter->nMemory = nNew;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:105127:19: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
pIncr->mxSz = MAX(pTask->pSorter->mxKeysize+9,pTask->pSorter->mxPmaSize/2);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
nReader = MIN(pTask->nPMA - i, SORTER_MAX_MERGE_COUNT);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
int nCopy = MIN(nRead, (p->nChunkSize - iChunkOffset));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:106498:40: warning: implicit conversion loses integer precision: 'sqlite_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nChunk = copy.endpoint.iOffset - iOff;
~ ~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:106565:22: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
int iSpace = MIN(nWrite, p->nChunkSize - iChunkOffset);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
return MAX(pVfs->szOsFile, (int)sizeof(MemJournal));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:117928:16: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nOut = nSql;
~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:117938:22: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
nReplace = nNew;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:117941:22: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
nReplace = nQuot;
~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:117955:30: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
sqlite3_snprintf(nSql*2, zBuf2, "%Q%s", zBuf1,
~~~~~~~~~~~~~~~~ ~~~~^~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:117962:25: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
iOff = pBest->t.z - zSql;
~ ~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:118739:21: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
int flags = db->flags;
~~~~~ ~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:119461:15: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
p->nLimit = sqlite3_value_int64(argv[3]);
~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:120070:18: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
pParse->nTab = MAX(pParse->nTab, iTab);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
int nCopy = MIN(ArraySize(aVal), pIdx->nKeyCol);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:126742:20: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
pSrc->nAlloc = nAlloc;
~ ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:129906:24: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
sqlite3_randomness(n, p);
~~~~~~~~~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:129907:44: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
sqlite3_result_blob(context, (char*)p, n, sqlite3_free);
~~~~~~~~~~~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:130444:31: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
pStr->nChar = nBlob*2 + 3;
~ ~~~~~~~~^~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:130654:39: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
sqlite3_result_blob(pCtx, pBlob, (p - pBlob), sqlite3_free);
~~~~~~~~~~~~~~~~~~~ ~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:138565:36: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
~~~~~~~~~~~~~~~~ ~~~~^~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:138606:34: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
~~~~~~~~~~~~~~~~ ~~~~^~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:141794:28: warning: implicit conversion loses integer precision: 'const u64' (aka 'const unsigned long long') to 'int' [-Wshorten-64-to-32]
int iCookie = pPragma->iArg; /* Which cookie to read or write */
~~~~~~~ ~~~~~~~~~^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:149849:29: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
int flags = pParse->db->flags;
~~~~~ ~~~~~~~~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:159042:65: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*MAX(nEq,n));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
mxBitCol = MIN(BMS-1,pTable->nCol);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
pTemplate->rRun = MIN(p->rRun, pTemplate->rRun);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
pTemplate->nOut = MIN(p->nOut - 1, pTemplate->nOut);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
pTemplate->rRun = MAX(p->rRun, pTemplate->rRun);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
pTemplate->nOut = MAX(p->nOut + 1, pTemplate->nOut);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
nCmp = MIN(nCmp, (pIdx->nColumn - nEq));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
aFrom[0].nRow = MIN(pParse->nQueryLoop, 48); assert( 48==sqlite3LogEst(28) );
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:171115:28: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nSize = (p->nTotal / p->nParam);
~~~~~ ~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:172664:12: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
nArg = MAX(nArg, windowArgCount(pWin));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# define MAX(A,B) ((A)>(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:173926:61: warning: implicit conversion loses integer precision: 'sqlite3_uint64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
return sqlite3FaultSim(700) ? 0 : sqlite3_realloc(pOld, newSize);
~~~~~~~~~~~~~~~ ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:181895:19: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nBig = szAlloc/(3*LOOKASIDE_SMALL+sz);
~ ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:181896:30: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL;
~ ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:181898:19: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nBig = szAlloc/(LOOKASIDE_SMALL+sz);
~ ~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:181899:30: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL;
~ ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:181903:19: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
nBig = szAlloc/sz;
~ ~~~~~~~^~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:206962:28: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
pParse->nJson = p->nUsed;
~ ~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:208188:20: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'int' [-Wshorten-64-to-32]
px.nJson = pStr->nUsed;
~ ~~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:208678:43: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
jsonBlobExpand(pParse, pParse->nBlob+d);
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~^~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:211182:19: warning: implicit conversion loses integer precision: 'u64' (aka 'unsigned long long') to 'u32' (aka 'unsigned int') [-Wshorten-64-to-32]
u32 n = p->path.nUsed;
~ ~~~~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:237579:29: warning: implicit conversion loses integer precision: 'sqlite3_int64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pConfig->t.nArg = nArg;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:238598:23: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pToken->n = (z2 - z);
~ ~~~^~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:238610:23: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pToken->n = (z2 - z);
~ ~~~^~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:240639:18: warning: ambiguous expansion of macro 'MAX' [-Wambiguous-macro]
p->iHeight = MAX(p->iHeight, p->apChild[ii]->iHeight + 1);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
int nMin = MIN(p1->nKey, p2->nKey);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
nCmp = MIN(pLeft->n, pRight->n);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
nOriginCntr = MAX(nOriginCntr, pSeg->iOrigin2);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
int iEod = MIN(pIter->iEndofDoclist, pIter->pLeaf->szLeaf);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244053:23: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int iOff = pIter->iLeafOffset; /* Offset to read at */
~~~~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244127:28: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pIter->iTermLeafOffset = iOff;
~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244238:18: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int i = pIter->iLeafOffset;
~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244278:50: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pIter->aRowidOffset[iRowidOffset++] = pIter->iLeafOffset;
~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244371:19: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
iOff = pIter->iLeafOffset;
~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244400:17: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
iOff = pIter->iLeafOffset;
~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244481:29: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
iOff = pIter->iLeafOffset + pIter->nPos;
~ ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244754:19: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
nCmp = (u32)MIN(nNew, nTerm-nMatch);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:244822:35: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pIter->iTermLeafOffset = pIter->iLeafOffset;
~ ~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245630:18: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
pNew->nSeg = nSlot;
~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245760:16: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
int nChunk = MIN(nRem, pSeg->pLeaf->szLeaf - pSeg->iLeafOffset);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
nChunk = MIN(nRem, pData->szLeaf - 4);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245760:46: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nChunk = MIN(nRem, pSeg->pLeaf->szLeaf - pSeg->iLeafOffset);
~~~~~~ ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:35: note: expanded from macro 'MIN'
#define MIN(a, b) (((a)<(b))?(a):(b))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:245882:32: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pIter->base.nData = p-aCopy;
~ ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:246002:30: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pIter->base.nData = aOut - pIter->poslist.p;
~ ~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:246129:14: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
nSeg = MIN(pStruct->aLevel[iLevel].nSeg, nSegment);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
int nMin = MIN(pPage->term.n, nTerm);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247110:38: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
int nPercent = (nTomb * 100) / nEntry;
~~~~~~~~ ~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247579:17: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
nPrefix = MIN(nPrefix, nPrefix2);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247485:36: warning: implicit conversion loses integer precision: 'i64' (aka 'long long') to 'int' [-Wshorten-64-to-32]
iNextOff = pSeg->iLeafOffset + pSeg->nPos;
~ ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:247995:20: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
pNew->nLevel = MIN(pStruct->nLevel+1, FTS5_MAX_LEVEL);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
assert_nc( memcmp(pToken, pTerm, MIN(nToken, nTerm))<=0 );
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
int nSlotPerPage = MAX(MINSLOT, (p->pConfig->pgsz - 8) / szKey);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
nSlot = MAX(nElem*4, MINSLOT);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:218:9: note: expanding this definition of 'MAX'
#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'
# 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]
res = fts5Memcmp(&pLeaf->p[iOff], zIdxTerm, MIN(nTerm, nIdxTerm));
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:252175:40: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
pSorter->aIdx[i] = &aBlob[nBlob] - a;
~ ~~~~~~~~~~~~~~^~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:257133:19: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
is = zCsr - (unsigned char*)pText;
~ ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:257140:21: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
is = zCsr - (unsigned char*)pText;
~ ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:257190:17: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
ie = zCsr - (unsigned char*)pText;
~ ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:257194:37: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
rc = xToken(pCtx, 0, aFold, zOut-aFold, is, ie);
~~~~~~ ~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:258021:24: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
aStart[ii] = zIn - (const unsigned char*)pText;
~ ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:258043:19: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
iNext = zIn - (const unsigned char*)pText;
~ ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:258050:36: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
rc = xToken(pCtx, 0, aBuf, zOut-aBuf, aStart[0], iNext);
~~~~~~ ~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:259705:18: warning: ambiguous expansion of macro 'MIN' [-Wambiguous-macro]
int nCmp = MIN(nTerm, pCsr->nLeTerm);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# 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]
int nCmp = MIN(nTerm, pCsr->nLeTerm);
^
In module 'Darwin' imported from /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/sqlite3.c:351:
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/include/sys/param.h:215:9: note: expanding this definition of 'MIN'
#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'
# define MIN(A,B) ((A)<(B)?(A):(B))
^
159 warnings generated.
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/extinit.o /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/extinit.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'CSQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/extinit.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/extinit.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/extinit.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/extinit.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/extinit.o
SwiftDriver SQLiteVec normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-SwiftDriver -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVec -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Core.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ SQLiteVec (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.abi.json
SwiftCompile normal arm64 Compiling\ Models.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Models.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Core.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVec/Models.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVec -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/Database.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for SQLiteVec (in target 'SQLiteVec' from project 'SQLiteVec')
SwiftDriver\ Compilation\ Requirements SQLiteVec normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVec -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SQLiteVec-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SQLiteVec-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftdoc (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.abi.json (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftsourceinfo (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.SwiftFileList (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-OutputFileMap.json (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-OutputFileMap.json
SwiftDriver SQLiteVecCLI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-SwiftDriver -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVecCLI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SQLiteVecCLI (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVecCLI/CLI.swift -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVecCLI -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-master-emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.abi.json
SwiftCompile normal arm64 Compiling\ CLI.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVecCLI/CLI.swift (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVecCLI/CLI.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVecCLI -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVecCLI/CLI.swift (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SQLiteVecCLI/CLI.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SQLiteVecCLI -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.5 -target-sdk-name appletvos17.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.o -index-unit-output-path /SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/CLI.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for SQLiteVecCLI (in target 'SQLiteVecCLI' from project 'SQLiteVec')
SwiftDriver\ Compilation\ Requirements SQLiteVecCLI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVecCLI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.abi.json (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftdoc (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftsourceinfo (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Core.swift (in target 'SQLiteVec' from project 'SQLiteVec')
SwiftDriverJobDiscovery normal arm64 Compiling Models.swift (in target 'SQLiteVec' from project 'SQLiteVec')
SwiftDriverJobDiscovery normal arm64 Compiling CLI.swift (in target 'SQLiteVecCLI' from project 'SQLiteVec')
SwiftDriver\ Compilation SQLiteVecCLI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVecCLI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Database.swift (in target 'SQLiteVec' from project 'SQLiteVec')
SwiftDriver\ Compilation SQLiteVec normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SQLiteVec -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CSQLiteVec.modulemap -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos17.5-21L566-78731dfd1e80bd19cd0e412614adc35b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteVec/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CSQLiteVec.o normal (in target 'CSQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -r -isysroot /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/CSQLiteVec.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/CSQLiteVec_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/CSQLiteVec.build/Objects-normal/arm64/CSQLiteVec_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CSQLiteVec.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CSQLiteVec.o (in target 'CSQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CSQLiteVec.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.LinkFileList (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.LinkFileList
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.o normal (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -r -isysroot /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.o (in target 'SQLiteVec' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVec.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.LinkFileList (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.LinkFileList
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI normal (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -isysroot /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.5.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVecCLI.build/Objects-normal/arm64/SQLiteVecCLI_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SQLiteVec.build/Debug-appletvos/SQLiteVec.build/Objects-normal/arm64/SQLiteVec.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI (in target 'SQLiteVecCLI' from project 'SQLiteVec')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SQLiteVecCLI
** BUILD SUCCEEDED **
Build complete.
Done.